:root {
    /* Main Dark Theme Palette */
    --background: 240 10% 4%;
    /* Near black */
    --foreground: 0 0% 98%;
    --card-bg: 240 10% 8%;
    --card-border: 240 10% 15%;
    --glass-bg: hsla(240, 10%, 10%, 0.6);
    --glass-border: hsla(0, 0%, 100%, 0.1);

    /* Neon Primary Colors */
    --primary: 330 95% 65%;
    /* Vibrant Pink */
    --primary-light: 330 95% 75%;
    --primary-dark: 330 95% 45%;

    /* Cyan / Accent Colors */
    --secondary: 190 100% 50%;
    /* Electric Cyan */
    --secondary-light: 190 100% 70%;
    --secondary-dark: 190 100% 30%;

    /* Violet / Secondary Accent */
    --accent: 270 95% 65%;
    /* Vivid Purple */
    --accent-light: 270 95% 75%;
    --accent-dark: 270 95% 45%;

    /* Neutral Tones */
    --light-gray: 240 5% 20%;
    --medium-gray: 240 5% 40%;
    --dark-gray: 240 5% 60%;

    /* UI Colors */
    --success: 145 100% 50%;
    --warning: 45 100% 50%;
    --error: 0 100% 60%;
    --info: 210 100% 60%;
    --free: 180 70% 50%;


    /* Fonts & Radii */
    --font-primary: 'Inter', 'Quicksand', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Modern Shadows */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.8);
    --shadow-neon: 0 0 20px hsla(var(--primary), 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Global Scale Adjustment for standard laptops */
@media screen and (max-width: 1600px) {
    html {
        font-size: 14px;
    }
}

/* Global Scale Adjustment for tablets/smaller laptops */
@media screen and (max-width: 1200px) {
    html {
        font-size: 13px;
    }
}

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

body {
    font-family: var(--font-primary);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

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

/* Hide elements before animation */
.premium-card,
.benefit-card,
.section-header {
    opacity: 0;
    transform: translateY(30px);
}

/* Background Mesh & Floating Particles */
.bg-gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 10% 20%, hsla(var(--primary), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, hsla(var(--secondary), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, hsla(var(--accent), 0.05) 0%, transparent 60%);
    background-color: hsl(var(--background));
    animation: backgroundMove 20s ease infinite alternate;
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    animation: floatParticle var(--duration) linear infinite;
}

@keyframes floatParticle {
    from {
        transform: translateY(100vh) translateX(0);
    }

    to {
        transform: translateY(-100px) translateX(var(--drift));
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-center p {
    margin-bottom: 2rem;
}

a:hover {
    color: hsl(var(--primary-dark));
}

.container {
    max-width: 1400px;
    padding: 0 2rem;
    margin: 0 auto;
}

section {
    padding: clamp(1.5rem, 4vh, 2.5rem) 0;
}

img {
    max-width: 100%;
}

.text-highlight {
    color: hsl(var(--primary));
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px hsla(var(--primary), 0.4);
}

.section-header h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 30%, hsla(var(--primary), 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--dark-gray);
    font-size: clamp(1rem, 4vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    padding-bottom: 3rem;
}


/* Header Styles */
.site-header {
    padding: 0.6rem 0;
    background: hsla(240, 10%, 4%, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.4rem;
    color: hsl(var(--primary-light));
    text-shadow: 0 0 15px hsla(var(--primary), 0.5);
}

.navbar-brand:hover {
    color: hsl(var(--primary-dark));
}

.logo-img {
    width: 2.2rem;
    height: auto;
    filter: drop-shadow(0 0 8px hsla(var(--primary), 0.6));
}



.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: hsl(var(--primary));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
    transform: rotate(0);
}

.navbar-toggler-icon::after {
    bottom: 8px;
    transform: rotate(0);
}

.nav-link {
    color: hsl(var(--foreground));
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: hsl(var(--primary));
    background-color: hsla(var(--primary), 0.1);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-invite {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-invite:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-free-fill {
    background: linear-gradient(135deg, hsl(var(--free)), #24cc7e);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-free-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px hsla(var(--free), 0.3);
    color: white;
}

.btn-premium-fill {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
}

.btn-premium-fill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-ultra-fill {
    background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary-light)));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-ultra-fill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-lifetime-fill {
    background: linear-gradient(90deg, #deff07, #01bbff);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-lifetime-fill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-topgg {
    background: linear-gradient(135deg, #ff00ea, #ff005d);
    color: white !important;
    box-shadow: 0 5px 15px rgba(255, 0, 93, 0.3);
    border: none;
    padding: 0.8rem 2rem;
}

.btn-topgg:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 0, 93, 0.5);
    color: white !important;
}

.btn-icon-img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}


.btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Premium Hero Section */
.premium-hero-section {
    padding: clamp(4rem, 15vh, 8rem) 0 4rem;
    background: transparent;
    position: relative;
    text-align: center;
}


.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

/* Billing Selector Section */
.billing-selector-section {
    padding: 3rem 0;
    background: transparent;
}


.billing-selector-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.billing-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.billing-subtitle {
    color: hsl(var(--dark-gray));
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.billing-toggle-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.billing-option {
    position: relative;
}

.billing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.billing-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-width: 150px;
    color: #fff;
}

.billing-label:hover {
    transform: translateY(-5px);
    border-color: hsla(var(--primary), 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.billing-option input[type="radio"]:checked+.billing-label {
    border-color: hsl(var(--primary));
    background: linear-gradient(135deg, hsla(var(--primary), 0.2), hsla(var(--primary-light), 0.1));
    box-shadow: 0 0 20px hsla(var(--primary), 0.3);
    transform: translateY(-5px);
}

.billing-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.discount-badge {
    font-size: 0.9rem;
    background: hsla(var(--success), 0.2);
    color: hsl(var(--success));
    border: 1px solid hsla(var(--success), 0.3);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    margin-top: 0.5rem;
}

.discount-badge.popular {
    background: hsla(var(--warning), 0.2);
    color: hsl(var(--warning));
    border: 1px solid hsla(var(--warning), 0.3);
}


.billing-option input[type="radio"]:checked+.billing-label .discount-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes popularPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 hsla(var(--warning), 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px hsla(var(--warning), 0);
    }
}

/* Premium Plans Section */
.premium-plans-section {
    padding: 2rem 0;
    background: transparent;
}

/* Slider Interaction Hint */
.slider-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.slider-hint i {
    font-size: 1rem;
    color: hsl(var(--primary));
    animation: bounceHorizontal 1.5s infinite;
}

@keyframes bounceHorizontal {

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

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

/* Base styles for the Horizontal Slider (Intuitive & Peek-focused) */
.premium-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 1.25rem;
    max-width: 100%;
    margin: 0;
    padding: 1.5rem 1.25rem 3.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: auto;
    justify-content: flex-start;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
    scroll-padding-left: 1.25rem;
}

/* Add a visual hint that the row is scrollable */
.premium-cards::after {
    content: '';
    flex: 0 0 1.25rem;
    /* Extra space at the end to ensure the last card isn't cut off too abruptly */
}

.premium-cards::-webkit-scrollbar {
    display: none;
}

.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.25rem;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg);

    /* Aggressive Peek Effect: Shows more of the next card */
    flex: 0 0 82%;
    min-width: 280px;
    max-width: 340px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

/* Swipe Hint Animation - subtle pulse on the right edge */
@keyframes swipeHint {
    0% {
        transform: translateX(0);
    }

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

    100% {
        transform: translateX(0);
    }
}

.premium-cards {
    animation: swipeHint 1.5s ease-in-out 1s 2;
    /* Hint on load */
}

/* Tablet & Small Laptops: Keep the slider but show more cards */
@media (min-width: 768px) {
    .premium-card {
        flex: 0 0 45%;
        max-width: 360px;
    }
}

/* Medium Laptops: Still scrolling but with 3 cards partially visible */
@media (min-width: 1024px) {
    .premium-card {
        flex: 0 0 32%;
        max-width: 380px;
    }
}

/* Large Desktop Styles: Center everything if there's enough room */
@media (min-width: 1400px) {
    .premium-cards {
        gap: 2rem;
        padding: 2rem 1rem;
        justify-content: center;
        overflow-x: visible !important;
        scroll-padding-left: 0;
    }

    .premium-card {
        flex: 0 0 340px !important;
        min-width: 340px !important;
        scroll-snap-align: unset;
    }

    .premium-cards::after {
        display: none;
    }
}


.premium-action {
    margin-top: auto;
    width: 100%;
}



.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(var(--primary), 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsla(var(--primary), 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px hsla(var(--primary), 0.4);
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card.ultra {
    border: 1px solid hsla(var(--secondary), 0.3);
}

.premium-card.ultra:hover {
    border: 1px solid transparent;
    background-image: linear-gradient(hsl(var(--card-bg)), hsl(var(--card-bg))),
        linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--primary)));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px hsla(var(--secondary), 0.4), 0 0 20px hsla(var(--primary), 0.4);
}

.premium-card.lifetime::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(0deg, #07ffd2, #771cff, #fa0dfa);
    opacity: 0.8;
    /* Control background opacity here */
    z-index: -2;
    pointer-events: none;
    transform-origin: 50% 50%;
    animation: rotateGradient 4s linear infinite;
}


@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.premium-card.lifetime h2 {
    color: white;
}

.premium-card.lifetime span.price-amount,
.premium-card.lifetime span.currency {
    color: #eeff00;
}

.premium-card.lifetime:hover {
    border-color: transparent;
}

.premium-card.lifetime span.period {
    color: aliceblue;
}


.lifetime p,
.lifetime span.total-cost {
    color: rgba(255, 255, 255, 0.726);
}

.premium-features.lifetime li p {
    color: white;
}

.premium-card.lifetime h4 {
    color: white;
}


@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rainbow-border {
    to {
        background-position: 0 0, -400% 0;
    }
}

.premium-badge {
    position: absolute;
    top: -1px;
    left: 2rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.premium-badge.ultra {
    background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary-light)));
}

.premium-badge.lifetime {
    background: linear-gradient(135deg, #07c1ff, #6b09ff, #ff00e6);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.popular-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, hsl(var(--warning)), hsl(var(--accent)));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: starGlow 2s infinite;
}

@keyframes starGlow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.premium-header {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.premium-header h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, hsl(var(--primary)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px hsla(var(--primary), 0.3));
}


.price-main .currency {
    color: hsl(var(--primary));
    font-size: 2rem;
    text-shadow: 0 0 10px hsla(var(--primary), 0.5);
}

.price-amount {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}



.period {
    font-size: 1.2rem;
    color: hsl(var(--dark-gray));
    font-weight: 500;
}

.effective-price {
    margin-top: -0.25rem;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

.effective-price.show {
    opacity: 1;
    transform: translateY(0);
}

.effective-amount {
    font-weight: 700;
    color: hsl(var(--secondary-light));
    font-size: 1.1rem;
}

.effective-label {
    color: hsl(var(--dark-gray));
    font-size: 0.85rem;
    font-weight: 500;
}

.price-breakdown {
    margin-bottom: 0.5rem;
    min-height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.original-price {
    color: hsl(var(--dark-gray));
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.original-price.show {
    opacity: 1;
    transform: translateY(0);
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: hsl(var(--error));
    text-decoration-thickness: 2px;
}

.savings-amount {
    background: linear-gradient(135deg, hsl(var(--success)), hsl(var(--accent)));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: savings-bounce 2s infinite;
}

.savings-amount.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes savings-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.billing-info {
    color: hsl(var(--dark-gray));
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.lifetime-info {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.total-cost {
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Premium Features */
.premium-features {
    margin-bottom: 1rem;
    position: relative;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.premium-features::-webkit-scrollbar {
    width: 4px;
}

.premium-features::-webkit-scrollbar-track {
    background: hsl(var(--light-gray));
    border-radius: var(--radius-md);
}

.premium-features::-webkit-scrollbar-thumb {
    background: hsl(var(--primary));
    border-radius: var(--radius-md);
}

.premium-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-md);
    background: hsla(240, 10%, 15%, 0.3);
    border: 1px solid hsla(0, 0%, 100%, 0.03);
    transition: all 0.3s ease;
}

.premium-features li:hover {
    background: hsla(var(--primary), 0.1);
    border-color: hsla(var(--primary), 0.2);
    transform: translateX(4px);
}



.premium-features li i {
    color: hsl(var(--success));
    font-size: 1.1rem;
    margin-top: 0.3rem;
    filter: drop-shadow(0 0 5px hsla(var(--success), 0.5));
}


.premium-features h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.premium-features p {
    color: var(--dark-gray);
    font-size: 0.8rem;
    margin: 0;
}

.premium-features li i {
    color: hsl(var(--success));
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 1.2rem;
}

.premium-features li h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.scroll-indicator-features {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: hsl(var(--primary));
    opacity: 0.6;
    animation: bounce 2s infinite;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: transparent;
}

/* Benefits grid dark style */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 1 !important;
    /* Force visibility for now to test */
    transform: translateY(0) !important;
}

.benefit-card:hover {
    transform: translateY(-10px) !important;
    border-color: hsla(var(--primary), 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsla(var(--primary), 0.1);
    color: hsl(var(--primary));
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: hsl(var(--primary));
    color: #fff;
    transform: rotateY(360deg);
}

.benefit-card h3 {
    color: #fff;
    font-weight: 700;
}

.benefit-card p {
    color: var(--dark-gray);
}

/* Comparison Table Modern Dark */
.comparison-table {
    margin-top: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    overflow-x: auto;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
}

.table {
    margin-bottom: 0;
    color: #fff !important;
}

.table thead th {
    background: transparent;
    color: hsl(var(--primary)) !important;
    border-bottom: 2px solid var(--glass-border);
    padding: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.table tbody td {
    background: transparent !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    vertical-align: middle;
}

.table tr:hover td {
    background: hsla(321, 87%, 64%, 0.199) !important;
    color: white;
}

.table-v2-check {
    color: var(--success);
}

.table-v2-cross {
    color: var(--error);
}

/* Price Change Animations */
@keyframes priceChange {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: hsl(var(--secondary));
    }

    100% {
        transform: scale(1);
    }
}

.price-amount.changing {
    animation: priceChange 0.6s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-cards {
        justify-content: flex-start;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .premium-cards {
        flex-direction: column;
        align-items: center;
        overflow-x: visible;
        gap: 2rem;
    }

    .premium-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        padding: 2rem;
    }

    .billing-toggle-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .billing-label {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header p {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .premium-hero-section {
        padding: 5rem 0 2rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .premium-card {
        padding: 1.5rem 1.25rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .period {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* Loading animation for price changes */
.price-loading {
    opacity: 0.6;
    pointer-events: none;
}

.price-loading .price-amount::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid hsl(var(--primary));
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom Modal Styles */
.lifetime-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.lifetime-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lifetime-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.lifetime-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.lifetime-modal-icon {
    font-size: 50px;
    color: #ffd700;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.lifetime-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.lifetime-modal-body {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.lifetime-modal-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.lifetime-modal-highlight {
    background: #fff3cd;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
    font-weight: 600;
    color: #856404;
}

.lifetime-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.lifetime-modal-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lifetime-modal-btn-proceed {
    background: #ffd700;
    color: #333;
    flex: 1;
}

.lifetime-modal-btn-proceed:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.lifetime-modal-btn-cancel {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.lifetime-modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}


.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 4rem 0 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f545a4, #9a45f5, #33d6d6, #f545a4);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(245, 69, 164, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 69, 164, 0.5);
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #f545a4, #9a45f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f545a4, #9a45f5);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-links ul li a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    background: rgba(245, 69, 164, 0.1);
    transform: translateX(5px);
}

.footer-links ul li a:hover i {
    transform: scale(1.2);
}

.footer-links ul li a:hover i.fa-discord {
    color: #5865F2;
}

.footer-links ul li a:hover i.fa-twitter {
    color: #1DA1F2;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.footer-bottom .heart {
    color: #f545a4;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

/* Floating particles effect */
.footer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(245, 69, 164, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(154, 69, 245, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(51, 214, 214, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .footer-links {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-links h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Enhanced Premium Hero Section with Animated Background */
.premium-hero-section {
    padding: clamp(3rem, 10vh, 5rem) 0 clamp(1.5rem, 3vh, 3rem);
    background: linear-gradient(0deg, hsla(240, 10%, 4%, 0.8) 0%, rgba(247, 108, 208, 0.324) 100%);
    position: relative;
    overflow: hidden;
    animation: backgroundPan 20s ease-in-out infinite;
    margin-bottom: clamp(10px, 3vh, 30px);
}

/* Animated gradient overlay */
.premium-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

/* Floating geometric shapes */
.premium-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: floatShapes 30s linear infinite;
    z-index: 1;
}

@keyframes backgroundPan {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatShapes {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

/* Particle effects */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.hero-particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.hero-particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 60%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 3.5s;
}

.hero-particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 80%;
    top: 70%;
    animation-delay: 1.5s;
    animation-duration: 4.5s;
}

.hero-particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 40%;
    top: 80%;
    animation-delay: 0.5s;
    animation-duration: 3.8s;
}

.hero-particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 70%;
    top: 40%;
    animation-delay: 2.5s;
    animation-duration: 4.2s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateY(-80px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

/* Content styling */
.premium-hero-section .container {
    position: relative;
    z-index: 3;
}

.premium-hero-section .section-header {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.premium-hero-section h1 {
    color: white;
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.premium-hero-section .text-highlight {
    color: #fff;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.premium-hero-section .text-highlight::after {
    background: rgba(255, 255, 255, 0.3);
    height: 8px;
}

.premium-hero-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.section-badge {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


.auth-required-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-required-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.auth-required-modal-content {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transform: scale(0.9) translateY(20px);
    animation: modalSlideIn 0.4s ease forwards;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.auth-modal-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.discord-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.discord-icon-container i {
    font-size: 3rem;
    color: #fff;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-modal-header h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.auth-modal-body {
    margin-bottom: 2rem;
}

.auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    animation: slideInLeft 0.5s ease backwards;
}

.auth-benefit:nth-child(1) {
    animation-delay: 0.1s;
}

.auth-benefit:nth-child(2) {
    animation-delay: 0.2s;
}

.auth-benefit:nth-child(3) {
    animation-delay: 0.3s;
}

.auth-benefit i {
    font-size: 1.25rem;
    min-width: 24px;
    color: #4ade80;
}

.auth-benefit span {
    font-size: 0.95rem;
    font-weight: 500;
}

.auth-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-auth-connect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #5865F2;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-auth-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-auth-connect:hover::before {
    left: 100%;
}

.btn-auth-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.6);
}

.btn-auth-connect i:first-child {
    font-size: 1.5rem;
}

.btn-auth-connect i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-auth-connect:hover i:last-child {
    transform: translateX(5px);
}

.btn-auth-connect.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-auth-connect.disabled:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

.btn-auth-cancel {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth-cancel:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    to {
        transform: scale(1) translateY(0);
    }
}

@keyframes iconFloat {

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* Responsive Design */
@media (max-width: 576px) {
    .auth-required-modal-content {
        padding: 2rem 1.5rem;
    }

    .auth-modal-header h3 {
        font-size: 1.5rem;
    }

    .discord-icon-container {
        width: 80px;
        height: 80px;
    }

    .discord-icon-container i {
        font-size: 2.5rem;
    }

    .btn-auth-connect {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}



.auth-prompt-hero {
    position: relative;
    padding: 4rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.auth-prompt-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.auth-prompt-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.auth-message-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.6s ease-out 0.3s backwards;
}

.auth-message-hero i {
    font-size: 2.5rem;
    color: #fff;
    animation: bounce 2s infinite;
}

.auth-message-hero span {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.btn-discord-connect-hero {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: #5865F2;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    animation: slideIn 0.6s ease-out 0.5s backwards;
    margin: 0 auto;
    display: flex;
}

.btn-discord-connect-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-discord-connect-hero:hover::before {
    left: 100%;
}

.btn-discord-connect-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.6);
    color: #fff;
}

.btn-discord-connect-hero:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-discord-connect-hero i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.btn-discord-connect-hero.disabled {
    background: #4e5d94;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-discord-connect-hero.disabled:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {

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

    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes bounce {

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

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

@media (max-width: 768px) {
    .auth-prompt-hero {
        padding: 3rem 1.5rem;
        margin: 1rem;
    }

    .auth-message-hero {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .auth-message-hero span {
        font-size: 1rem;
    }

    .btn-discord-connect-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Free Tier Specifics */
.premium-card.free:hover {
    border-color: hsla(var(--success), 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px hsla(var(--success), 0.4);
}

.premium-card.free::before {
    background: linear-gradient(135deg, hsla(var(--free), 0.1), transparent 50%);
}

.premium-badge.free {
    background: linear-gradient(135deg, hsl(var(--free)), #24cc7e);
}

.global-bonuses-section {
    padding: 4rem 0;
}

.bonus-card {
    background: white;
    border: 2px dashed hsl(var(--primary));
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.bonus-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    padding: 0.5rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.bonus-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(var(--primary));
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(var(--dark-gray));
    font-weight: 600;
}

/* Bonus Card Neon */
.bonus-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(var(--primary), 0.3);
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 30px hsla(var(--primary), 0.1);
}

.bonus-card h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.bonus-stat .stat-value {
    color: hsl(var(--primary));
    text-shadow: 0 0 15px hsla(var(--primary), 0.5);
    font-size: 3.5rem;
}

/* Perk Cards */
.perk-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: scale(1.05);
    border-color: hsla(var(--primary), 0.5);
}

.perk-icon {
    font-size: 2.5rem;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

/* Footer Dark */
.footer-section {
    background: hsla(240, 10%, 2%, 0.9);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-brand h4 {
    color: #fff;
}

.footer-links a {
    color: var(--dark-gray);
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

/* Mobile Specific Refinements */
@media (max-width: 991px) {
    .billing-toggle-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
        width: 100%;
    }

    .billing-option {
        flex: 1;
        min-width: 0
    }

    .billing-label {
        padding: 0.75rem 0.5rem;
        min-width: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        text-align: center;
    }

    .billing-text {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .premium-hero-section {
        padding: 4rem 0 2rem;
    }

    .section-header h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }

    .premium-cards {
        padding-bottom: 3rem;
    }

    /* Adjust features list for mobile readability */
    .premium-features {
        max-height: 220px;
    }

    .premium-features li {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .premium-features h4 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .premium-features p {
        font-size: 0.75rem;
    }

    .perk-card {
        margin-bottom: 2rem;
    }
}