/* ==========================================
   IMPORTS & FONTS
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force font inheritance for all elements */
*,
*::before,
*::after {
    font-family: inherit;
}

/* Ensure form elements inherit font styles */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f0e0e;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVBAR & NAVIGATION
   ========================================== */

nav.navbar {
    padding: 16px 0;
    position: fixed;
    width: 100%;
    background: rgba(15, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.2s ease;
}

nav.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Brand (Logo) */
nav.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

nav.navbar .navbar-brand img {
    height: 36px;
    width: auto;
}

/* Navigation Menu */
nav.navbar .navbar-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav.navbar .navbar-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 0;
}

nav.navbar .navbar-menu li a:hover {
    color: #EA9C22;
}

/* Hide icons for cleaner look */
nav.navbar .navbar-menu li a i {
    display: none;
}

/* Navbar Actions (Buttons) */
nav.navbar .navbar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

nav.navbar .navbar-actions a {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    nav.navbar .navbar-menu,
    nav.navbar .navbar-actions {
        display: none;
    }

    /* Simple mobile menu */
    nav.navbar.mobile-active .navbar-menu {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(15, 14, 14, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.navbar.mobile-active .navbar-actions {
        display: flex;
        position: fixed;
        top: calc(60px + 200px);
        left: 0;
        right: 0;
        background: rgba(15, 14, 14, 0.98);
        padding: 20px;
        gap: 12px;
    }

    nav.navbar .navbar-menu li a {
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav.navbar .navbar-menu li a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    nav.navbar .navbar-brand img {
        height: 32px;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
section.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;

    /* CSS Custom Properties for easy control */
    --bg-opacity: 1;
    --bg-scale: 1;
    --bg-blur: 0px;
}

/* Background Graphics */

/* Base class for all background graphics */
.hero-bg-graphic {
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: var(--bg-opacity);
    transform: scale(var(--bg-scale));
    filter: blur(var(--bg-blur));
    transition: all 0.3s ease;
}

/* Individual positioning controls */
.hero-bg-top-mid {
    background-image: url('../images/bgg1.png');
    background-position: top;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(var(--bg-scale));
    z-index: 1;

    --custom-top: 0px;
    --custom-left: 0px;
    top: var(--custom-top);
    transform: translateX(calc(-50% + var(--custom-left))) scale(var(--bg-scale));
}

.hero-bg {
    background-image: url('../images/hero.png');
    background-position: top;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    background-size: cover;
}

.hero-bg-top-right {
    background-image: url('../images/bgg2.png');
    width: 40%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}


.hero-bg-bottom-left {
    background-image: url('../images/bgg2.png');
    transform: scaleX(-1);
    background-size: 110%;
    width: 45%;
    height: 100%;
    top: 180px;
    left: 0;
    z-index: 2;
}

/* .hero-bg-bottom-left {
    background-image: url('../images/bgg3.png');
    background-size: 110%;
    width: 45%;
    height: 100%;
    top: 180px;
    left: 0;
    z-index: 2;
} */

.hero-bg-top-left {
    /* Uncomment and add image when ready */
    background-image: url('../images/bgg4.png');
    width: 50%;
    height: 430px;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.hero-bg-bottom-right {
    /* Uncomment and add image when ready */
    background-image: url('../images/bgg5.png');
    background-position: bottom left;
    width: 55%;
    height: 55%;
    bottom: 0px;
    right: 0px;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-bg-graphic {
        --bg-scale: 0.7;
        --bg-opacity: 0.5;
    }

    .hero-bg-top-mid {
        --custom-top: -30px;
    }

    .hero-bg-top-right {
        --custom-right: -100px;
    }

    .hero-bg-bottom-left {
        --custom-left: -100px;
    }
}


.hero-bottom-left-darkness {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.8) 0%, transparent 45%);
    z-index: 3;
}

/* Hero Content */
section.hero .hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 5;
}

/* Hero Left Section */
section.hero .hero-main {
    text-align: center;
    flex: 1;
    max-width: 600px;
}

section.hero .hero-main .hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
}

section.hero .hero-main .hero-title {
    font-weight: 700;
    font-size: 72px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #FFFFFF;
}

section.hero .hero-main .hero-subtitle {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
}

section.hero .hero-main .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

section.hero .hero-feature-video {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;

}

/* Hero Links */
section.hero .hero-feature-video .hero-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.hero .hero-feature-video .hero-link-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
}

section.hero .hero-feature-video .hero-link-item::after {
    content: '';
    display: block;
    width: 255px;
    height: 50px;
    margin-top: 4px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-link-item-1::after {
    background: url('../images/hero-features-1.png');
}

.hero-link-item-2::after {
    background: url('../images/hero-features-2.png');
}


section.hero .hero-feature-video .hero-link-item:hover {
    color: #EA9C22;
    transform: translateX(5px);
}


section.hero .hero-feature-video .play-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 220, 145, 0.3);
    position: relative;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 220, 145, 0.4);
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 220, 145, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Hero Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

