/* Import Components */
@import 'components/dropdown.css';

:root {
    /* Dark Theme Colors */
    --primary-color-dark: #ff2e88;
    --primary-color-light-dark: #ff79c6;
    --secondary-color-dark: #bd93f9;
    --background-dark-dark: #0f0f1a;
    --background-darker-dark: #070711;
    --card-bg-dark-dark: rgba(20, 20, 35, 0.7);
    --text-light-dark: #f8f8f2;
    --text-muted-dark: #a7a7c1;
    --glass-bg-dark: rgba(25, 25, 40, 0.6);
    --glass-border-dark: rgba(255, 46, 136, 0.2);

    /* Light Theme Colors */
    --primary-color-light: #ff2e88;
    --primary-color-light-light: #ff4d97;
    --secondary-color-light: #9d4edd;
    --background-dark-light: #f8f9fa;
    --background-darker-light: #e9ecef;
    --card-bg-dark-light: rgba(255, 255, 255, 0.7);
    --text-light-light: #212529;
    --text-muted-light: #6c757d;
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-border-light: rgba(255, 46, 136, 0.1);

    /* Default Theme (Dark) */
    --primary-color: var(--primary-color-dark);
    --primary-color-light: var(--primary-color-light-dark);
    --secondary-color: var(--secondary-color-dark);
    --background-dark: var(--background-dark-dark);
    --background-darker: var(--background-darker-dark);
    --card-bg-dark: var(--card-bg-dark-dark);
    --text-light: var(--text-light-dark);
    --text-muted: var(--text-muted-dark);
    --glass-bg: var(--glass-bg-dark);
    --glass-border: var(--glass-border-dark);
    
    /* Common Variables */
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --pink-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --glow-shadow: 0 0 15px rgba(255, 46, 136, 0.5);
}

/* Light Theme Class */
body.light-theme {
    --primary-color: var(--primary-color-light);
    --primary-color-light: var(--primary-color-light-light);
    --secondary-color: var(--secondary-color-light);
    --background-dark: var(--background-dark-light);
    --background-darker: var(--background-darker-light);
    --card-bg-dark: var(--card-bg-dark-light);
    --text-light: var(--text-light-light);
    --text-muted: var(--text-muted-light);
    --glass-bg: var(--glass-bg-light);
    --glass-border: var(--glass-border-light);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glow-shadow: 0 0 15px rgba(255, 46, 136, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-light);
    transition: all 0.3s ease;
    min-height: 100vh;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    line-height: 1.6;
    color: var(--text-muted);
}

section {
    padding: 6rem 5%;
    position: relative;
}

/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--background-darker);
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    background: var(--pink-gradient);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 100%;
    animation: float 25s infinite;
    transition: opacity 0.3s;
}

.blob-1 {
    width: 900px;
    height: 900px;
    left: -300px;
    top: -300px;
    animation-delay: 0s;
}

.blob-2 {
    width: 700px;
    height: 700px;
    right: -200px;
    bottom: -200px;
    animation-delay: -7s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    right: 25%;
    top: 35%;
    animation-delay: -14s;
}

.blob-4 {
    width: 300px;
    height: 300px;
    left: 30%;
    bottom: 20%;
    animation-delay: -20s;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    z-index: 2;
    flex-shrink: 0;
    margin-right: 2rem;
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1000;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--text-light);
    opacity: 1;
}

.nav-links a i {
    margin-right: 8px;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    z-index: 2;
}

.mobile-nav-buttons {
    display: none;
}

.desktop-nav-buttons {
    display: flex;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.theme-toggle:hover {
    transform: rotate(30deg);
    color: var(--primary-color);
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 46, 136, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 46, 136, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.console-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.console-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow), var(--glass-shadow);
}

.console-header {
    background: rgba(10, 10, 20, 0.8);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.console-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1.2rem;
}

.console-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.console-buttons span:nth-child(1) {
    background: #ff5f56;
}

.console-buttons span:nth-child(2) {
    background: #ffbd2e;
}

