:root {
    /* Brand Colors (Delicate & Premium) */
    --primary: #2B1842; /* Softer, elegant plum purple */
    --primary-light: #52317A; /* Delicate lighter purple */
    --primary-dark: #140B21; /* Deep luxury background */
    --accent: #E0C08D; /* Champagne Gold for delicate highlight */
    --accent-hover: #D0A765;
    
    /* Neutral Colors */
    --bg-dark: #0b090a;
    --bg-card: rgba(36, 0, 70, 0.4);
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    --white: #ffffff;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: var(--primary-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--accent);
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(224, 192, 141, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--white);
    border: none;
}

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

.btn-primary-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-primary-outline:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Flash offer bar */
.flash-offer-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
    min-height: 44px;
    background: linear-gradient(90deg, #f04a24 0%, #ff6a2a 52%, #f04a24 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(240, 74, 36, 0.28);
}

.flash-offer-inner {
    width: min(1180px, calc(100% - 24px));
    min-height: 44px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
}

.flash-offer-title,
.flash-offer-countdown,
.flash-offer-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.flash-offer-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.flash-offer-bolt {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.flash-offer-copy {
    font-size: 0.9rem;
    overflow: hidden;
}

.flash-offer-copy strong,
.flash-offer-copy span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flash-offer-countdown {
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    gap: 6px;
}

.flash-offer-clock {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
}

.flash-offer-clock::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    animation: urgentClockPulse 1.2s ease-out infinite;
}

.flash-offer-clock svg {
    position: relative;
    z-index: 1;
}

.flash-offer-timer {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #fff;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.flash-offer-days {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    font-weight: 900;
    text-transform: none;
}

.flash-offer-days[hidden] {
    display: none;
}

.flash-offer-timer span {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 24px;
    padding: 0 5px;
    border-radius: 3px;
    background: #0d0807;
    color: #fff;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.24);
    line-height: 1;
}