section.hero.store {
    padding: 180px 0 100px;
    min-height: fit-content;
}


/* ==========================================
   BUTTONS & UI COMPONENTS
   ========================================== */
.btn-primary {
    background: #EA9C22;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
}

.btn-primary:hover {
    background: #d18a1a;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.section-tag-left {
    padding: 6px 21px;
    background: rgba(255, 229, 145, 0.14);
    border: 1px solid #EA9C22;
    border-radius: 24px;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #EA9C22;
    width: fit-content;
    margin-bottom: 20px;
}

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

.text-right {
    text-align: right;
}

.text-success {
    color: #5fee8a !important;
}

.text-danger {
    color: #ff6868 !important;
}

.text-warning {
    color: #ffee51 !important;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
section.why-choose {
    padding: 100px 0;
    text-align: center;
}

section.why-choose .container {
    position: relative;
}

section.why-choose .container .features-bg {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('../images/features-bg.png') no-repeat top;
    background-size: cover;
    z-index: 0;
}

section.why-choose .container .features-wrapper {
    position: relative;
    z-index: 5;
}

/* Section Components */
section.why-choose .section-tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 21px;
    gap: 10px;
    background: rgba(255, 229, 145, 0.14);
    border: 1px solid #EA9C22;
    border-radius: 24px;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #EA9C22;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
}

section.why-choose .section-title {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 64px;
    line-height: 81px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

section.why-choose .section-subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Features Grid */
section.why-choose .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 140px;
}

@media (max-width: 992px) {
    section.why-choose .features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }

    section.why-choose .feature-card-center {
        transform: translate(0, 0) !important;
    }
}

/* Feature Cards */
section.why-choose .feature-card {
    background: #0f0e0ed5;
    position: relative;
    min-height: 320px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border: 2px solid #1c1c1c;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.feature-card::after {
    content: '';
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-card::before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.384) 0%, #0f0e0e 100%);
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
}

.feature-card-1::after {
    background: url('../images/feature-1.png');
}

.feature-card-2::after {
    background: url('../images/feature-2.png');
}

.feature-card-3::after {
    background: url('../images/feature-3.png');
}

section.why-choose .feature-card-center {
    transform: translate(0, -60px);
}

