/* 
   Copyright ByteWave Media 
   Website: bytewave.media
*/

/* =========================================
   Section: Design Tokens & Reset
   ========================================= */
:root {
    --font-family: 'Poppins', sans-serif;
    
    /* Colors */
    --color-primary: #39B5FF;       /* rgb(57, 181, 255) */
    --color-primary-dark: #2a8bc7;
    --color-accent-purple: #B539FF; /* rgb(181, 57, 255) */
    --color-accent-deep: #4F33B4;   /* rgb(79, 51, 180) */
    --color-success: #8BBD65;
    --color-bg: #F5F9FC;
    --color-text-dark: #121212;
    --color-text-light: #FFFFFF;
    --color-border: rgba(0,0,0,0.1);
    
    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.15); /* Ultra clear */
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2); /* Inner lighting ring */
    --glass-blur: 25px; /* Deep blur */
    --glass-saturation: 180%; /* Vibrant background pass-through */
    --glass-radius: 100px;
}

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

body {
    font-family: var(--font-family);
    background-color: #E8F4FD;
    color: var(--color-text-dark);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Optimized Fixed Background Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(57, 181, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(57, 181, 255, 0.1), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(135, 206, 250, 0.1), transparent 50%);
    z-index: -2;
    pointer-events: none;
    transform: translateZ(0); /* Force layer */
}

/* Lighter Shimmer */
.shimmer-active body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 75%
    );
    background-size: 200% 200%;
    animation: shimmer 15s linear infinite;
    pointer-events: none;
    z-index: -1;
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(2%, 2%) rotate(2deg);
    }
    66% {
        transform: translate(-2%, -2%) rotate(-2deg);
    }
}

/* Ensure content is above background animations */
.container,
.header-wrapper {
    position: relative;
    z-index: 1;
}

/* =========================================
   Section: Announcement Banner (Scrolling)
   ========================================= */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(57, 181, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(57, 181, 255, 0.2);
    box-shadow: 0 4px 20px rgba(57, 181, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 48px;
}

.announcement-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.announcement-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: scroll-announcement 40s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0 24px;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.announcement-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(57, 181, 255, 0.4),
        transparent
    );
    flex-shrink: 0;
    position: relative;
}

.announcement-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
}


@keyframes scroll-announcement {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure announcement starts from left and is visible on load */
.announcement-scroll {
    animation: scroll-announcement 40s linear infinite;
}

/* Pause on hover */
.announcement-banner:hover .announcement-scroll {
    animation-play-state: paused;
}

/* Adjust header position when announcement is visible */
.announcement-banner:not([style*="display: none"]) ~ .header-wrapper,
body:has(.announcement-banner:not([style*="display: none"])) .header-wrapper {
    top: 60px;
}

.announcement-banner[style*="display: none"] ~ .header-wrapper,
body:has(.announcement-banner[style*="display: none"]) .header-wrapper,
body:not(:has(.announcement-banner)) .header-wrapper {
    top: 24px;
}

/* =========================================
   Section: Liquid Glass Pill Navbar
   ========================================= */
.header-wrapper {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-wrapper.scrolled {
    top: 16px;
}

/* Liquid Glass Navbar */
.liquid-glass-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 8px 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Liquid glass shimmer effect */
.liquid-glass-nav::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 ease;
}

.liquid-glass-nav:hover::before {
    left: 100%;
}

/* Logo in Nav */
.nav-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.nav-logo:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(57, 181, 255, 0.2);
}

.header-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

/* CTA Button */
.nav-cta {
    height: 44px;
    padding: 0 24px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 4px 15px rgba(57, 181, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
    .nav-cta:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 8px 25px rgba(57, 181, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    .nav-cta:hover::before {
        left: 100%;
    }
}

.nav-cta:active {
    transform: translateY(0) scale(0.98);
}

/* =========================================
   Section: Main Container & Profile
   ========================================= */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 140px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
    width: 100%;
}

.profile-image-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    padding: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 1rem;
    color: #666;
    max-width: 400px;
    margin: 0 auto;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 181, 255, 0.2);
    color: var(--color-primary);
}

/* =========================================
   Section: Links & Cards
   ========================================= */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-radius: 20px;
    text-decoration: none;
    color: var(--color-text-dark);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.link-card::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 ease;
    z-index: 1;
    pointer-events: none;
}

