html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* THEME */
:root {
    --bg: #0b0f1a;
    --text: #eaeaea;
    --primary: #75147b;
    --accent: #b1127a;
    --header-bg: rgba(11, 15, 26, .95);
}

body.light {
    --bg: #f4f6fb;
    --text: #111;
    --header-bg: rgba(255, 255, 255, .95);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Geologica', sans-serif;
    overflow-x: hidden;
}

/* HEADER SPACE */
.hero {
    padding-top: 80px;
    position: relative;
    overflow: hidden
}

/* HERO BACKGROUND SFUMATO */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('warden.png') center/cover no-repeat;
    opacity: 0.5;
    filter: blur(12px);
    z-index: -1;
    will-change: transform;
}


/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    z-index: 2000;
}

.site-header.visible {
    background: var(--header-bg);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

body.light .site-header.visible {
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.site-header.shrink {
    height: 80px
}

/* CONTAINER */
.header-container {
    width: 95%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 124px;
    transition: .3s;
}

.site-header.shrink .logo img {
    height: 100px
}

/* NAV */
.navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-link {
    color: var(--text);
    font-family: 'Russo One';
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .25s;
}

.nav-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.arrow {
    transition: transform .3s
}

.dropdown {
    position: relative
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    height: 10px;
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    min-width: 220px;
    padding: 6px 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    margin: 4px 14px;
    padding: 8px 18px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #fff;
    color: var(--primary);
}

/* Desktop only: hover to open dropdown */
@media(min-width: 901px) {
    .dropdown:hover>.nav-link {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: #fff;
    }

    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

/* THEME TOGGLE */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: .6s;
}

.icon-sun {
    display: none
}

body.light .icon-sun {
    display: block;
    transform: rotate(360deg)
}

body.light .icon-moon {
    display: none
}

/* AUTH */
.auth-buttons {
    display: flex;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50px;
    padding: 4px;
}

.auth-btn {
    padding: 8px 18px;
    font-family: 'Russo One';
    color: #fff;
    text-decoration: none;
    transition: .25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-btn:hover {
    background: #fff;
    color: var(--accent);
}

body.light .auth-btn:hover {
    background: var(--primary);
    color: #fff;
}

.auth-separator {
    width: 1px;
    background: rgba(255, 255, 255, .4);
}

.login {
    border-radius: 50px 0 0 50px
}

.register {
    border-radius: 0 50px 50px 0
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    /* Alzato ancora di un po' per prova */
}

.hero-container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* TEXT */
.hero-text h1 {
    font-family: 'Russo One';
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 10px;
    /* Ridotto */
    margin-left: 70px;
    order: 0;
}

.hero-text p {
    max-width: 520px;
    font-size: 1.25rem;
    margin-left: 70px;
    margin-bottom: 15px;
    /* Ridotto */
    order: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* HERO FEATURES */
.hero-features {
    list-style: none;
    margin-left: 70px;
    margin-top: 5px;
    /* Molto ridotto */
    display: flex;
    flex-direction: column;
    gap: 14px;
    order: 2;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

.hero-features li svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* SCROLL DOWN */
.scroll-down-link {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    opacity: 0.3;
    /* Leggermente più visibile base */
    color: #fff;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 10;
    animation: bounceContinuous 2s infinite;
}

.scroll-down-link:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px) scale(1.1);
}

@keyframes bounceContinuous {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-down-link svg {
    width: 32px;
    height: 32px;
}

/* HERO IMAGES */
.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.hero-images {
    position: relative;
}

.computer {
    position: relative;
    width: 300px;
    animation: floatEnderman 4s ease-in-out infinite;
}

@keyframes floatEnderman {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.discordbot {
    position: absolute;
    left: -134%;
    bottom: 300px;
    width: 90px;
    animation: float 5s ease-in-out infinite;
    z-index: 1;
}

.enderman {
    position: absolute;
    left: -28%;
    bottom: 85px;
    width: 60px;
    z-index: 1;
    /* sopra al computer */
}

/* FLOAT */
@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

/* MOBILE */
.hamburger {
    display: none;
    background: none;
    border: none
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    display: block;
    margin: 5px 0;
}

@media(max-width:900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-images {
        justify-content: center;
        width: 100%;
        overflow: visible;
    }

    .hero-images .computer {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        pointer-events: none !important;
    }

    .discordbot {
        display: none;
    }

    .enderman {
        display: none;
    }

    .mobile-hidden {
        display: none !important;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 2001;
        /* Ensure above menu */
    }

    .navbar {
        display: none;
    }

    .navbar.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--header-bg);
        align-items: center;
        justify-content: center;
        z-index: 1500;
        /* Below header but covering content */
        backdrop-filter: blur(20px);
        animation: fadeIn 0.3s ease-out forwards;
    }

    .navbar.open .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .navbar.open .nav-link {
        font-size: 1.5rem;
    }

    /* Hide auth buttons in mobile menu normally, but maybe we want them? 
       For now, sticking to original design which hid them. */


    .auth-buttons {
        display: none
    }

    .hero-text {
        order: 1;
    }

    .hero-text h1 {
        font-size: 2.4rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .hero-text p {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 0 20px;
        font-size: 1.1rem;
    }

    .hero-features {
        margin-left: 0;
        align-items: center;
        margin-top: 30px;
    }

    .hero-features li {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .scroll-down-link {
        bottom: 30px;
        /* Un po' più basso su mobile se serve, o resta fisso */
    }

    .hero-cta {
        order: 3;
        margin-bottom: 30px;
        margin-top: 30px;
        margin-left: 0;
        /* Centrato su mobile */
    }

    .hero-images {
        order: 2;
        margin-bottom: 20px;
    }

    .trustpilot-custom {
        order: 5;
        margin: 20px auto 0 auto;
        justify-content: center;
    }

    .hero-text {
        align-items: center;
    }

    .trustpilot-stats-widget {
        padding: 20px;
    }

    .trustpilot-stats-widget .stat-number {
        font-size: 1.2rem !important;
    }
}


/* da qui */
/* HERO CTA */
.hero-cta {
    /* grid-column removed */
    text-align: left;
    margin-top: 20px;
    /* Più in alto (meno gap rispetto a feature) */
    margin-left: 70px;
    z-index: 5;
    order: 3;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Russo One';
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 30px rgba(177, 18, 122, .35);
    transition: transform .25s, box-shadow .25s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(177, 18, 122, .55);
}

/* ROCKET ICON */
.rocket-icon {
    width: 24px;
    height: 24px;
    display: block;
    transform: scale(1.15);
    transition: transform .3s;
}

.cta-btn:hover .rocket-icon {
    transform: scale(1.25) translateY(0.5px);
}


@media(max-width:900px) {
    .hero-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        margin-left: 0 !important;
        /* Forza la centratura */
    }
}

/* STARS BACKGROUND */
.stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

/* singola stella */
.star {
    position: absolute;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    filter: blur(1.5px);
    animation:
        fade 6s ease-in-out infinite,
        drift 18s linear infinite;
}

/* + alternative */
.star.plus {
    font-weight: 600;
}

/* fade in/out */
@keyframes fade {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: .6
    }
}

/* movimento lento */
@keyframes drift {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(var(--x), var(--y))
    }
}

.ft {
    position: absolute;
    margin-bottom: 50px;
}


/* SERVER TYPE SECTION */
/* COMMON SECTION (Server Type + Why Choose Us) */
/* COMMON SECTION (Server Type + Why Choose Us) */
.common-section-wrapper {
    position: relative;
    background:
        radial-gradient(circle at 10% 40%, rgba(66, 133, 244, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 60%, rgba(30, 58, 138, 0.1) 0%, transparent 60%),
        linear-gradient(to bottom, #0B0F1A 0%, rgba(11, 15, 26, 0.8) 50%, rgba(11, 15, 26, 0) 100%);
}

.server-type {
    padding: 80px 0 50px 0;
    position: relative;
    scroll-margin-top: 70px;
    /* Fine-tuning: leggermente più basso di prima */
}

.server-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.server-container h2 {
    font-family: 'Russo One';
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.server-container .subtitle {
    font-size: 1rem;
    opacity: .75;
    margin-bottom: 60px;
}

/* CARDS */
.server-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.server-card {
    position: relative;
    border-radius: 28px;
    padding: 50px 40px;
    overflow: hidden;
    transition: .35s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    text-align: left;
}

/* IMMAGINE DI SFONDO */
.server-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    filter: blur(14px);
    transform: scale(1.1);
    z-index: -2;
    transition: .4s;
}

/* OVERLAY SCURO */
.server-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 26, .75);
    z-index: -1;
    transition: .4s;
}

/* HOVER */
.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
    border-color: rgba(255, 255, 255, 0.2);
}

.server-card:hover::after {
    filter: blur(8px);
}

.server-card:hover::before {
    background: rgba(11, 15, 26, .55);
}

/* CONTENUTO SOPRA */
.server-card>* {
    position: relative;
    z-index: 1;
}

/* ICONA */
.server-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
}

