        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 75%, #2d1b54 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 95, 191, 0.1) 0%, transparent 50%),
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
            pointer-events: none;
            z-index: 0;
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Modern Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(15, 15, 35, 0.8);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #8b5fbf, #a855f7);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #a855f7, #c084fc);
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }

        header.scrolled {
            background: rgba(15, 15, 35, 0.98);
            box-shadow: 0 8px 60px rgba(168, 85, 247, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #8b5fbf, #a855f7, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo::before {
            content: '🎮';
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            animation: gameIconPulse 3s ease-in-out infinite;
        }

        @keyframes gameIconPulse {
            0%, 100% { transform: translateY(-50%) scale(1); }
            50% { transform: translateY(-50%) scale(1.1); }
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #a0a0a0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-links a:hover {
            color: #ffffff;
            background: rgba(168, 85, 247, 0.1);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #8b5fbf, #a855f7);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        main {
            margin-top: 80px;
            position: relative;
            z-index: 1;
        }

        .hero {
            display: flex;
            align-items: center;
            min-height: 100vh;
            padding: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            gap: 5rem;
        }

        .hero-content {
            flex: 1;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff, #a855f7, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            letter-spacing: -0.02em;
            position: relative;
        }

        .hero-title::after {
            content: '🚗';
            position: absolute;
            right: -60px;
            top: 10px;
            font-size: 3rem;
            animation: carBounce 2s ease-in-out infinite;
        }

        @keyframes carBounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.4rem 3rem;
            border: none;
            border-radius: 20px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b5fbf, #a855f7, #c084fc);
            color: white;
            box-shadow: 0 15px 50px rgba(139, 95, 191, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 2px solid rgba(168, 85, 247, 0.3);
            backdrop-filter: blur(15px);
        }

        .btn:hover {
            transform: translateY(-6px) scale(1.05);
        }

        .btn-primary:hover {
            box-shadow: 0 25px 80px rgba(139, 95, 191, 0.6);
        }

        .btn-secondary:hover {
            background: rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.6);
            box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 30px;
            padding: 3rem;
            width: 450px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #a855f7, #c084fc, transparent);
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(168, 85, 247, 0.3);
        }

        .server-info {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .server-ip {
            background: rgba(0, 0, 0, 0.4);
            padding: 1.2rem 2rem;
            border-radius: 15px;
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            color: #a855f7;
            font-weight: 700;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(168, 85, 247, 0.3);
            position: relative;
        }

        .server-ip::before {
            content: '🖥️';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }

        .server-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            color: #4ade80;
            font-size: 1rem;
            font-weight: 600;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            background: #4ade80;
            border-radius: 50%;
            animation: statusPulse 2s infinite;
            box-shadow: 0 0 15px rgba(74, 222, 128, 0.5);
        }

        .status-dot.offline {
            background: #ef4444;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
        }

        @keyframes statusPulse {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.6; 
                transform: scale(1.2);
            }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #a855f7, transparent);
        }

        .stat-item:hover {
            background: rgba(168, 85, 247, 0.1);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #a855f7;
            margin-bottom: 0.5rem;
            line-height: 1;
            text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            color: #a0a0a0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

.samp-features {
    padding: 8rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.samp-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
}

.section-title::before {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    animation: targetSpin 4s linear infinite;
}

@keyframes targetSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.section-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, #c084fc, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.3);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8b5fbf, #a855f7, #c084fc);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.5);
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
}

.samp-showcase {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b54 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #b0bec5;
    margin-bottom: 3rem;
}

.samp-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-scene {
    position: relative;
    width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #1a1a2e, #2d1b54);
    display: flex;
    align-items: end;
    justify-content: space-around;
    padding: 0 20px;
}

.building {
    background: linear-gradient(135deg, #333, #555);
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.building:nth-child(1) { width: 40px; height: 120px; }
.building:nth-child(2) { width: 35px; height: 90px; }
.building:nth-child(3) { width: 45px; height: 140px; }
.building:nth-child(4) { width: 30px; height: 80px; }
.building:nth-child(5) { width: 40px; height: 110px; }

.building::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    right: 5px;
    bottom: 10px;
    background: linear-gradient(135deg, #444, #666);
    border-radius: 2px;
}

.game-car {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    border-radius: 10px;
    animation: carDrive 3s ease-in-out infinite alternate;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4);
}

.game-car::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 15px;
    right: 15px;
    height: 20px;
    background: linear-gradient(135deg, #8b5fbf, #a855f7);
    border-radius: 8px 8px 3px 3px;
}

@keyframes carDrive {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(-10px); }
}

.floating-icons {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.game-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-icon:nth-child(1) { animation-delay: 0s; }
.game-icon:nth-child(2) { animation-delay: 0.5s; }
.game-icon:nth-child(3) { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.staff-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 8rem 3rem;
    position: relative;
}

.staff-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.staff-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.staff-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.staff-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.staff-member:hover::before {
    opacity: 1;
}

.staff-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.staff-avatar::before {
    content: '👑';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 1.5rem;
    animation: crown 3s ease-in-out infinite;
}

@keyframes crown {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.staff-member:hover .staff-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 70px rgba(251, 191, 36, 0.5);
}

.staff-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.staff-role {
    font-size: 1.1rem;
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.contact-btn {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.join-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.join-section::before {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    opacity: 0.3;
    animation: gameIcons 4s ease-in-out infinite;
}

@keyframes gameIcons {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.join-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.join-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 3.5rem;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(15px);
    min-width: 220px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

.join-btn:nth-child(1):hover {
    border-color: #5865f2;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
}

.join-btn:nth-child(2):hover {
    border-color: #ff6b6b;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.join-btn:nth-child(3):hover {
    border-color: #4ecdc4;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
}

.join-icon {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.join-btn:hover .join-icon {
    transform: scale(1.2) rotate(5deg);
}

.samp-info {
    padding: 6rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.samp-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.info-description {
    color: #a0a0a0;
    line-height: 1.6;
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
}

.footer-text strong {
    color: #a855f7;
}

@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .game-scene {
        width: 400px;
        height: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title::after {
        position: relative;
        right: auto;
        top: auto;
        display: block;
        margin-top: 1rem;
    }

    .stats-card {
        width: 100%;
        max-width: 400px;
    }

    .samp-features,
    .staff-section,
    .join-section,
    .samp-info {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .features-grid,
    .samp-info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .join-links {
        flex-direction: column;
        align-items: center;
    }

    .samp-showcase {
        padding: 4rem 1.5rem;
    }

    .showcase-content h2 {
        font-size: 2.5rem;
    }

    .showcase-content p {
        font-size: 1.1rem;
    }

    .game-scene {
        width: 300px;
        height: 240px;
    }
}