* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #10b981;
    --comet: #7dd3fc;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #1e293b;
    --gray-light: #334155;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-comet: linear-gradient(135deg, var(--primary), var(--comet));
    --gradient-accent: linear-gradient(135deg, var(--primary), var(--accent));
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.3);
    --radius: 2.5px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --blur: blur(16px);
    --header-height: 70px;
    --gradient-windows: linear-gradient(135deg, #0078D7, #00BCF2);
    --gradient-mac: linear-gradient(135deg, #999999, #FFFFFF);
    --gradient-android: linear-gradient(135deg, #3DDC84, #0F9D58);
    --gradient-ios: linear-gradient(135deg, #5AC8FA, #007AFF);
}


body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 20;
    animation: heroEntrance 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 25%, var(--secondary) 50%, var(--accent) 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    color: var(--lighter);
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease 0.5s forwards;
    opacity: 0;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    letter-spacing: 0.3px;
    text-transform: none;
    border: 1.5px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

.discord-btn-home {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.discord-btn-home:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    font-size: 1.8rem;
    transition: transform 0.2s ease;
}

.discord-btn-home:hover .discord-icon {
    transform: scale(1.1);
}

.discord-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-btn-home:hover .discord-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: floatShape 20s infinite ease-in-out;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 40px);
    }
    50% {
        transform: translate(30px, 75px);
    }
    75% {
        transform: translate(-40px, 50px);
    }
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 60%;
    right: 8%;
    animation-delay: -7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    bottom: 10%;
    left: 12%;
    animation-delay: -14s;
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }
    
    .discord-btn-home {
        width: 55px;
        height: 55px;
    }
    
    .discord-icon {
        font-size: 1.5rem;
    }
    
    .floating-shape {
        display: none;
    }
}