.flash-offer-timer em {
    color: rgba(255, 255, 255, 0.92);
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

@keyframes urgentClockPulse {
    0% {
        transform: scale(0.72);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.flash-offer-action,
.flash-offer-applied {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #f04a24;
    background: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    text-decoration: none;
    white-space: nowrap;
}

.flash-offer-applied {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.flash-offer-bar + .header {
    top: 44px;
}

.flash-offer-bar + .header + main[style*="padding-top: 120px"],
.flash-offer-bar + .header + main[style*="padding: 120px"] {
    padding-top: 164px !important;
}

/* Header */
.header {
    background-color: rgba(16, 0, 43, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-footer {
    margin-bottom: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, var(--primary), var(--primary-dark));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.video-card {
    padding: 15px;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(224, 192, 141, 0.3);
    box-shadow: 0 10px 40px rgba(224, 192, 141, 0.15), var(--glass-shadow);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.6);
}

.video-slide {
    display: none;
    width: 100%;
}

.video-slide.active {
    display: block;
    animation: slideInScale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slideInScale {
    0% { opacity: 0; transform: scale(0.95) translateX(30px); }
    100% { opacity: 1; transform: scale(1) translateX(0); }
}

.preview-video {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 11, 33, 0.6);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.pricing-card.highlight {
    background: var(--primary-light);
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price {
    margin: 30px 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price .period {
    color: var(--text-muted);
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 90px 0;
    background-color: var(--primary);
    border-top: 1px solid rgba(224, 192, 141, 0.08);
}

.guarantee-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 55px 40px;
    border: 1px solid rgba(224, 192, 141, 0.2);
    background: linear-gradient(135deg, rgba(20, 11, 33, 0.45) 0%, rgba(36, 0, 70, 0.25) 100%);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    border-radius: 24px;
}

.guarantee-badge {
    margin-bottom: 25px;
    display: inline-block;
}

.shield-icon {
    filter: drop-shadow(0 4px 10px rgba(224, 192, 141, 0.3));
    animation: shieldPulse 3.5s infinite ease-in-out;
}

@keyframes shieldPulse {
    0%, 100% { filter: drop-shadow(0 4px 10px rgba(224, 192, 141, 0.3)); transform: scale(1); }
    50% { filter: drop-shadow(0 4px 22px rgba(224, 192, 141, 0.65)); transform: scale(1.03); }
}

.guarantee-card h2 {
    color: var(--accent);
    font-size: 2.2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
    max-width: 680px;
    margin: 0 auto 15px;
}

.guarantee-card .highlight-gold {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 25px;
    text-shadow: 0 2px 10px rgba(224, 192, 141, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #160c26 50%, #11071d 100%);
    border-top: 1px solid rgba(224, 192, 141, 0.08);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(82, 49, 122, 0.08);
    border: 1px solid rgba(224, 192, 141, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover, .faq-item.active {
    border-color: rgba(224, 192, 141, 0.35);
    background: rgba(82, 49, 122, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 30px;
    text-align: left;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    outline: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 680px;
    padding-bottom: 24px;
}

.faq-answer,
.faq-answer div,
.faq-answer p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

.faq-answer strong {
    color: var(--accent);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.brand-col p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

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

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--accent);
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--white);
    outline: none;
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Authentication Pages */
.auth-section {
    width: 100%;
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.auth-card h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-control:focus {
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.4);
}

.alert-danger {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 20px;
    text-align: center;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.auth-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .pricing-card.highlight {
        transform: scale(1);
    }
    .pricing-card.highlight:hover {
        transform: translateY(-10px);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .flash-offer-bar {
        min-height: 48px;
    }

    .flash-offer-inner {
        width: min(100% - 16px, 720px);
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        min-height: 48px;
    }

    .flash-offer-title span:last-child {
        display: none;
    }

    .flash-offer-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
        font-size: 0.78rem;
        line-height: 1.1;
    }

    .flash-offer-countdown {
        align-items: center;
        justify-content: flex-end;
        gap: 4px;
        font-size: 0.62rem;
    }

    .flash-offer-countdown-label {
        display: none;
    }

    .flash-offer-clock {
        width: 16px;
        height: 16px;
    }

    .flash-offer-timer {
        gap: 2px;
    }

    .flash-offer-days {
        min-height: 22px;
        padding: 0 5px;
        font-size: 0.68rem;
    }

    .flash-offer-timer span {
        min-width: 22px;
        height: 22px;
        padding: 0 4px;
        border-radius: 3px;
    }

    .flash-offer-action,
    .flash-offer-applied {
        display: none;
    }

    .flash-offer-bar + .header {
        top: 48px;
    }

    .flash-offer-bar + .header + main[style*="padding-top: 120px"],
    .flash-offer-bar + .header + main[style*="padding: 120px"] {
        padding-top: 168px !important;
    }

    .hero {
        padding: 130px 0 60px;
        text-align: center;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary, .btn-primary-outline {
        width: 100%;
    }
    
    .header-container {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 8px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--accent);
    }
    
    .header-actions {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(14, 10, 24, 0.98);
        border-left: 1.5px solid rgba(224, 192, 141, 0.15);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 95px 24px 40px;
        gap: 25px;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        box-shadow: -10px 0 35px rgba(0,0,0,0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .header-actions.active {
        right: 0;
    }
    
    .nav {
        flex-direction: column;
        align-items: stretch !important;
        gap: 16px !important;
        width: 100%;
    }
    
    .nav a.mobile-link {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        padding: 12px 18px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.25s ease;
        text-align: left;
    }
    
    .nav a.mobile-link:hover {
        background: rgba(212, 175, 55, 0.06);
        border-color: rgba(212, 175, 55, 0.25);
        color: var(--accent);
        transform: translateX(4px);
    }
    
    .header-actions .btn-primary-outline.mobile-link {
        display: flex;
        width: 100%;
        justify-content: center;
        background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
        border: none !important;
        color: #120720 !important;
        font-weight: 750 !important;
        font-size: 0.95rem !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 14px 20px !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 18px rgba(224, 192, 141, 0.35) !important;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .header-actions .btn-primary-outline.mobile-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(224, 192, 141, 0.55) !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price .amount {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Global Footer Social Icon Hover Effects */
.social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 192, 141, 0.2);
}
.instagram-btn:hover {
    color: #e1306c !important;
    border-color: rgba(225, 48, 108, 0.4) !important;
    background: rgba(225, 48, 108, 0.08) !important;
}
.tiktok-btn:hover {
    color: #00f2fe !important;
    border-color: rgba(0, 242, 254, 0.4) !important;
    background: rgba(0, 242, 254, 0.08) !important;
}
.youtube-btn:hover {
    color: #ff0000 !important;
    border-color: rgba(255, 0, 0, 0.4) !important;
    background: rgba(255, 0, 0, 0.08) !important;
}

/* Admin Sidebar Styles */
.btn-sidebar {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
}
.btn-sidebar:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.btn-sidebar.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* ==========================================
   USER ACCOUNT NAV DROPDOWN STYLES
   ========================================== */
.mobile-profile-card {
    display: none;
}

.mobile-profile-plan {
    display: none;
}

.mobile-profile-plan-card {
    display: none;
}

.nav-dropdown-container {
    position: relative;
    display: inline-block;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.user-avatar-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--accent);
}

.user-initials-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: #120720;
    font-weight: 800;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 195px; /* Increased to 195px to comfortably fit text and icons */
    background: rgba(14, 10, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-dropdown-container:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown-item svg {
    flex-shrink: 0 !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block;
    vertical-align: middle;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent);
}

.nav-dropdown-item.logout {
    color: #ff6b6b;
}

.nav-dropdown-item.logout:hover {
    background: rgba(255, 107, 107, 0.05);
    color: #ff8787;
}

.user-dropdown-caret {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-dropdown-container:hover .user-dropdown-caret {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .mobile-profile-card {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 10px 0 0 !important;
        margin-bottom: 25px !important;
        width: 100% !important;
        gap: 12px !important;
        box-shadow: none !important;
    }
    
    .mobile-profile-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--accent);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
    }
    
    .mobile-profile-initials {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-light), var(--accent));
        color: #120720;
        font-weight: 800;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--accent);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
    }
    
    .mobile-profile-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        width: 100%;
    }
    
    .mobile-profile-welcome {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 600;
    }
    
    .mobile-profile-name {
        font-size: 1.2rem;
        font-weight: 750;
        color: #fff;
        background: linear-gradient(to right, #fff 30%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mobile-profile-plan {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        margin-top: 8px;
        padding: 9px 14px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(255,255,255,.035));
        border: 1px solid rgba(212,175,55,.24);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
        max-width: 100%;
    }

    .mobile-profile-plan span {
        color: var(--accent);
        font-size: .78rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .mobile-profile-plan strong {
        color: rgba(255,255,255,.68);
        font-size: .72rem;
        font-weight: 650;
        line-height: 1.2;
    }

    .mobile-profile-plan.is-empty {
        background: rgba(255,255,255,.035);
        border-color: rgba(255,255,255,.08);
    }

    .mobile-profile-plan.is-empty span {
        color: rgba(255,255,255,.72);
    }

    .nav {
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
        gap: 12px !important;
    }
    
    .nav-dropdown-container {
        display: block;
    }
    
    .user-dropdown-btn {
        width: 100%;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        padding: 12px 18px;
        border-radius: 12px;
        font-size: 1.05rem;
        transition: all 0.25s ease;
    }

    .user-dropdown-btn .user-avatar-small,
    .user-dropdown-btn .user-initials-small {
        display: none !important;
    }

    .user-dropdown-btn:hover {
        border-color: rgba(212, 175, 55, 0.25);
        background: rgba(212, 175, 55, 0.03);
    }
    
    .nav-dropdown-menu {
        display: none; /* Collapsed by default on mobile! */
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 6px 0;
        margin-top: 8px;
    }
    
    .nav-dropdown-container.active .nav-dropdown-menu {
        display: block; /* Expanded when parent is active */
    }

    .nav-dropdown-container.active .user-dropdown-caret {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-item {
        padding: 10px 18px 10px 30px; /* Indent slightly on mobile to show hierarchy */
        border-radius: 10px;
        margin-top: 4px;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.02);
        font-size: 0.95rem;
    }

    .mobile-profile-plan-card {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        width: min(100%, 220px);
        margin-top: 14px;
        padding: 14px 16px;
        border-radius: 16px;
        text-align: left;
        background:
            radial-gradient(circle at right top, rgba(212,175,55,.14), transparent 42%),
            linear-gradient(135deg, rgba(212,175,55,.12), rgba(255,255,255,.025));
        border: 1px solid rgba(212,175,55,.28);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 26px rgba(0,0,0,.18);
    }

    .mobile-profile-plan-card.is-empty {
        background: rgba(255,255,255,.035);
        border-color: rgba(255,255,255,.08);
    }

    .mobile-profile-plan-icon {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: #f6d98d;
        background: rgba(212,175,55,.14);
        box-shadow: 0 0 18px rgba(212,175,55,.18);
        font-size: 1.25rem;
        line-height: 1;
    }

    .mobile-profile-plan-text,
    .mobile-profile-plan-text span,
    .mobile-profile-plan-text strong,
    .mobile-profile-plan-text small {
        display: block;
        min-width: 0;
    }

    .mobile-profile-plan-label {
        color: rgba(255,255,255,.46);
        font-size: .64rem;
        font-weight: 800;
        letter-spacing: .12em;
        line-height: 1;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .mobile-profile-plan-text strong {
        color: var(--accent);
        font-size: 1rem;
        font-weight: 850;
        line-height: 1.1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-profile-plan-text small {
        color: rgba(255,255,255,.66);
        font-size: .76rem;
        line-height: 1.2;
        margin-top: 4px;
    }

    .nav {
        gap: 8px !important;
    }

    .nav a.mobile-link,
    .user-dropdown-btn,
    .nav-dropdown-item {
        width: 100%;
        min-height: 58px;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        margin: 0 !important;
        padding: 14px 18px !important;
        border-radius: 14px;
        background: rgba(255,255,255,.025);
        border: 1px solid rgba(255,255,255,.055);
        color: rgba(255,255,255,.9);
        font-size: 1.02rem;
        font-weight: 700;
        text-align: left;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    }

    .nav-dropdown-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .user-dropdown-btn {
        min-height: auto;
        justify-content: flex-start;
        cursor: default;
        pointer-events: none;
        padding: 16px 4px 5px !important;
        border: 0 !important;
        border-radius: 0;
        background: transparent !important;
        box-shadow: none;
        color: rgba(255,255,255,.5);
        font-size: .76rem;
        font-weight: 850;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .user-dropdown-btn:hover {
        border: 0 !important;
        background: transparent !important;
        box-shadow: none;
    }

    .user-dropdown-caret {
        display: none;
    }

    .nav-dropdown-menu {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }

    .nav-dropdown-menu > div {
        display: none !important;
    }

    .nav-dropdown-container:hover .nav-dropdown-menu {
        transform: none;
    }

    .nav-dropdown-item svg,
    .nav a.mobile-link svg {
        width: 19px !important;
        height: 19px !important;
    }

    .nav-dropdown-item.logout {
        color: #ff8f8f;
        border-color: rgba(255,107,107,.12);
        background: rgba(255,107,107,.045);
    }
}
