* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --text-color: #2d3748;
    --background-color: #ffffff;
    --hover-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

body {
    background: var(--background-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.info h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.features {
    list-style: none;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features li {
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    white-space: nowrap;
}

.features li:before {
    content: "🚀";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.9;
}

.features li:nth-child(2):before {
    content: "💎";
}

.features li:nth-child(3):before {
    content: "💫";
}

.features li:nth-child(4):before {
    content: "⚡";
}

.features li:hover {
    transform: translateX(5px);
}

.buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.button {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.twitter {
    background: #1DA1F2;
    color: white;
}

.twitter:before {
    content: "\f099";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.dexscreener {
    background: #22c55e;
    color: white;
}

.dexscreener:before {
    content: "\f201";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.revshare {
    background: var(--primary-color);
    color: white;
}

.revshare:before {
    content: "\f51e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
        height: 150px;
    }
    
    .info h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .features {
        font-size: 1rem;
        padding: 0 1rem;
        white-space: normal;
    }
    
    .features li {
        padding-left: 1.8rem;
        white-space: normal;
    }
    
    .features li:before {
        font-size: 1rem;
    }
    
    .button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .content {
        gap: 1.5rem;
    }
} 