.link-card:hover {
    transform: translateY(-4px) scale(1.01);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 12px 40px -4px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.link-card:hover::before {
    left: 100%;
}

.link-icon {
    font-size: 1.5rem;
    margin-right: 16px;
    width: 32px;
    text-align: center;
}

.link-text {
    flex-grow: 1;
    font-weight: 600;
    font-size: 1.05rem;
}

.link-arrow {
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Highlight Card */
.link-card.highlight-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-deep) 100%);
    color: white;
    border: none;
}

.link-card.highlight-card .link-arrow {
    color: white;
}

.link-card.highlight-card:hover {
    box-shadow: 0 12px 30px rgba(79, 51, 180, 0.4);
}

/* Product Dropdown */
.products-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-toggle.open {
    border-color: var(--color-primary);
    background: rgba(57, 181, 255, 0.05);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    margin-bottom: 0;
}

.products-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 0;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-10px);
}

.products-dropdown.open {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 0;
    margin-top: 0;
    margin-bottom: 24px;
    border-radius: 0 0 20px 20px;
    background: transparent;
}

/* When products dropdown is open, connect it to the button */
.products-toggle.open {
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    margin-bottom: 0;
}

.products-dropdown .link-card {
    margin: 6px 0;
    border-radius: 16px;
    font-size: 0.95rem;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.products-dropdown .link-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px -4px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Rotate arrow on toggle */
.products-toggle.open .link-arrow {
    transform: rotate(180deg);
}

/* Form Dropdowns (Giveaway, Support, Partnerships) */
.form-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: -12px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-10px);
}

.form-dropdown.open {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    margin-top: 0;
    margin-bottom: 24px;
}

/* When notify dropdown is open, connect it to the button */
.notify-wrapper .form-dropdown.open {
    margin-top: 0;
}

.notify-wrapper .form-dropdown.open .form-container {
    border-radius: 0 0 20px 20px;
    border-top: none;
}

.form-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 30px 30px 20px 30px;
    margin: 0;
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
}

/* Partnerships Section */
.partnerships-section {
    width: 100%;
    margin-top: 20px;
}

.giveaway-toggle,
.support-toggle,
.partnerships-toggle,
.alert-toggle {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.giveaway-toggle::before,
.support-toggle::before,
.partnerships-toggle::before,
.alert-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .giveaway-toggle:hover::before,
    .support-toggle:hover::before,
    .partnerships-toggle:hover::before,
    .alert-toggle:hover::before {
        left: 100%;
    }
}

/* =========================================
   Section: Forms & Interactive Elements
   ========================================= */

.notify-wrapper {
    width: 100%;
    margin-bottom: 24px;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
}

.notify-toggle {
    margin-bottom: 0;
    width: 100%;
    /* Base styles - mobile only, desktop will override */
}

/* Mobile-specific notify toggle styles */
@media screen and (max-width: 768px) {
    .notify-toggle {
        padding: 16px 20px;
        min-height: auto;
        display: flex;
        align-items: center;
        font-size: 1.05rem;
    }
}