/* TESTI */
.server-card h3 {
    font-family: 'Russo One';
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.server-card p {
    font-size: 1.05rem;
    opacity: .85;
    margin-bottom: 30px;
    min-height: 60px;
}

/* BUTTON */
.server-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Russo One';
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: .25s;
    margin-top: auto;
}

.server-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(177, 18, 122, .45);
}

/* MOBILE */
@media(max-width:900px) {
    .server-cards {
        grid-template-columns: 1fr;
    }
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 50px 0 80px 0;
    position: relative;
    background: transparent;
    scroll-margin-top: 80px;
}

.why-choose-us h2 {
    font-size: 2.2rem;
}

.why-choose-us .subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card h3 {
    font-family: 'Russo One';
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* LIGHT THEME: Why Choose Us */
body.light .common-section-wrapper {
    background: linear-gradient(160deg, rgba(117, 20, 123, 0.08) 0%, rgba(255, 255, 255, 0) 40%, rgba(177, 18, 122, 0.08) 100%);
}

body.light .why-choose-us {
    background: transparent;
}

body.light .feature-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light .feature-card h3 {
    color: #000;
}

body.light .feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media(max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px;
    }
}

/* TRUSTED BY THE NUMBERS */
.trusted-stats {
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.stats-container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    color: var(--accent);
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-family: 'Russo One';
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.6;
    margin-top: 4px;
}

