* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #0c0f16;
    color: #fff;
    overflow-x: hidden;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .white-text {
            color: rgb(255, 255, 255);
        }
        /* Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: rgba(16, 21, 34, 0.9);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4da6ff;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            color: #fff;
            margin-left: 1.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #4da6ff;
        }

        .discord-btn {
            background-color: #1a9cc4;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .discord-btn:hover {
            background-color: #05a9f5;
            color: white !important;
        }
        .login-btn {
            background-color: #9ea8b1;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .login-btn:hover {
            background-color: #2d99e0;
            color: white !important;
        }
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #fff;
        }
        
        .close-menu {
            display: none; /* Hidden by default */
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #fff;
        }

        /* Game Header */
        .game-header {
            text-align: center;
            padding: 3rem 0 2rem;
        }

        .game-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            display: block;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
        }

        .game-title {
            font-size: 2.5rem;
            color: #4da6ff;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .game-subtitle {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 1rem;
        }
        
        /* Server Configuration */
        .server-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }
        
        .config-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .config-left {
            flex: 1;
        }
        
        .config-right {
            flex: 1;
            background-color: #161b2b;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .config-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .config-subtitle {
            font-size: 1.1rem;
            color: #4da6ff;
            margin-bottom: 1rem;
        }
        
        /* Slider */
        .slider-container {
            margin-bottom: 2rem;
        }

        .slider-container p {
            margin-bottom: 0.8rem;
            color: #ddd;
        }
        
        .slider {
            width: 100%;
            margin-bottom: 0.5rem;
            height: 10px;
            border-radius: 5px;
            background: #2a3146;
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }
        
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #4da6ff;
            cursor: pointer;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
        
        .slider::-moz-range-thumb {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #4da6ff;
            cursor: pointer;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            border: none;
        }
        
        .slider-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        
        /* Plan Description */
        .plan-description {
            margin-top: 1.5rem;
            background-color: #1d2335;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            color: #ddd;
            line-height: 1.5;
        }
        
        /* Selected Plan */
        .selected-plan {
            padding: 1rem;
            border-radius: 8px;
        }
        
        .plan-name {
            font-size: 2rem;
            color: #4da6ff;
            margin-bottom: 0.5rem;
        }
        
        .plan-available {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: #6eff8d;
            font-weight: 500;
        }
        
        .available-dot {
            width: 12px;
            height: 12px;
            background-color: #6eff8d;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            color: #4da6ff;
            margin-bottom: 1.5rem;
        }
        
        /* Specs List */
        .specs-list {
            margin-bottom: 2rem;
        }
        
        .spec-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .spec-icon {
            width: 20px;
            height: 20px;
            margin-right: 1rem;
            color: #aaa;
        }
        
        .spec-info {
            width: 16px;
            height: 16px;
            margin-left: 0.5rem;
            color: #777;
            cursor: help;
        }
        
        .location {
            display: flex;
            align-items: center;
            color: #ddd;
        }
        
        .location-flag {
            margin-right: 0.5rem;
        }
        
        /* CTA Button */
        .select-plan-btn {
            display: block;
            width: 100%;
            background-color: #4da6ff;
            color: white;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .select-plan-btn:hover {
            background-color: #3d86cc;
        }
        
        /* Footer */
        footer {
            background-color: #0a0d14;
            padding: 2.5rem 5%;
            text-align: center;
            margin-top: 3rem;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-logo-section {
            display: flex;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        
        .logo-address-wrapper {
            display: flex;
            align-items: center;
        }
        
        .footer-logo {
            width: 80px;
            margin-right: 1rem;
        }
        
        .footer-address {
            color: #bbb;
            font-size: 0.9rem;
            line-height: 1.4;
            text-align: left;
        }
        
        .footer-address p {
            margin-bottom: 0.3rem;
        }
        
        .footer-columns {
            display: flex;
            gap: 2.5rem;
            text-align: left;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        
        .footer-column h4 {
            color: #4da6ff;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column li {
            margin-bottom: 0.7rem;
        }
        
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-column a:hover {
            color: #4da6ff;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: #bbb;
            font-size: 1.3rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #4da6ff;
        }
        
        .copyright {
            color: #777;
            font-size: 0.85rem;
            border-top: 1px solid #1a1f2e;
            padding-top: 1.5rem;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .config-section {
                flex-direction: row;
            }
            
            .config-left, .config-right {
                width: 50%;
            }
        }
        
        @media (max-width: 1024px) {
            .navbar {
                padding: 1rem 3%;
            }
            
            .game-header {
                padding: 2.5rem 0 1.5rem;
            }
            
            .game-title {
                font-size: 2.2rem;
            }
            
            .config-title {
                font-size: 1.8rem;
            }
            
            .plan-price {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 5%;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: #0c0f16;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s;
                z-index: 999;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links a {
                margin: 1.5rem 0;
                font-size: 1.1rem;
            }
            
            .close-menu {
                display: block; /* Only display on mobile */
            }
            
            .game-header {
                padding: 2rem 0 1rem;
            }
            
            .game-logo {
                width: 70px;
                height: 70px;
            }
            
            .game-title {
                font-size: 1.8rem;
            }
            
            .game-subtitle {
                font-size: 1rem;
            }
            
            .server-container {
                padding: 1rem;
            }
            
            .config-title {
                font-size: 1.6rem;
            }
            
            .config-subtitle {
                font-size: 1rem;
            }
            
            .slider-labels {
                font-size: 0.8rem;
            }
            
            .plan-name {
                font-size: 1.8rem;
            }
            
            .plan-price {
                font-size: 2rem;
            }
            
            .footer-container {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-logo-section {
                margin-bottom: 2rem;
                align-items: center;
            }
            
            .logo-address-wrapper {
                flex-direction: column;
            }
            
            .footer-logo {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .footer-address {
                text-align: center;
            }
            
            .footer-columns {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .footer-column {
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.2rem;
            }
            
            .game-logo {
                width: 60px;
                height: 60px;
            }
            
            .game-title {
                font-size: 1.6rem;
            }
            
            .config-title {
                font-size: 1.4rem;
            }
            
            .config-right {
                padding: 1rem;
            }
            
            .slider-labels {
                font-size: 0.7rem;
            }
            
            .plan-name {
                font-size: 1.5rem;
            }
            
            .plan-price {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .spec-item {
                font-size: 0.9rem;
            }
            
            .select-plan-btn {
                padding: 0.7rem;
                font-size: 1rem;
            }
        }
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(16, 21, 34, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4da6ff;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4da6ff;
}

.discord-btn {
    background-color: #5865F2;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.discord-btn:hover {
    background-color: #4752c4;
    color: white !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

.close-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out, opacity 0.8s ease;
    opacity: 0;
    z-index: -1;
    transform: scale(1.1);
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 0.1rem;
    max-width: 100%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4da6ff;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Game Cards */
.game-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.game-card {
    background-color: rgba(22, 27, 43, 0.5);
    border-radius: 10px;
    overflow: hidden;
    width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
}

.game-card.active {
    border: 2px solid #4da6ff;
    box-shadow: 0 0 15px #4da6ff;
}

.game-card img {
    width: 80%;
    height: 80px;
    object-fit: contain;
    margin: 0.5rem auto;
    display: block;
}

.game-card-content {
    padding: 0.5rem;
    text-align: center;
}

.game-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #4da6ff;
}

/* Features Section */
.features {
    background-color: #0d121f;
    padding: 3rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4da6ff;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.feature-card {
    background-color: #161b2b;
    border-radius: 10px;
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
    background-color: #1c223a;
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.feature-card p {
    color: #bbb;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Hosting Plans */
.hosting-plans {
    background-color: #0a0e17;
    padding: 3rem 5%;
    text-align: center;
}

.plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.plan-card {
    background-color: #161b2b;
    border-radius: 10px;
    padding: 1.5rem;
    width: 280px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
    border-color: #4da6ff;
}

.plan-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #4da6ff;
}

.plan-card .game-type {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.plan-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.2rem;
}

.plan-card .price span {
    font-size: 0.9rem;
    color: #bbb;
}

.plan-specs {
    text-align: left;
    margin-bottom: 1.5rem;
}

.plan-specs li {
    color: #bbb;
    padding: 0.4rem 0;
    border-bottom: 1px solid #252d46;
    list-style-type: none;
    font-size: 0.9rem;
}

.plan-specs li:last-child {
    border-bottom: none;
}

.plan-btn {
    display: inline-block;
    background-color: #4da6ff;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.plan-btn:hover {
    background-color: #3d86cc;
}

/* Server Location Section */
.server-locations {
    background-color: #0a0e17;
    padding: 3rem 5% 4rem;
    text-align: center;
}

.server-locations-heading {
    margin-bottom: 1.5rem;
}

.server-locations-heading h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.server-locations-heading p {
    font-size: 1.1rem;
    color: #bbb;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.world-map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.world-map {
    width: 100%;
    height: auto;
    min-height: 250px;
    background-color: #0d121f;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map img {
    width: 90%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
}

.server-location-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #4da6ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #4da6ff;
    animation: pulse 2s infinite;
    z-index: 2;
}

.server-location-dot-soon {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #ff4343;
            border-radius: 50%;
            box-shadow: 0 0 10px #ff4d4d;
            animation: pulse 2s infinite;
            z-index: 2;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(77, 166, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(77, 166, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(77, 166, 255, 0);
            }
        }

        .server-locations-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .server-location-item {
            display: flex;
            align-items: center;
            background-color: #121826;
            padding: 0.7rem 1.2rem;
            border-radius: 5px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .server-location-item:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 10px 15px rgba(6, 127, 247, 0.911);
            background-color: #1a2235;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .server-location-item:nth-child(1) {
            animation-delay: 0.2s;
        }

        .server-location-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        .server-location-item img {
            width: 25px;
            height: 18px;
            margin-right: 0.6rem;
        }

        .server-location-item span {
            font-weight: 600;
            color: #fff;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/img/ryzen.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #4da6ff;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 1.5rem;
            font-size: 1rem;
        }

        .btn {
            display: inline-block;
            background-color: #4da6ff;
            color: #fff;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #3d86cc;
        }

        /* Footer */
        footer {
            background-color: #0a0d14;
            padding: 2.5rem 5%;
            text-align: center;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-logo-section {
            display: flex;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        
        .logo-address-wrapper {
            display: flex;
            align-items: center;
        }
        
        .footer-logo {
            width: 80px;
            margin-right: 1rem;
        }
        
        .footer-address {
            color: #bbb;
            font-size: 0.9rem;
            line-height: 1.4;
            text-align: left;
        }
        
        .footer-address p {
            margin-bottom: 0.3rem;
        }
        
        .footer-columns {
            display: flex;
            gap: 2.5rem;
            text-align: left;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        
        .footer-column h4 {
            color: #4da6ff;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column li {
            margin-bottom: 0.7rem;
        }
        
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-column a:hover {
            color: #4da6ff;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: #bbb;
            font-size: 1.3rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #4da6ff;
        }
        
        .copyright {
            color: #777;
            font-size: 0.85rem;
            border-top: 1px solid #1a1f2e;
            padding-top: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar {
                padding: 1rem 3%;
            }
            
            .hero-logo {
                width: 180px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .feature-card {
                width: 220px;
            }
            
            .world-map img {
                width: 95%;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 5%;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: #0c0f16;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s;
                z-index: 999;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links a {
                margin: 1.5rem 0;
                font-size: 1.1rem;
            }
            
            .close-menu {
                display: block; /* Only display on mobile */
            }
            
            .hero-logo {
                width: 150px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
                padding: 0 0.5rem;
            }
            
            .game-card {
                width: 100px;
            }
            
            .game-card img {
                height: 60px;
            }
            
            .feature-card {
                width: 100%;
                max-width: 300px;
                margin-bottom: 1rem;
            }
            
            .plan-card {
                width: 100%;
                max-width: 320px;
                margin-bottom: 1rem;
            }
            
            .server-locations-heading h2 {
                font-size: 1.8rem;
            }
            
            .world-map {
                min-height: 200px;
            }
            
            .server-location-dot, .server-location-dot-soon {
                width: 8px;
                height: 8px;
            }
            
            .footer-container {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-logo-section {
                margin-bottom: 2rem;
                align-items: center;
            }
            
            .logo-address-wrapper {
                flex-direction: column;
            }
            
            .footer-logo {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .footer-address {
                text-align: center;
            }
            
            .footer-columns {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .footer-column {
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.2rem;
            }
            
            .hero {
                padding: 1rem 0.5rem;
                min-height: 60vh;
            }
            
            .hero-logo {
                width: 120px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .game-cards {
                gap: 0.6rem;
            }
            
            .game-card {
                width: 80px;
            }
            
            .game-card img {
                height: 50px;
            }
            
            .game-card h3 {
                font-size: 0.8rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .feature-card {
                padding: 1.2rem;
            }
            
            .feature-card h3 {
                font-size: 1.2rem;
            }
            
            .feature-card p {
                font-size: 0.85rem;
            }
            
            .plan-card {
                padding: 1.2rem;
            }
            
            .plan-card h3 {
                font-size: 1.4rem;
            }
            
            .plan-card .price {
                font-size: 1.5rem;
            }
            
            .server-location-item {
                padding: 0.5rem 1rem;
                margin-bottom: 0.5rem;
            }
            
            .server-location-item img {
                width: 20px;
                height: 15px;
            }
            
            .server-location-item span {
                font-size: 0.8rem;
            }
            
            .cta h2 {
                font-size: 1.6rem;
            }
            
            .cta p {
                font-size: 0.9rem;
            }
            
            .btn {
                padding: 0.7rem 1.4rem;
                font-size: 0.9rem;
            }
        }