/* Desktop: Ensure notify button matches other link cards exactly */
@media screen and (min-width: 769px) {
    .notify-wrapper {
        margin-bottom: 24px;
    }
    
    /* Force the notify button to match other link cards on desktop - highest specificity */
    .links-container .notify-wrapper .link-card.notify-toggle,
    .notify-wrapper .link-card.notify-toggle,
    .link-card.notify-toggle {
        /* Match exact .link-card styles */
        padding: 16px 20px !important;
        min-height: 56px !important;
        height: auto !important;
        max-height: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        box-sizing: border-box !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(30px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
    }
    
    .links-container .notify-wrapper .link-card.notify-toggle .link-icon,
    .notify-wrapper .link-card.notify-toggle .link-icon,
    .link-card.notify-toggle .link-icon {
        font-size: 1.5rem !important;
        margin-right: 16px !important;
        width: 32px !important;
        min-width: 32px !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
    
    .links-container .notify-wrapper .link-card.notify-toggle .link-text,
    .notify-wrapper .link-card.notify-toggle .link-text,
    .link-card.notify-toggle .link-text {
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        flex-grow: 1 !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }
    
    .links-container .notify-wrapper .link-card.notify-toggle .link-arrow,
    .notify-wrapper .link-card.notify-toggle .link-arrow,
    .link-card.notify-toggle .link-arrow {
        font-size: 1rem !important;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        flex-shrink: 0 !important;
    }
    
    .links-container .notify-wrapper .link-card.notify-toggle:hover .link-arrow,
    .notify-wrapper .link-card.notify-toggle:hover .link-arrow,
    .link-card.notify-toggle:hover .link-arrow {
        opacity: 1;
        transform: translateX(0);
    }
}

.notify-toggle.open {
    border-color: var(--color-primary);
    background: rgba(57, 181, 255, 0.05);
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: none;
    margin-bottom: 0;
}

.notify-toggle.open:hover {
    transform: none;
    margin-bottom: 0;
}

.notify-text-wrapper {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notify-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    display: block;
}

.notify-subtitle {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    display: block;
}

.notify-chevron {
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.notify-form-container {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.notify-form-container.open {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 2px;
}

.notify-form-glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(57, 181, 255, 0.25);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 32px;
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.notify-form-header {
    margin-bottom: 28px;
    text-align: center;
}

.notify-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notify-form-title i {
    color: var(--color-primary);
}

.notify-form-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notify-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label-small {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.form-input-glass {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 181, 255, 0.2);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.form-input-glass::placeholder {
    color: #999;
}

.form-input-glass:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(57, 181, 255, 0.1);
}

.notification-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.notification-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.notification-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.notification-card-content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(57, 181, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.notification-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.notification-card:hover .notification-card-content {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(57, 181, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.notification-card:hover .notification-card-content::before {
    left: 100%;
}

.notification-checkbox:checked + .notification-card-content {
    background: rgba(57, 181, 255, 0.15);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(57, 181, 255, 0.2);
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.email-icon {
    background: rgba(57, 181, 255, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(57, 181, 255, 0.2);
}

.notification-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.notification-desc {
    font-size: 0.8rem;
    color: #666;
}

.notification-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.notification-checkbox:checked + .notification-card-content .notification-check {
    opacity: 1;
    transform: scale(1);
}

.notify-submit-btn {
    background: rgba(57, 181, 255, 0.15);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-primary);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

/* Notification Group Animations */
#phoneGroup, #emailGroup {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    margin-top: 20px;
    margin-bottom: 8px;
}

#phoneGroup.visible, #emailGroup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Phone Input Styling */
.phone-input-wrapper {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.phone-country-code {
    width: 85px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 181, 255, 0.2);
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.phone-country-code:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
}

.phone-input {
    flex: 1;
    border-radius: 0 12px 12px 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.notify-form-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 24px;
}

.country-code-hint {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 0.85rem;
}

.notify-submit-btn::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.6s ease;
}

.notify-submit-btn:hover {
    background: rgba(57, 181, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px -4px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.notify-submit-btn:hover::before {
    left: 100%;
}

.notify-submit-btn:active {
    transform: translateY(0);
}

.notify-submit-btn i {
    transition: transform 0.3s ease;
}

.notify-submit-btn:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notify-form-row,
    .notification-options-grid {
        grid-template-columns: 1fr;
    }
    
    .notify-toggle-content {
        padding: 16px 20px;
    }
    
    .notify-form-glass {
        padding: 24px 20px;
    }
}

/* Standard Form Styles */
.form-group {
    margin-bottom: 18px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

/* Checkbox Group Styling */
.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-group:last-of-type {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary);
    border: 2px solid rgba(57, 181, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid rgba(57, 181, 255, 0.5);
    outline-offset: 2px;
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #2a8bc7;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    background: rgba(57, 181, 255, 0.15);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

@media (hover: hover) and (pointer: fine) {
    .btn-submit:hover {
        background: rgba(57, 181, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.35);
        transform: translateY(-2px);
        box-shadow: 
            0 12px 40px -4px rgba(31, 38, 135, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.15);
    }
    
    .btn-submit:hover::before {
        left: 100%;
    }
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(57, 181, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Phone Input with Prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.phone-input-wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(57, 181, 255, 0.1);
}

.phone-prefix {
    padding: 12px 12px 12px 16px;
    background: rgba(57, 181, 255, 0.1);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid #ddd;
    white-space: nowrap;
}

.phone-input {
    border: none;
    border-radius: 0;
    padding-left: 12px;
    flex: 1;
}

.phone-input:focus {
    outline: none;
    box-shadow: none;
}

/* International Phone Toggle - Styled Link */
.international-toggle {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 181, 255, 0.2);
    border-radius: 20px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.international-toggle::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;
}

.international-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(57, 181, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(57, 181, 255, 0.2);
}

.international-toggle:hover::before {
    left: 100%;
}

.international-toggle:active {
    transform: translateY(0);
}

/* Phone Country Code Input (International Mode) */
.phone-country-code {
    padding: 12px 12px 12px 16px;
    background: rgba(57, 181, 255, 0.1);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(57, 181, 255, 0.2);
    border-radius: 8px 0 0 8px;
    border-right: none;
    min-width: 80px;
    text-align: center;
}

.phone-country-code:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(57, 181, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(57, 181, 255, 0.1);
}

/* International Mode Phone Input Wrapper */
.phone-input-wrapper.international {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(57, 181, 255, 0.3);
}

.phone-input-wrapper.international .phone-country-code {
    display: block;
}

.phone-input-wrapper.international .phone-prefix {
    display: none;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.required-asterisk {
    color: #FF6B6B;
    font-weight: 700;
    margin-left: 2px;
}

.notification-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(57, 181, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.notification-option:hover {
    background: rgba(57, 181, 255, 0.05);
    border-color: var(--color-primary);
}

.notification-option input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.notification-option input[type="checkbox"]:checked + .option-content {
    color: var(--color-primary);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

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

.option-content span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Support Section */
.support-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(57, 181, 255, 0.2);
    padding: 24px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Policy Pages Header */
.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(57, 181, 255, 0.25);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px -4px rgba(31, 38, 135, 0.1);
}

.header-content {
    flex: 1;
}

.header-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

/* Modal (Giveaway) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Modal Customizations */
.modal-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content.glass-header {
    /* Override fixed positioning from header class reuse */
    position: relative; 
    top: auto; 
    left: auto; 
    transform: none;
    margin: auto;
    background: rgba(255, 255, 255, 0.85); /* Less transparent for readability */
    overflow: hidden; /* For glow effect containment */
}

/* Ensure Selects match Inputs */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2339B5FF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    padding-right: 1.5em; /* Space for arrow */
}

/* Tactile Touch Feedback */
.btn-submit:active, 
.link-card:active {
    transform: scale(0.96);
    transition: transform 0.1s;
}

/* =========================================
   Section: Confirmation Modal
   ========================================= */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.confirmation-modal.show {
    display: flex;
}

.confirmation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.confirmation-content {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 8px 32px -4px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-icon.success {
    background: linear-gradient(135deg, #25D366 0%, #20C55E 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.confirmation-icon.error {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.confirmation-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.confirmation-message {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.confirmation-details {
    background: rgba(57, 181, 255, 0.1);
    border: 1px solid rgba(57, 181, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
    max-height: 200px;
    overflow-y: auto;
}

.confirmation-details strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.confirmation-details pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.confirmation-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm-primary,
.btn-confirm-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-confirm-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(57, 181, 255, 0.3);
}

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

@media (hover: hover) and (pointer: fine) {
    .btn-confirm-primary:hover {
        background: #2a8bc7;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(57, 181, 255, 0.4);
    }
    
    .btn-confirm-primary:hover::before {
        left: 100%;
    }
}

.btn-confirm-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    border: 1px solid rgba(57, 181, 255, 0.3);
}

.btn-confirm-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .confirmation-content {
        padding: 30px 24px;
        max-width: 90%;
    }
    
    .confirmation-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .confirmation-title {
        font-size: 1.5rem;
    }
    
    .confirmation-message {
        font-size: 1rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .btn-confirm-primary,
    .btn-confirm-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .confirmation-content {
        padding: 24px 20px;
    }
    
    .confirmation-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .confirmation-title {
        font-size: 1.3rem;
    }
}

/* =========================================
   Section: Mobile Optimizations
   ========================================= */
@media (max-width: 768px) {
    /* Bottom Sheet Modals */
    .modal-overlay {
        align-items: flex-end; /* Align to bottom */
    }

    .modal-content.glass-header { /* Reuse glass-header styles but override for modal */
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 24px 24px 0 0 !important; /* Round top only */
        margin: 0 !important;
        transform: translateY(100%); /* Start hidden below */
        transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
        max-height: 85vh;
        padding-bottom: max(30px, env(safe-area-inset-bottom)); /* Safe area */
    }

    .modal-overlay.active .modal-content.glass-header {
        transform: translateY(0);
    }

    /* Liquid Glass Navbar Mobile */
    .header-wrapper {
        top: 16px;
        width: 100%;
        padding: 0 16px;
        left: 0;
        transform: none;
    }
    
    /* Adjust header position when announcement is visible on mobile */
    .announcement-banner:not([style*="display: none"]) ~ .header-wrapper,
    body:has(.announcement-banner:not([style*="display: none"])) .header-wrapper {
        top: 76px; /* 60px announcement + 16px spacing */
    }

    .liquid-glass-nav {
        padding: 6px 6px 6px 12px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .nav-links {
        display: none; /* Hide nav links on mobile */
    }

    .nav-cta {
        height: 36px;
        padding: 0 18px;
        font-size: 0.85rem;
        margin-left: auto; /* Push to right */
    }
    
    /* Adjust main container padding for mobile header */
    .container {
        padding-top: 140px; /* Account for header (48px) + announcement (60px) + spacing (32px) */
    }
    
    /* When announcement is hidden, reduce padding */
    body:not(:has(.announcement-banner)) .container,
    body:has(.announcement-banner[style*="display: none"]) .container {
        padding-top: 100px; /* Header (48px) + spacing (52px) */
    }
    
    /* Footer Safe Area */
    .footer {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }
    
    /* Policy Pages Mobile */
    .glass-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1px solid rgba(57, 181, 255, 0.25);
        border-radius: 16px;
        padding: 20px 24px;
        margin: 20px;
        margin-bottom: 30px;
        box-shadow: 0 8px 32px -4px rgba(31, 38, 135, 0.1);
        flex-direction: column;
        gap: 12px;
    }
    
    .header-content {
        width: 100%;
        text-align: center;
    }
    
    .header-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--color-text-dark);
    }
    
    .support-section {
        padding: 20px 16px;
    }
    
    .support-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    /* Announcement Bar Mobile */
    .announcement-item {
        padding: 0 16px;
        font-size: 0.85rem;
    }
    
    .announcement-item i {
        font-size: 0.8rem;
    }
    
    /* Notify Section Mobile */
    .notify-section {
        margin-bottom: 20px;
    }
    
    .notify-form-container {
        padding-top: 0;
    }
    
    .notify-form-glass {
        padding: 20px 16px;
        margin: 0 8px;
    }
    
    /* Form Dropdowns Mobile */
    .form-dropdown {
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .form-dropdown.open {
        margin-bottom: 20px;
    }
    
    .form-container {
        padding: 24px 16px 16px 16px;
        margin: 0;
    }
    
    /* Phone Input Mobile */
    .phone-input-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .phone-prefix {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid #ddd;
        border-radius: 12px 12px 0 0;
    }
    
    .phone-input {
        border-radius: 0 0 12px 12px;
    }
    
    /* Notification Cards Mobile */
    .notification-card-content {
        padding: 16px;
        flex-wrap: wrap;
    }
    
    .notification-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* =========================================
   Section: Footer
   ========================================= */

/* 5-Star Support Badge Animation */
.trust-badge-star {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.trust-badge-star:hover {
    transform: scale(1.05);
}

/* Star Animation Overlay */
.star-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 181, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.star-animation-overlay.active {
    opacity: 1;
    pointer-events: all;
    background: rgba(57, 181, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.star-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-badge-animated {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 20px 60px -10px rgba(31, 38, 135, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(0.3);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.star-animation-overlay.active .star-badge-animated {
    transform: scale(1);
    opacity: 1;
}

.star-icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.star-icon-wrapper #animatedStar {
    font-size: 80px;
    color: #FFD700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    transform: rotateY(0deg) rotateX(0deg);
    transition: all 0.6s ease;
}

.star-animation-overlay.active .star-icon-wrapper #animatedStar {
    animation: starSpin3D 2s ease-in-out infinite;
    color: #FFD700;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

@keyframes starSpin3D {
    0% {
        transform: rotateY(0deg) rotateX(0deg) scale(1);
    }
    25% {
        transform: rotateY(90deg) rotateX(20deg) scale(1.1);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg) scale(1.2);
    }
    75% {
        transform: rotateY(270deg) rotateX(-20deg) scale(1.1);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg) scale(1);
    }
}

.star-badge-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.star-reviews-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.star-animation-overlay.active .star-reviews-btn {
    transform: scale(1);
    opacity: 1;
}

.star-reviews-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.star-reviews-btn:active {
    transform: scale(0.98);
}

/* Dim other elements when overlay is active */
.star-animation-overlay.active ~ *,
body.star-animation-active .container,
body.star-animation-active .header-wrapper,
body.star-animation-active .announcement-banner,
body.star-animation-active .footer {
    opacity: 0.3;
    filter: blur(5px);
    transition: all 0.6s ease;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .star-badge-animated {
        padding: 30px 40px;
        border-radius: 25px;
    }
    
    .star-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .star-icon-wrapper #animatedStar {
        font-size: 60px;
    }
    
    .star-badge-text {
        font-size: 1.5rem;
    }
    
    .star-reviews-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .star-badge-animated {
        padding: 25px 30px;
        border-radius: 20px;
    }
    
    .star-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .star-icon-wrapper #animatedStar {
        font-size: 50px;
    }
    
    .star-badge-text {
        font-size: 1.2rem;
    }
    
    .star-reviews-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* =========================================
   Section: Footer (Original Styles)
   ========================================= */
.footer {
    margin-top: 60px;
    text-align: center;
    padding-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 10px;
}

.footer-link:hover {
    color: var(--color-primary);
}

.copyright {
    color: #999;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Section: Preloader
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(57, 181, 255, 0.1);
    border-left-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* =========================================
   Section: Enhanced Animations
   ========================================= */
/* Staggered Animation for Link Cards */
.link-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.products-dropdown .link-card { opacity: 1; animation: none; } /* Reset for dropdown items */

/* Pulse Animation for Highlight Card */
.highlight-card {
    animation: fadeInUp 0.6s ease-out forwards, pulse-shadow 2s infinite 1s;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(57, 181, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(57, 181, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 181, 255, 0); }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 140px 12px 30px; /* Account for header + announcement */
    }
    
    /* When announcement is hidden, reduce padding */
    body:not(:has(.announcement-banner)) .container,
    body:has(.announcement-banner[style*="display: none"]) .container {
        padding-top: 100px; /* Header only */
    }
    
    .profile-image-container {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .profile-bio {
        font-size: 0.9rem;
    }
    
    .link-card {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .link-icon {
        font-size: 1.2rem;
        margin-right: 10px;
        width: 24px;
    }
    
    .link-text {
        font-size: 0.95rem;
    }
    
    .form-container {
        padding: 20px 12px;
        margin: 0 4px;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .form-description {
        font-size: 0.85rem;
    }
    
    /* Checkbox mobile adjustments */
    .checkbox-label {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
    
    .notification-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .notify-toggle-content {
        padding: 12px 14px;
    }
    
    .notify-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .notify-title {
        font-size: 0.95rem;
    }
    
    .notify-subtitle {
        font-size: 0.75rem;
    }
    
    .notify-form-glass {
        padding: 16px 12px;
    }
    
    .form-input-glass {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .notify-submit-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    /* Policy Pages Small Mobile */
    .glass-header {
        padding: 12px;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .support-section {
        padding: 16px 12px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    /* Announcement Small Mobile */
    .announcement-item {
        padding: 0 12px;
        font-size: 0.8rem;
    }
    
    .announcement-divider {
        width: 0.5px;
        height: 20px;
    }
    
    /* Social Icons Small Mobile */
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Alert Section Small Mobile */
    .alert-section {
        margin-bottom: 12px;
    }
}

/* =========================================
   Section: Mouse Glow Effect
   ========================================= */
/* =========================================
   Section: Premium Mouse Glow Effect
   ========================================= */
.glow-effect {
    position: relative;
    overflow: hidden; 
}

/* Base reflection */
.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}

.glow-effect:hover::after {
    transform: translateX(100%);
    transition: transform 1.2s ease-in-out;
}

/* Spotlight */
.glow-effect::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; 
    z-index: 2;
    mix-blend-mode: overlay; /* Better blending */
}

@media (max-width: 768px) {
    /* Container full width fixes */
    .container, .admin-container, .wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Admin Nav Full Width */
    .admin-nav {
        width: calc(100% - 32px) !important;
        left: 16px !important;
        right: 16px !important;
    }

    .admin-actions {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        text-align: left;
    }

    /* Fix Table Dropdown on Mobile */
    .nav-dropdown .dropdown-menu {
        position: static !important;
        width: 100% !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        border: none !important;
        background: transparent !important;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block !important;
    }
}