.trustpilot-main {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.trustpilot-stats-widget {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: 0.3s;
}

.trustpilot-stats-widget:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.trustpilot-stats-widget img {
    height: 30px;
    width: auto;
}

.stars-tp {
    display: flex;
    gap: 4px;
}

body.light .stat-box {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light .stat-number {
    color: #000;
}

body.light .trustpilot-stats-widget {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
}

body.light .scroll-down-link {
    color: #000;
    opacity: 0.4;
}

body.light .scroll-down-link:hover {
    opacity: 1;
}

.trusted-stats {
    padding: 80px 0;
    scroll-margin-top: 80px;
}


/* SERVER LOCATIONS */
.server-locations {
    padding: 20px 0 60px 0;
    scroll-margin-top: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(177, 18, 122, 0.05) 0%, transparent 70%);
}

.server-container {
    width: 95%;
    max-width: 2000px;
    margin: 0 auto;
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card.it:hover {
    border-color: rgba(0, 146, 70, 0.3);
    box-shadow: 0 10px 30px rgba(0, 146, 70, 0.1);
}

.location-card.ca:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto 0 auto;
}

.location-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.single-map-container {
    margin-top: -60px;
    position: relative;
    width: 100%;
    padding: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.location-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flag-icon {
    height: 32px;
    width: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.location-text h3 {
    font-family: 'Russo One';
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.it .location-text h3 {
    color: #fff;
}

.ca .location-text h3 {
    color: #fff;
}

.location-text p {
    margin: 5px 0 0 0;
    opacity: 0.6;
}

.it .ping-result {
    color: #009246;
}

.ca .ping-result {
    color: #ff0000;
}

.it .pulse-echo {
    background: rgba(0, 146, 70, 0.6);
}

.ca .pulse-echo {
    background: rgba(255, 0, 0, 0.6);
}

.location-card.it .flag-icon {
    box-shadow: 0 0 15px rgba(0, 146, 70, 0.2);
}

.location-card.ca .flag-icon {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.ping-box {
    text-align: right;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ping-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ping-result {
    font-family: 'Russo One';
    color: var(--accent);
    font-size: 1.4rem;
}

.ping-value {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ping-value.updating {
    opacity: 0.5;
    transform: scale(0.95);
}

.ms {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-left: 2px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1800px;
    aspect-ratio: 1280 / 630;
    border-radius: 15px;
    background: transparent;
    transition: all 0.3s ease;
}

.map-image {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.9;
    object-fit: contain;
}

.location-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -100%);
    /* Punta il fondo dell'icona sulle coordinate */
}

.location-marker svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

.pulse-echo {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: 1;
    animation: marker-pulse 2s infinite;
    bottom: -2px;
    /* Posizionato alla base del pin */
}

@keyframes marker-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(2.5);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Light Mode adaptations */
body.light .location-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.light .ping-box {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.05);
}

body.light .location-text h3 {
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .single-map-container {
        margin-top: 10px;
    }

    .map-wrapper {
        border-radius: 10px;
        padding: 0 10px;
    }

    .location-card {
        padding: 25px;
    }

    .location-info-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .location-main {
        flex-direction: column;
        text-align: center;
    }

    .ping-box {
        text-align: center;
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box,
    .trustpilot-main {
        width: 100%;
        max-width: 400px;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0 100px 0;
    position: relative;
    background: transparent;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 10px 25px rgba(177, 18, 122, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(177, 18, 122, 0.45);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-btn svg {
    transition: transform 0.4s ease;
}

.faq-btn:hover svg {
    transform: rotate(360deg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    box-shadow: 0 12px 35px rgba(177, 18, 122, 0.25);
    transform: translateY(-2px);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-question .arrow {
    transform: rotate(0deg);
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out,
        opacity 0.2s ease-in-out;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    will-change: max-height, opacity;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer-content {
    padding: 25px 30px 35px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    /* Reset margin to rely on container padding */
}

/* Light Mode adaptations for FAQ */
body.light .faq-item {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

body.light .faq-item:hover {
    background: #fcfcfc;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light .faq-question {
    color: #333;
}

body.light .faq-answer-content {
    background: #fafafa;
}

body.light .faq-answer p {
    color: #666;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 20px 20px 30px 20px;
    }
}

/* FOOTER SECTION */
.site-footer {
    background: rgba(11, 15, 26, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    height: 100px;
    width: auto;
    align-self: flex-start;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(117, 20, 123, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Light Mode Footer */
body.light .site-footer {
    background: #fff;
    border-top-color: rgba(0, 0, 0, 0.05);
}

body.light .footer-description {
    color: #666;
}

body.light .social-link {
    background: #f4f6fb;
    border-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

body.light .social-link:hover {
    color: #fff;
}

body.light .footer-col h3 {
    color: #111;
}

body.light .footer-col ul li a {
    color: #666;
}

body.light .footer-col ul li a:hover {
    color: var(--primary);
}

body.light .footer-bottom p {
    color: #999;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .site-footer {
        padding-top: 60px;
    }
}

body.light .faq-answer-content {
    background: #fafafa;
}

body.light .faq-answer p {
    color: #666;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 20px 20px 30px 20px;
    }
}

/* FOOTER SECTION */
.site-footer {
    background: rgba(11, 15, 26, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    height: 100px;
    width: auto;
    align-self: flex-start;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(117, 20, 123, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Light Mode Footer */
body.light .site-footer {
    background: #fff;
    border-top-color: rgba(0, 0, 0, 0.05);
}

body.light .footer-description {
    color: #666;
}

body.light .social-link {
    background: #f4f6fb;
    border-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

body.light .social-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

body.light .footer-col h3 {
    color: #111;
}

body.light .footer-col ul li a {
    color: #666;
}

body.light .footer-col ul li a:hover {
    color: var(--primary);
}

body.light .footer-bottom p {
    color: #999;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .site-footer {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* MINECRAFT PAGE SPECIFIC STYLES */
.minecraft-hero::before {
    background-image: url('minecraft-back.webp') !important;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.pricing-grid-minecraft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 25px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.plan-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.plan-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

body.light .plan-card-new {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #333;
}

body.light .plan-card-new:hover {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card-new img {
    height: 60px;
    margin-bottom: 15px;
}

.plan-card-new h3 {
    font-family: 'Russo One';
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.plan-card-new .price {
    font-size: 1.5rem;
    font-family: 'Russo One';
    color: var(--accent);
    margin: 10px 0;
}

.plan-features-list {
    list-style: none;
    width: 100%;
    margin: 15px 0;
    text-align: left;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.plan-features-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Plan Toggle Buttons */
.plan-toggle-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 20px 0 40px;
}

.toggle-btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid rgba(177, 18, 122, 0.4);
    background: rgba(177, 18, 122, 0.1);
    color: white;
    font-family: 'Russo One';
    cursor: pointer;
    transition: .3s;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 18px rgba(177, 18, 122, .6);
}

.toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(177, 18, 122, .4);
}

.pricing-section-container {
    display: none;
}

.pricing-section-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Hero Popular Card */
.hero-popular-card {
    background: rgba(177, 18, 122, 0.1);
    border: 1px solid rgba(177, 18, 122, 0.4);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    max-width: 280px;
    justify-self: center;
    z-index: 10;
}

.hero-popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(177, 18, 122, 0.2);
    border-color: var(--accent);
}

.hero-popular-tag {
    color: var(--accent);
    font-family: 'Russo One';
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-popular-ram {
    font-family: 'Russo One';
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 5px;
}

.hero-popular-price {
    font-family: 'Russo One';
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-popular-btn {
    display: block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Russo One';
    font-size: 0.9rem;
    transition: 0.3s;
}

.hero-popular-btn:hover {
    box-shadow: 0 0 20px rgba(177, 18, 122, 0.5);
    transform: scale(1.05);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge-v-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

body.light .badge-v-divider {
    background: rgba(0, 0, 0, 0.1);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.badge svg {
    color: var(--accent);
}

/* Light Mode Badge Styles */
body.light .badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}



.badge-black {
    color: #fff;
}

body.light .badge-black {
    color: #000 !important;
}



/* Premium Layout Controls */
.premium-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.premium-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1000px) {

    .premium-row-top,
    .premium-row-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-row-bottom {
        max-width: 100%;
    }
}

@media (max-width: 650px) {

    .premium-row-top,
    .premium-row-bottom {
        grid-template-columns: 1fr;
    }
}

/* Minecraft Hero Layout Adjustment */
.minecraft-hero .hero-container {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 1200px) {
    .minecraft-hero .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-server-img {
        display: none;
    }
}

@media (max-width: 900px) {
    .minecraft-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }
}

/* PARTNERSHIPS & AFFILIATE SECTION */
.partnerships-affiliate {
    padding: 60px 0 80px 0;
    position: relative;
    background: transparent;
}

.affiliate-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.affiliate-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.affiliate-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.affiliate-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto 20px auto;
    color: var(--accent);
}

.affiliate-card h3 {
    font-family: 'Russo One';
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.affiliate-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* LIGHT THEME: Partnerships & Affiliate */
body.light .affiliate-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light .affiliate-card h3 {
    color: #000;
}

body.light .affiliate-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hamburger default hidden on desktop */
.hamburger {
    display: none;
}

/* ===== MOBILE MENU ===== */
@media(max-width: 900px) {

    /* Affiliate Cards */
    .affiliate-features {
        grid-template-columns: 1fr;
    }

    .affiliate-card {
        padding: 30px;
    }

    /* Hide scroll arrow */
    .scroll-down-link {
        display: none;
    }

    /* ===== Hamburger Button ===== */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        color: #fff;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .hamburger:hover {
        color: var(--accent);
    }

    body.light .hamburger {
        color: #111;
    }

    body.light .hamburger:hover {
        color: var(--accent);
    }

    /* Icon Toggle with Animation */
    .hamburger svg {
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .hamburger .close-icon {
        display: none;
    }

    .hamburger.active .hamburger-icon {
        display: none;
    }

    .hamburger.active .close-icon {
        display: block;
        animation: rotateIn 0.3s ease;
    }

    @keyframes rotateIn {
        from {
            transform: rotate(-90deg);
            opacity: 0;
        }

        to {
            transform: rotate(0deg);
            opacity: 1;
        }
    }

    /* ===== Mobile Dropdown Accordion ===== */
    .dropdown>.nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* Arrow only changes on active (click), not hover */
    .dropdown .arrow {
        transition: transform 0.3s ease;
        margin-left: 8px;
    }

    /* Arrow rotates only when clicked (active state) */
    .dropdown.active .arrow {
        transform: rotate(180deg);
        color: var(--accent);
    }

    /* Dropdown Menu Animation */
    .dropdown .dropdown-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out,
            opacity 0.25s ease-in-out,
            padding 0.3s ease;
        opacity: 0;
        position: static;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        box-shadow: none;
        padding: 0;
        margin: 5px 0 0 0;
        transform: none;
        left: 0;
        min-width: auto;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        padding: 10px 0;
    }

    /* Dropdown Items - Centered like parent */
    .dropdown-menu li {
        list-style: none;
        text-align: center;
    }

    .dropdown-menu a {
        display: block;
        padding: 12px 15px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s ease, background 0.2s ease;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.05);
    }

    body.light .dropdown-menu a {
        color: rgba(0, 0, 0, 0.7);
    }

    body.light .dropdown-menu a:hover {
        color: var(--accent);
        background: rgba(0, 0, 0, 0.03);
    }

    body.light .dropdown .dropdown-menu {
        background: rgba(0, 0, 0, 0.03);
    }
}

/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden by default, toggled via JS */
    animation: slideUp 0.5s ease;
    border-left: 4px solid var(--accent);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Geologica', sans-serif;
}

.cookie-btn.accept {
    background: var(--accent);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: var(--primary);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Light Mode Cookie Banner */
body.light .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.light .cookie-text h3 {
    color: #111;
}

body.light .cookie-text p {
    color: #555;
}

body.light .cookie-btn.decline {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

body.light .cookie-btn.decline:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* =========================================
   PAYMENT ICONS
   ========================================= */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    opacity: 0.7;
}

.payment-icon {
    width: 38px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon svg {
    height: 16px;
    width: auto;
    fill: #fff;
}

body.light .payment-icon {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light .payment-icon svg {
    fill: #333;
}

.payment-icon-img {
    height: 24px;
    width: auto;
    border-radius: 3px;
    opacity: 0.8;
}