.feature-title,
.feature-text {
    position: relative;
    z-index: 5;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.highlight {
    background: linear-gradient(90deg, #F05D11 0%, #FBB131 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
    text-align: left;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
section.products {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

section.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(15, 14, 14, 0.03) 0%, rgba(15, 14, 14, 0.8) 50%, #0f0e0e 100%);
    z-index: 1;
    pointer-events: none;
}

section.products .products-glow {
    position: absolute;
    background: url('../images/products-bg.png') no-repeat center;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 200px;
    right: 0px;
    z-index: 0;
}

.products-glow.reversed {
    transform: scaleY(-1) translateY(200px);

}

section.products .container {
    position: relative;
    z-index: 5;
}


section.products .products-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

section.products .products-title-section .section-subtitle {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    padding-left: 2px;
}

@media (max-width: 768px) {
    section.products .products-title-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .products-title {
        text-align: center !important;
    }
}

.products-title {
    font-weight: 400;
    font-size: 64px;
    line-height: 130%;
    text-align: right;
    color: #FFFFFF;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Product Cards */
.product-card {
    background: #00000071;
    backdrop-filter: blur(4px);
    border: 1px solid #1c1c1cc5;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

p.product-description {
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #dfdfdf;
}

/* <div class="product-features">
    <div class="product-feature-line"><i class="ri-check-line"></i> Undetected since release in 2022</div>
    <div class="product-feature-line"><i class="ri-check-line"></i> Advanced anti-cheat evasion</div>
    <div class="product-feature-line"><i class="ri-check-line"></i> Seamless game integration</div>
    <div class="product-feature-line"><i class="ri-check-line"></i> Optimized for performance</div>
</div> */

.product-features {
    margin: 20px 0;
}

.product-feature-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
}

img.product-image {
    border-radius: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    overflow: hidden;
    width: 100%;
    object-fit: contain;
}


.product-name {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    color: #FFFFFF;
}

.product-status-table {
    width: 100%;
    margin-bottom: 20px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    margin-bottom: 3px;
    border-bottom: 1px solid #d8d8d81e;
}

.status-row.last {
    border-bottom: none;
}

.status-label {
    font-size: 14px;
    color: #aaa;
}


.status-value {
    font-size: 14px;
    font-weight: 400;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.btn-buy {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    gap: 8px;
    background: linear-gradient(90deg, #F05D11 0%, #FBB131 50%, #F05D11 100%);
    background-size: 200% 100%;
    border-radius: 30px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-buy.disabled {
    background: #555 !important;
    box-shadow: none !important;
}

.btn-buy:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.product-price {
    text-align: right;
    min-width: 68px;
}

.price-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #C0C0C0;
}

.price-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, #F05D11 0%, #FBB131 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
}

.price-value .low {
    font-weight: 400;
}

/* View All */
.view-all {
    text-align: center;
}

.btn-view-all {
    background: none;
    border: 1px solid #EA9C22;
    padding: 12px 30px;
    gap: 8px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #EA9C22;
    text-decoration: none;
}

.btn-view-all:hover {
    background: rgba(255, 229, 145, 0.14);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 100px 0;
    position: relative;
}

.faq-glow {
    position: absolute;
    bottom: -150px;
    left: 0px;
    width: 800px;
    height: 100%;
    background: url('../images/faq-bg.png') no-repeat top;
}

/* FAQ Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.faq-right {
    min-height: 550px;
}


section.faq .faq-title {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 44px;
    text-align: left;
    text-transform: capitalize;
    color: #FFFFFF;
}

section.faq .faq-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.6;
}

.faq-nav {
    display: flex;
    gap: 10px;
}

.faq-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #333;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
}

/* FAQ Items */
.faq-item {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

.faq-icon {
    color: #f59e0b;
    font-size: 12px;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
section.testimonials {
    padding: 100px 0;
    position: relative;
}

section.testimonials .container {
    position: relative;
}

section.testimonials .testimonials-bg {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 0;
}

/* Testimonials Layout - Same as FAQ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testimonials-left {
    min-width: 250px;
}


/* Testimonials Header - Left Side */
section.testimonials .section-tag-left {
    padding: 6px 21px;
    background: rgba(255, 229, 145, 0.14);
    border: 1px solid #EA9C22;
    border-radius: 24px;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #EA9C22;
    width: fit-content;
    margin-bottom: 20px;
}

section.testimonials .testimonials-title {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 44px;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.testimonials-nav {
    display: flex;
    gap: 10px;
}

.testimonials-nav button {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonial Carousel - Right Side */
.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 280px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: calc(100% * 3);
    /* 3 pages for infinite effect */
}

.testimonials-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: calc(100% / 3);
    flex-shrink: 0;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 32px;
    color: #EA9C22;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-stars {
    color: #EA9C22;
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* Testimonials Responsive */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-carousel {
        height: 260px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        height: 240px;
    }

    .testimonials-page {
        grid-template-columns: 1fr;
        /* Stack cards vertically on mobile */
        gap: 15px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .quote-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        height: 230px;
    }

    .testimonial-card {
        padding: 12px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .quote-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }
}

/* ==========================================
   DISCORD SECTION
   ========================================== */
.discord {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.discord-title {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    color: #FFFFFF;
}

.discord-subtitle {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;


    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #917E70;
}

.btn-discord {
    border: none;
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 28px;
    gap: 8px;
    background: #FFFFFF;
    border-radius: 100px;
    margin-inline: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #111111;
}

.discord-icon {
    display: flex;
    align-items: center;
    justify-content: center;

}

.discord-icon img {
    width: 24px;
    height: auto;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    padding: 100px 0 100px;
    position: relative;
}

.footer .footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../images/footer.png') no-repeat center;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: auto;
    padding-bottom: 100px;
}

/* Footer Brand */
.footer-brand h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;

}

.footer-brand p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;

}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.footer-column h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-column a {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #cacaca49;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a img {
    width: 32px;
    height: auto;
    transition: filter 0.3s ease;
}

/* ==========================================
   DASHBOARD STYLES
   ========================================== */

/* Dashboard Body Layout */
.dashboard-body {
    background-color: #0f0e0e;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Mobile Header */
.dashboard-mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #000000;
    border-bottom: 1px solid #1c1c1c;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    z-index: 102;
}

.mobile-logo {
    height: 28px;
    width: auto;
}

.btn-redeem-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #F05D11 0%, #FBB131 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-redeem-mobile:hover {
    transform: scale(1.05);
}

/* ==========================================
   SIDEBAR NAVIGATION
   ========================================== */
.dashboard-sidebar {
    width: 260px;
    background: #0a0a0a;
    border-right: 1px solid #1c1c1c;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    transition: transform 0.2s ease;
}

.sidebar-brand {
    padding: 24px 20px;
    border-bottom: 1px solid #1c1c1c;
}

.sidebar-logo {
    height: 28px;
    width: auto;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar-item {
    margin-bottom: 2px;
    position: relative;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-item.active .sidebar-link {
    color: #EA9C22;
    background: rgba(234, 156, 34, 0.1);
    border-left-color: #EA9C22;
}

.sidebar-link i {
    font-size: 18px;
    width: 18px;
    min-width: 18px;
}

.sidebar-bottom {
    padding: 20px 0;
    border-top: 1px solid #1c1c1c;
    background: rgba(0, 0, 0, 0.3);
}

.logout-link {
    color: rgba(255, 104, 104, 0.8) !important;
}

.logout-link:hover {
    color: #ff6868 !important;
    background: linear-gradient(90deg, rgba(255, 104, 104, 0.15) 0%, rgba(255, 104, 104, 0.05) 100%) !important;
    border-left-color: #ff6868 !important;
}

/* ==========================================
   MAIN DASHBOARD CONTENT
   ========================================== */
.dashboard-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
    background: #0f0e0e;
    min-height: 100vh;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.btn-redeem {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #EA9C22;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-redeem:hover {
    background: #d18a1a;
}

.btn-redeem i {
    font-size: 16px;
}

/* ==========================================
   STATS CARDS
   ========================================== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stats-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s ease;
}

.stats-card:hover {
    background: #202020;
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.users-card .stats-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.licenses-card .stats-icon {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.cheats-card .stats-icon {
    background: rgba(234, 156, 34, 0.2);
    color: #EA9C22;
}

.stats-content h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.stats-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* ==========================================
   ANNOUNCEMENTS SECTION
   ========================================== */
.dashboard-announcements {
    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
}

.dashboard-announcements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.announcements-header {
    background: linear-gradient(135deg, #202020 0%, #1c1c1c 100%);
    padding: 24px 32px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
}

.announcements-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #EA9C22, transparent);
    opacity: 0.3;
}

.announcements-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.announcements-title i {
    font-size: 20px;
    color: #EA9C22;
    filter: drop-shadow(0 0 8px rgba(234, 156, 34, 0.3));
}

.announcements-list {
    max-height: 650px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 #1a1a1a;
}

.announcement-item {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.announcement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(234, 156, 34, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}

.announcement-item:hover::before {
    width: 4px;
    background: linear-gradient(180deg, #F05D11 0%, #FBB131 100%);
}

.announcement-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.announcement-item:hover .announcement-title {
    color: #EA9C22;
}

.announcement-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.announcement-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 8px 0;
    line-height: 1.6;
    font-style: italic;
}

.announcement-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    display: block;
    font-weight: 500;
}

/* ==========================================
   DASHBOARD RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
    .dashboard-main {
        padding: 30px 25px;
    }
    
    .dashboard-stats {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .dashboard-main {
        padding: 25px 20px;
    }
    
    .stats-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .dashboard-mobile-header {
        display: flex;
    }
    
    .dashboard-sidebar {
        width: 260px;
        transform: translateX(-100%);
        z-index: 101;
    }
    
    .dashboard-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .dashboard-main {
        margin-left: 0;
        padding: 80px 20px 20px 20px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .dashboard-title {
        font-size: 24px;
        text-align: center;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .stats-card {
        padding: 20px;
        gap: 16px;
    }
    
    .announcements-header {
        padding: 16px 20px;
    }
    
    .announcement-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-main {
        padding: 80px 16px 16px 16px;
    }
    
    .dashboard-title {
        font-size: 22px;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }
    
    .stats-icon {
        margin: 0 auto;
    }
    
    .announcements-header {
        padding: 16px;
    }
    
    .announcement-item {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .dashboard-main {
        padding: 90px 12px 12px 12px;
    }
    
    .dashboard-title {
        font-size: 22px;
    }
    
    .stats-card {
        padding: 16px;
    }
    
    .stats-value {
        font-size: 20px;
    }
    
    .announcements-header {
        padding: 14px 16px;
    }
    
    .announcement-item {
        padding: 16px;
    }
    
    /* Even smaller sidebar */
    .dashboard-sidebar {
        width: 240px;
    }
}

/* Mobile Menu Toggle Improvements */
.dashboard-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    border-radius: 6px;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

/* Custom Scrollbar for Announcements */
.announcements-list::-webkit-scrollbar {
    width: 6px;
}

.announcements-list::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.announcements-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.announcements-list::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Mobile-specific improvements for entire project */
@media (max-width: 768px) {
    /* Better touch targets */
    .btn-primary,
    .btn-secondary,
    .btn-view-all,
    .btn-buy {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Improved text sizes for mobile readability */
    .section-title {
        font-size: 48px !important;
        line-height: 1.1 !important;
    }
    
    .section-subtitle {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 20px;
    }
    
    /* Improved cards for touch */
    .product-card,
    .feature-card,
    .testimonial-card {
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .product-card:active,
    .feature-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

@media (max-width: 480px) {
    /* Even better mobile experience */
    .container {
        padding: 0 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Better typography hierarchy on small screens */
    .section-title {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    
    .hero-title {
        font-size: 48px !important;
        line-height: 1.1 !important;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (already dark, but adding for completeness) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f0e0e;
        color: #ffffff;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Hero Responsive */
@media (max-width: 1024px) {

    /* Tablet adjustments */
    section.hero .hero-main .hero-title {
        font-size: 80px;
        line-height: 90px;
    }

    section.hero .hero-content {
        gap: 60px;
    }

    section.hero .hero-feature-video {
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {

    /* Background graphics adjustments */
    .hero-bg-graphic {
        --bg-scale: 0.7;
        --bg-opacity: 0.4;
    }

    .hero-bg-top-mid {
        --custom-top: -30px;
    }

    .hero-bg-top-right {
        --custom-right: -100px;
    }

    .hero-bg-bottom-left {
        --custom-left: -100px;
    }

    /* Hero content adjustments */
    section.hero {
        padding: 140px 0 80px;
    }

    section.hero .hero-content {
        gap: 40px;
    }

    section.hero .hero-main .hero-title {
        font-size: 64px;
        line-height: 70px;
    }

    section.hero .hero-main .hero-tag {
        font-size: 14px;
        margin-bottom: 20px;
    }

    section.hero .hero-main .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    /* Mobile hero adjustments */
    section.hero {
        padding: 120px 0 60px;
        min-height: 90vh;
    }

    section.hero .hero-content {
        gap: 40px;
    }

    section.hero .hero-main {
        max-width: 100%;
    }

    section.hero .hero-main .hero-title {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 20px;
    }

    section.hero .hero-main .hero-tag {
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    section.hero .hero-main .hero-subtitle {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    section.hero .hero-main .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }

    /* Mobile feature video section - Complete redesign */
    section.hero .hero-feature-video {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 0;
        width: 100%;
    }

    /* Play button first, bigger and centered */
    section.hero .hero-feature-video .play-button {
        order: 1;
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    /* Features below play button, stacked vertically */
    section.hero .hero-feature-video .hero-links {
        order: 2;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
    }

    section.hero .hero-feature-video .hero-link-item {
        font-size: 14px;
        margin-bottom: 0;
        text-align: center;
        width: 100%;
        max-width: 200px;
    }

    section.hero .hero-feature-video .hero-link-item::after {
        display: none;
    }

    /* Hide most background graphics on mobile, keep only one */
    .hero-bg-top-mid,
    .hero-bg-top-left,
    .hero-bg-bottom-right {
        display: none;
    }

    /* Keep only the main background and make it bigger */
    .hero-bg-top-right {
        --bg-scale: 1.2;
        --bg-opacity: 0.6;
        margin-top: 80px;
        margin-right: -150px;
        bottom: auto;
        left: auto;
        right: 0;
        width: 100%;
        height: 100%;
        top: 0;
    }

    .hero-bg-bottom-left {
        --bg-scale: 1.2;
        --bg-opacity: 0.6;
        margin-top: 480px;
        margin-left: -150px;
        bottom: auto;
        left: 0;
        right: auto;
        width: 100%;
        height: 100%;
        top: 0;
    }
}

@media (max-width: 480px) {

    /* Small mobile screens */
    section.hero {
        padding: 100px 0 40px;
        min-height: 85vh;
    }

    section.hero .hero-content {
        gap: 25px;
    }

    section.hero .hero-main .hero-title {
        font-size: 42px;
        line-height: 46px;
        margin-bottom: 16px;
    }

    section.hero .hero-main .hero-tag {
        font-size: 11px;
        margin-bottom: 16px;
    }

    section.hero .hero-main .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    section.hero .hero-main .hero-buttons {
        gap: 12px;
        margin-bottom: 40px;
    }

    section.hero .hero-main .hero-buttons .btn-primary,
    section.hero .hero-main .hero-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    /* Adjust feature section for small screens */
    section.hero .hero-feature-video {
        gap: 25px;
    }

    section.hero .hero-feature-video .play-button {
        width: 70px;
        height: 70px;
    }

    section.hero .hero-feature-video .hero-link-item {
        font-size: 13px;
        max-width: 180px;
    }

    /* Container padding for very small screens */
    .container {
        padding: 0 16px;
    }

    section.hero .hero-feature-video .hero-links {
        gap: 20px;
    }

    section.hero .hero-feature-video .hero-link-item {
        font-size: 13px;
        max-width: 180px;
    }

    section.hero .hero-feature-video .play-button,
    section.hero .hero-feature-video .play-button img {
        width: 60px;
        height: 60px;
    }

    /* Single background graphic, larger and more prominent */
    .hero-bg-top-left,
    .hero-bg-bottom-right {
        display: none;
    }
}

@media (max-width: 360px) {

    /* Extra small screens */
    section.hero .hero-main .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    section.hero .hero-main .hero-buttons {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Feature section for very small screens */
    section.hero .hero-feature-video .hero-link-item {
        font-size: 12px;
        max-width: 160px;
    }

    section.hero .hero-feature-video .play-button {
        width: 60px;
        height: 60px;
    }

    /* Keep background large and visible even on tiny screens */
    .hero-bg-top-mid {
        --bg-scale: 1.8;
        --bg-opacity: 0.6;
    }
}

/* General Mobile Styles */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .features,
    .product-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PRODUCT PAGE STYLES
   ========================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    margin-top: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #EA9C22;
}

.breadcrumb span:last-child {
    color: #ffffff;
}

/* Product Hero Section */
.product-hero {
    padding: 160px 0 10px 0;
    position: relative;
    min-height: 80vh;
}

.product-hero .container {
    position: relative;
    z-index: 5;
}

.product-hero>.container>h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Product Gallery */
.product-gallery {
    width: 100%;
    margin-bottom: 40px;
}

.product-card-space {
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 30px;
}

.product-card-space .product-description {
    font-weight: 200;
    font-size: 18px;
    color: rgb(219, 219, 219);
}

.product-card-space img{
    width: 100%;
}

.product-main-image {
    position: relative;
    width: 100%;
    height: fit-content;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0f0e0e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px;
}

.product-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    object-fit: cover;
}

.product-thumbnails .thumbnail:hover,
.product-thumbnails .thumbnail.active {
    border-color: #EA9C22;
    transform: scale(1.05);
}

/* Product Info */
.product-hero-right {
    padding-top: 20px;
}

.product-category {
    color: #EA9C22;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
    color: #EA9C22;
}

.product-rating .rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Product Features Highlight */
.product-features-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 220, 145, 0.1);
    border-color: rgba(255, 220, 145, 0.3);
}

.feature-highlight i {
    color: #EA9C22;
    font-size: 18px;
}

.feature-highlight span {
    font-size: 14px;
    font-weight: 500;
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 32px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.plan-option {
    position: relative;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.plan-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.plan-option:hover::after,
.plan-option:focus::after,
.plan-option.active::after {
    opacity: 1;
    background: linear-gradient(360deg, rgba(130, 79, 0, 0.24) 0%, rgba(234, 156, 34, 0.24) 100%);
    box-shadow: 0px 4px 35.9px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12.9px);
}

.plan-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.plan-price {
    font-weight: 600;
    font-size: 32px;
    line-height: 24px;

    background: linear-gradient(180deg, #EA9C22 0%, #B26C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F05D11 0%, #ffc947 100%);
    color: #0f0e0e;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 15px;
    white-space: nowrap;
}

.plan-savings {
    position: absolute;
    bottom: -8px;
    right: 8px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0f0e0e;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
}

.selected-plan-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.select-plan-title {

    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;

}

.total-price {
    font-weight: 600;
    font-size: 48px;
    background: linear-gradient(180deg, #FFFFFF -79.17%, #AFAFAF 179.17%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-stock {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}


/* Product Actions */
.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.product-actions button {
    flex: 1;
    padding: 16px;
    border-radius: 16px;
}

.btn-buy-now {
    flex: 1;
    background: linear-gradient(135deg, #F05D11 0%, #ffc947 100%);
    color: #0f0e0e;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 220, 145, 0.4);
}

.btn-add-cart {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-cart:hover {
    background: rgba(255, 220, 145, 0.2);
    border-color: #EA9C22;
    color: #EA9C22;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icons i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Product Details Tabs */
.product-details {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.product-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    overflow-x: auto;
    padding: 4px;
}

.tab-btn {
    padding: 6px 21px;
    background: rgba(255, 229, 145, 0.14);
    border: 1px solid #EA9C22;
    border-radius: 24px;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #EA9C22;
    width: fit-content;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ea9d2241;
}

.tab-content {
    padding: 36px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 30px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.tab-left h3,
.tab-panel h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.tab-left h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #EA9C22;
}

.tab-left p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.overview-list {
    list-style: none;
    margin: 20px 0;
}

.overview-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.overview-list li i {
    color: #00ff88;
    font-size: 16px;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, rgba(255, 220, 145, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    position: sticky;
    top: 140px;
}

.stats-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #EA9C22;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 220, 145, 0.1);
    border-color: rgba(255, 220, 145, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F05D11 0%, #ffc947 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #0f0e0e;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.requirement-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #EA9C22 0%, #B26C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-icon {
    font-size: 24px;
}

.category-header h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.requirement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255);
}

.req-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #EA9C22;
}

.req-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.req-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.req-list li strong {
    color: #ffffff;
    margin-right: 8px;
}

.compatibility-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 220, 145, 0.1);
    border: 1px solid rgba(255, 220, 145, 0.3);
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.compatibility-note i {
    color: #EA9C22;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.compatibility-note p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Reviews Section */
.reviews-summary {
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.rating-overview {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}


.rating-stars {
    color: #EA9C22;
    font-size: 20px;
    margin-bottom: 8px;
}

.total-reviews {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.rating-bar span:first-child {
    width: 60px;
    color: rgba(255, 255, 255, 0.7);
}

.rating-bar .bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: linear-gradient(135deg, #F05D11 0%, #ffc947 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-bar span:last-child {
    width: 40px;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-info strong {
    font-size: 16px;
    color: #ffffff;
}

.review-stars {
    color: #EA9C22;
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.support-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #EA9C22;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: rgba(255, 220, 145, 0.1);
    border-color: rgba(255, 220, 145, 0.3);
    color: #ffffff;
}

.support-link i {
    color: #EA9C22;
    font-size: 18px;
}

.contact-support {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 220, 145, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
}

.contact-support h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-support p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 220, 145, 0.2);
    border-color: #EA9C22;
    transform: translateY(-2px);
}

.contact-btn .discord-icon img {
    width: 20px;
    height: 20px;
}

/* Related Products */
.related-products {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Product Page */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero-left {
        position: static;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 80px;
        flex-wrap: wrap;
    }

    .product-title {
        font-size: 32px;
    }

    .product-features-highlight {
        grid-template-columns: 1fr;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /* Features section mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px;
        gap: 16px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }

    /* Requirements section mobile */
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-header h4 {
        font-size: 18px;
    }

    .item-line {
        font-size: 14px;
    }

    /* Rating overview mobile */
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .rating-stat h3 {
        font-size: 24px;
    }

    .rating-stat p {
        font-size: 12px;
    }

    /* Store/Products mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-price {
        font-size: 20px;
    }

    /* Product gallery mobile fixes */
    .product-gallery {
        margin-bottom: 24px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-card-space {
        padding: 16px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .product-card-space .product-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .product-main-image {
        margin-bottom: 16px;
        border-radius: 16px;
        max-width: 100%;
        overflow: hidden;
    }

    .product-main-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 12px;
        object-fit: contain;
    }

    .product-thumbnails {
        gap: 8px;
        padding: 0;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .product-thumbnails::-webkit-scrollbar {
        height: 4px;
    }

    .product-thumbnails::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .product-thumbnails::-webkit-scrollbar-thumb {
        background: rgba(255, 220, 145, 0.5);
        border-radius: 4px;
    }

    .product-thumbnails .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        flex-shrink: 0;
        min-width: 60px;
    }

    .product-badge {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 20px;
    }

    /* Product page background graphics mobile fix */
    .product-hero .hero-bg-top-right {
        display: none !important;
    }

    /* Alternative: If you want to keep it but fix overflow */
    /* 
    .product-hero .hero-bg-top-right {
        width: 30%;
        height: 60%;
        top: 20px;
        right: -50px;
        opacity: 0.3;
        z-index: 0;
    }
    */

    /* Status page mobile */
    .status-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .status-item {
        padding: 16px;
    }

    /* FAQ mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-question {
        font-size: 16px;
        padding-right: 40px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Support section mobile */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact options mobile */
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Testimonials mobile improvements */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer mobile */
    .footer {
        padding: 80px 0 60px;
    }

    .footer-content {
        max-width: 100%;
        padding: 0 20px 60px;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-brand h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .footer-brand p {
        font-size: 16px;
        margin-bottom: 0;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        text-align: center;
    }

    .footer-column {
        flex: 1;
        min-width: 150px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-column a {
        font-size: 14px;
        display: block;
        padding: 4px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
    }

    .footer-bottom p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a img {
        width: 28px;
    }

    /* Discord section mobile */
    .discord-title {
        font-size: 32px;
    }

    .discord-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .btn-discord {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Extra small screens (below 480px) */
@media (max-width: 480px) {
    /* General spacing adjustments */
    section {
        padding: 60px 0;
    }

    /* Features extra small */
    .features-grid {
        gap: 16px;
    }

    .feature-item {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .feature-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .feature-content p {
        font-size: 12px;
    }

    /* Products grid extra small */
    .product-card {
        padding: 16px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-features {
        gap: 6px;
    }

    .product-feature {
        font-size: 12px;
        padding: 4px 8px;
    }

    /* Product gallery extra small screens */
    .product-gallery {
        margin-bottom: 20px;
    }

    .product-card-space {
        padding: 12px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .product-card-space .product-description {
        font-size: 13px;
        line-height: 1.4;
    }

    .product-main-image {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .product-main-image img {
        border-radius: 8px;
    }

    .product-thumbnails {
        gap: 6px;
    }

    .product-thumbnails .thumbnail {
        width: 50px;
        height: 50px;
        border-radius: 6px;
        min-width: 50px;
    }

    .product-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 16px;
    }

    /* Product page background fix - small screens */
    .product-hero .hero-bg-top-right {
        display: none !important;
    }

    /* Status items extra small */
    .status-item {
        padding: 12px;
        gap: 8px;
    }

    .status-name {
        font-size: 14px;
    }

    .status-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* FAQ extra small */
    .faq-item {
        padding: 12px;
    }

    .faq-question {
        font-size: 15px;
        padding-right: 35px;
    }

    .faq-toggle {
        font-size: 16px;
        right: 12px;
    }

    /* Footer extra small */
    .footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        padding: 0 16px 40px;
        gap: 30px;
    }

    .footer-brand {
        margin-bottom: 30px;
    }

    .footer-brand h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        max-width: 200px;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-column a {
        font-size: 13px;
        padding: 3px 0;
    }

    .footer-bottom {
        padding-top: 20px;
        gap: 16px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-social a img {
        width: 24px;
    }

    /* Footer background adjustments for small screens */
    .footer-glow {
        background-size: cover;
        opacity: 0.6;
    }

    /* Discord extra small */
    .discord-title {
        font-size: 28px;
    }

    .discord-subtitle {
        font-size: 14px;
    }
}

/* Additional footer improvements for very small screens */
@media (max-width: 360px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        padding: 0 12px 30px;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-brand p {
        font-size: 12px;
    }

    /* Product gallery ultra small screens */
    .product-gallery {
        margin-bottom: 16px;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .product-card-space {
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .product-card-space .product-description {
        font-size: 12px;
        line-height: 1.3;
    }

    .product-main-image {
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .product-main-image img {
        border-radius: 6px;
    }

    .product-thumbnails {
        gap: 4px;
        max-width: 100%;
    }

    .product-thumbnails .thumbnail {
        width: 45px;
        height: 45px;
        border-radius: 4px;
        min-width: 45px;
        border-width: 1px;
    }

    .product-badge {
        top: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 12px;
    }

    /* Product page background fix - extra small screens */
    .product-hero .hero-bg-top-right {
        display: none !important;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column a {
        font-size: 12px;
        padding: 6px 0;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-social a {
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-social a img {
        width: 20px;
    }
}

/* ==========================================
   AUTH PAGES (Register/Login)
   ========================================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0f0e0e;
    padding: 120px 0 50px;
    overflow: hidden;
}

.auth-section .container {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-buttons-top {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.auth-buttons-top .btn-primary,
.auth-buttons-top .btn-secondary {
    padding: 12px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.auth-buttons-top .btn-primary.active {
    background: linear-gradient(90deg, #F05D11 0%, #FBB131 100%);
    color: #0f0e0e;
}

.auth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Auth Left Side */
.auth-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Auth Right Side */
.auth-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.auth-branding {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
}

.auth-branding h1 {
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
}

.brand-optimum {
    color: #EA9C22;
}

.auth-title {
    font-weight: 600;
    font-size: 60px;
    background: linear-gradient(180deg, #FFFFFF 10.19%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 24px 0 16px 0;
}

.auth-description {
    font-size: 16px;
    color: rgba(255, 255, 255);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Rating Section */
.auth-rating {
    display: flex;
    gap: 16px;
    align-items: center;
}

.rating-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #EA9C22;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.rating-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars i {
    color: #EA9C22;
    font-size: 16px;
}

.rating-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0px;
}

/* Auth Right Side - Form */
.auth-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.auth-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(6px);
    width: 100%;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    z-index: 2;
}

.auth-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 16px 16px 48px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #EA9C22;
    background: rgba(255, 255, 255, 0.12);
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-toggle,
.license-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 20px;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle:hover,
.license-toggle:hover {
    color: #EA9C22;
}

.auth-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 20px;
}

.auth-footer span {
    margin: 0 4px;
}

.auth-link {
    color: #EA9C22;
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Responsive Design for Auth Pages */
@media (max-width: 700px) {
    .auth-section {
        padding: 140px 0 60px;
        min-height: 100vh;
        align-items: center;
        justify-content: center;
    }

    .auth-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        padding: 0 20px;
        width: 100%;
        text-align: center;
    }

    .auth-left {
        display: none;
    }

    .auth-buttons-top {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 60px;
        gap: 12px;
    }

    .auth-buttons-top .btn-primary,
    .auth-buttons-top .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 90px;
    }

    .auth-form-container {
        padding: 32px 24px;
        margin: 0;
        border-radius: 20px;
        width: 100%;
    }

    .auth-branding {
        padding: 24px 20px;
        margin: 0 0 20px 0;
        border-radius: 20px;
        width: 100%;
    }

    .auth-branding h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .auth-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .auth-description {
        font-size: 14px;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .auth-form {
        gap: 20px;
    }

    .auth-form input {
        padding: 14px 14px 14px 44px;
        font-size: 15px;
        border-radius: 10px;
    }

    .input-icon {
        font-size: 18px;
        left: 14px;
    }

    .password-toggle,
    .license-toggle {
        right: 14px;
        font-size: 18px;
        min-width: 40px;
        min-height: 40px;
    }

    .auth-submit {
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
        min-height: 48px;
    }

    .auth-rating {
        gap: 12px;
        justify-content: center;
    }

    .rating-avatars {
        justify-content: center;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }

    .rating-text {
        font-size: 13px;
    }

    .rating-stars i {
        font-size: 14px;
    }

    .rating-number {
        font-size: 12px;
    }

    .auth-footer {
        font-size: 13px;
        line-height: 1.4;
    }

    .faq-glow{
        display: none;
    }
}