.console-buttons span:nth-child(3) {
    background: #27c93f;
}

.console-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: monospace;
}

.console-body {
    padding: 1.5rem;
    font-family: monospace;
    min-height: 180px;
    color: #a7ffeb;
}

.typing-text {
    display: inline;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: var(--primary-color);
    animation: blink 1s infinite;
    vertical-align: middle;
}

/* Game Servers Section */
.game-servers {
    position: relative;
    padding: 8rem 5%;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Additional Servers Styles */
.additional-servers {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.show-more-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.show-more-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
    user-select: none;
}

.show-more-btn:hover {
    background: rgba(255, 46, 136, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}

.server-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin: 0 auto;
}

.server-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pink-gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.server-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--glow-shadow), var(--glass-shadow);
    border-color: var(--primary-color);
}

.server-card:hover::before {
    opacity: 0.1;
}

.server-card-header {
    position: relative;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 200px;
    overflow: hidden;
}

.server-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.server-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    transition: transform 0.4s;
}

.server-card-header h3 {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    font-size: 1.8rem;
    margin: 0;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

body.light-theme .server-card-header::after {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
}

body.light-theme .server-card-header h3 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.server-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}

.server-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.server-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.server-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.server-price {
    margin: 1.5rem 0;
    position: relative;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-amount span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.server-card .buttons {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.server-card .primary-btn {
    width: 100%;
    max-width: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--pink-gradient);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.server-card .secondary-btn {
    flex: 1;
    max-width: 130px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.server-card .primary-btn {
    background: var(--pink-gradient);
}

.popular-tag {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 2.5rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 46, 136, 0.3);
}

/* Features Section */
.why-us {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s;
    box-shadow: var(--glass-shadow);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.feature:hover::after {
    opacity: 0.1;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Locations Section */
.locations {
    position: relative;
}

.locations-map {
    position: relative;
    height: 500px;
    background: url('../images/world-map.png') no-repeat center;
    background-size: contain;
    margin-top: 3rem;
    filter: brightness(0.8) contrast(1.2);
}

.location-point {
    position: absolute;
    left: var(--x);
    top: var(--y);
}

.location-dot {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--primary-color);
    cursor: pointer;
    z-index: 2;
}

.location-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.location-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    margin-bottom: 10px;
}

.location-point:hover .location-info {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    align-items: start;
}

.testimonials-left {
    min-width: 0;
    overflow: hidden;
    height: 600px;
    margin-right: auto;
    max-width: 800px;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.testimonials-columns {
    display: flex;
    gap: 2rem;
    height: 100%;
    padding: 2rem;
}

.testimonials-column {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    will-change: transform;
    padding: 1rem 0;
}

.track-up {
    animation: smoothScrollUp 45s linear infinite;
}

.track-down {
    animation: smoothScrollDown 45s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes smoothScrollUp {
    0% {
        transform: translateY(0);
    }
    3% {
        transform: translateY(0);
    }
    97% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes smoothScrollDown {
    0% {
        transform: translateY(-50%);
    }
    3% {
        transform: translateY(-50%);
    }
    97% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.testimonial {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.4s;
    transform: translateY(0);
    min-width: 280px;
    backdrop-filter: blur(10px);
}

.testimonial:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(35, 35, 50, 0.7);
    box-shadow: var(--glow-shadow);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.2rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 46, 136, 0.3);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--primary-color-light);
    margin: 0;
    opacity: 0.9;
}

/* Fade edges */
.testimonials-left::before,
.testimonials-left::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-left::before {
    top: 0;
    background: linear-gradient(to bottom, var(--background-dark) 0%, transparent 100%);
}

.testimonials-left::after {
    bottom: 0;
    background: linear-gradient(to top, var(--background-dark) 0%, transparent 100%);
}

.testimonials-right {
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.testimonials-right h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.testimonials-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Testimonials Responsive Styles */
@media (max-width: 1200px) {
    .testimonials-container {
        gap: 3rem;
        padding: 0 3rem;
    }
    
    .testimonials-left {
        height: 550px;
    }
    
    .testimonials-right h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 5rem 0;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .testimonials-left {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-right {
        text-align: center;
        padding: 2.5rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonials-right h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-right p {
        font-size: 1rem;
    }

    .swipe-indicator {
        display: block;
    }
    
    .testimonials-left.swiping .swipe-indicator {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--background-dark);
        padding: 0;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
        border-left: 1px solid var(--glass-border);
        overflow-y: auto;
        margin: 0;
        justify-content: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 1.2rem 2rem;
        border-bottom: 1px solid var(--glass-border);
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        display: flex;
    }

    .nav-links a i {
        display: inline-block;
        width: 24px;
        text-align: center;
        color: var(--primary-color);
        font-size: 1.1rem;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hamburger-menu span {
        position: static;
        transform-origin: center;
    }

    .hamburger-menu.active span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .desktop-nav-buttons {
        display: none;
    }
    
    .logo {
        margin-right: 0;
    }

    .mobile-nav-header {
        display: flex;
        padding: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        background: var(--background-darker);
    }

    .nav-links a::before {
        content: '';
        width: 0;
        height: 100%;
        background: var(--primary-color);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0.1;
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::before, .nav-links a.active::before {
        width: 4px;
    }

    .nav-links a::after {
        display: none;
    }
    
    .mobile-nav-buttons {
        display: flex;
        width: 100%;
        padding: 2rem;
        border-top: 1px solid var(--glass-border);
        margin-top: auto;
        background: var(--background-darker);
    }
    
    .mobile-nav-buttons .theme-toggle {
        font-size: 1.4rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border-radius: 50%;
        box-shadow: var(--glass-shadow);
    }
    
    .mobile-nav-buttons .primary-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
        backdrop-filter: blur(3px);
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero section adjustments for mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Testimonials mobile adjustments */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-container {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }
    
    .testimonials-left {
        height: 350px;
    }
    
    .testimonials-columns {
        gap: 1rem;
    }
    
    .testimonial {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonials-right {
        padding: 2rem;
    }
    
    .testimonials-right h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .testimonials-left {
        height: 300px;
    }
    
    .testimonials-columns {
        gap: 0.8rem;
    }
    
    .testimonial {
        padding: 1rem;
        min-width: 220px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-author {
        padding-top: 0.8rem;
        gap: 0.6rem;
    }
    
    .testimonial-author img {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-author h4 {
        font-size: 0.8rem;
    }
    
    .testimonial-author p {
        font-size: 0.7rem;
    }
    
    .testimonials-right {
        padding: 1.5rem;
    }
    
    .testimonials-right h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-right p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-left {
        height: 280px;
    }
    
    .testimonials-columns {
        flex-direction: column;
        gap: 0;
        height: 280px;
    }
    
    .testimonials-column {
        height: 280px;
    }
    
    .testimonials-column:nth-child(2) {
        display: none; /* Hide second column on very small screens */
    }
    
    .testimonial {
        min-width: 100%;
    }
    
    .track-up {
        animation-duration: 20s; /* Faster animation on small screens */
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    padding-right: 1rem;
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease-in-out;
}

.faq-item.active {
    background: rgba(255, 46, 136, 0.05);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-help-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.faq-help-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-help-text a:hover {
    color: var(--primary-color-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 1rem;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Footer Styles */
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section:first-child {
    max-width: 600px;
}

.footer-section:last-child {
    justify-self: end;
    text-align: right;
}

.footer-section:last-child h3::after {
    left: auto;
    right: 0;
}

.footer-section:last-child a:hover {
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section:last-child {
        justify-self: center;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section:last-child h3::after {
        left: 50%;
        right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section a:hover,
    .footer-section:last-child a:hover {
        transform: translateX(0) scale(1.05);
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 101;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px auto;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: 1rem;
    }

    .hamburger-menu span {
        margin: 2px auto;
    }

    .hamburger-menu.active span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.swipe-indicator {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.swipe-indicator i {
    margin-right: 0.5rem;
    animation: swipeUpDown 1.5s infinite;
    display: inline-block;
}

@keyframes swipeUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 992px) {
    .swipe-indicator {
        display: block;
    }
    
    .testimonials-left.swiping .swipe-indicator {
        opacity: 1;
    }
}

.nav-links a i {
    margin-right: 8px;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--primary-color);
}

.dropdown-toggle i.fa-chevron-down {
    margin-left: 4px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Ensure icons are visible in mobile menu */
@media (max-width: 768px) {
    .nav-links a i {
        display: inline-block;
        width: 24px;
        font-size: 1.2em;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }

    .nav-links {
        display: flex !important;
        position: relative;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        padding: 0;
        margin: 0;
        overflow: visible;
        transform: none;
        right: auto;
    }

    .nav-links li {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 0;
        border: none;
        width: auto;
        text-align: center;
        opacity: 1;
        transform: none;
        visibility: visible;
        color: var(--text-light);
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s;
    }

    .nav-links a:hover::after, 
    .nav-links a.active::after {
        width: 100%;
    }

    .mobile-nav-header {
        display: none;
    }
}

#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    display: none;
}

/* VPS Hosting Specific Styles */
.vps-hero {
    background-image: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('../imgs/vps-hero.jpg');
    background-size: cover;
    background-position: center;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -1rem auto 2rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Light theme adjustments for VPS page */
body.light-theme .specs-list {
    background: rgba(0, 0, 0, 0.05);
}

body.light-theme .spec-item i {
    color: var(--primary-color-light);
}

@media (max-width: 768px) {
    .specs-list {
        grid-template-columns: 1fr;
    }
}

/* Dedicated Hosting Specific Styles */
.dedicated-hero {
    background-image: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('../imgs/dedicated-hero.jpg');
    background-size: cover;
    background-position: center;
}

.server-card .server-card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

body.light-theme .server-card .server-card-header i {
    color: var(--primary-color-light);
}

.server-card .spec-item span {
    font-family: 'Consolas', monospace;
    letter-spacing: -0.5px;
}

/* Enhanced server card styles for dedicated servers */
.server-card.dedicated {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.server-card.dedicated .server-card-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.server-card.dedicated .server-card-body {
    padding: 2rem;
}

body.light-theme .server-card.dedicated {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .server-card.dedicated .server-card-header {
    background: rgba(0, 0, 0, 0.05);
}

/* Game Hosting Specific Styles */
.game-hero {
    background-image: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('../imgs/game-hero.jpg');
    background-size: cover;
    background-position: center;
}

.game-hero .console-container {
    margin-top: 2rem;
}

.server-card.minecraft .server-card-header,
.server-card.cs2 .server-card-header,
.server-card.fivem .server-card-header {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 200px;
}

.server-card.minecraft .server-card-header img,
.server-card.cs2 .server-card-header img,
.server-card.fivem .server-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.server-card:hover .server-card-header img {
    transform: scale(1.1);
}

.server-card .server-card-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    margin: 0;
}

.server-card.minecraft .server-card-header::after,
.server-card.cs2 .server-card-header::after,
.server-card.fivem .server-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.2));
    pointer-events: none;
}

body.light-theme .server-card .server-card-header h3 {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Game-specific card styles */
.server-card.minecraft {
    --game-accent: #44bd32;
}

.server-card.cs2 {
    --game-accent: #e84118;
}

.server-card.fivem {
    --game-accent: #0097e6;
}

.server-card .price-amount {
    color: var(--game-accent, var(--primary-color));
}

body.light-theme .server-card .price-amount {
    color: var(--game-accent, var(--primary-color-light));
}

/* Show More Button Styles */
.show-more-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.show-more-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
    user-select: none;
}

.show-more-btn:hover {
    background: rgba(255, 46, 136, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}

/* Additional Servers Grid */
.additional-servers {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.additional-servers.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Server Grid Styles */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .server-grid,
    .additional-servers {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}