/* ===================================
   FUTURISTIC UI DESIGN SYSTEM (21st.dev inspired)
   =================================== */

:root {
    /* Color Palette */
    --bg-base: #030305;
    --bg-surface: #0a0a0f;
    --card-bg: rgba(20, 20, 28, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #8f90a6;
    --text-muted: #55566a;

    --accent-green: #00E676;
    --accent-blue: #2979FF;
    --accent-purple: #8A2BE2;
    --accent-gold: #FFD700;
    --accent-orange: #FF5722;

    --gradient-primary: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    
    /* Spacing & Layout */
    --max-width: 1200px;
    --section-gap: 8rem;
    --border-radius: 24px;
    
    /* Effects */
    --blur-glass: blur(16px);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--accent-green);
    animation: float 20s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: 20%;
    right: -20%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-purple);
    animation: float 25s ease-in-out infinite alternate-reverse;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, 10%); }
}

/* ===================================
   TYPOGRAPHY UTILS
   =================================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ===================================
   NAVIGATION
   =================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--text-primary);
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.btn-primary.glow-effect:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 12rem 2rem 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    margin-bottom: 2rem;
    position: relative;
}

.badge-glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

.hero-qr-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: var(--blur-glass);
}

.qr-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.qr-code {
    width: 100%;
    height: 100%;
}

.qr-text {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
}

.qr-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.qr-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Hero Visuals */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 28, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.float-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.card-icon.green { background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); }
.card-icon.gold { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3); }
.card-icon.purple { background: rgba(138, 43, 226, 0.1); border: 1px solid rgba(138, 43, 226, 0.3); }

.card-data span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.card-data strong {
    display: block;
    font-size: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float-y 6s ease-in-out infinite;
}

.card-2 {
    top: 45%;
    right: 0;
    animation: float-y 7s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation: float-y 8s ease-in-out infinite 2s;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===================================
   STATS BANNER
   =================================== */
.stats-banner {
    max-width: var(--max-width);
    margin: 0 auto var(--section-gap);
    padding: 0 2rem;
}

.stats-grid {
    background: var(--card-bg);
    backdrop-filter: var(--blur-glass);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-block.divider {
    border-left: 1px solid var(--card-border);
}

.stat-val {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ===================================
   BENTO GRID FEATURES
   =================================== */
.bento-section {
    max-width: var(--max-width);
    margin: 0 auto var(--section-gap);
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur-glass);
    transition: border-color 0.3s;
}

/* Spotlight Effect */
.spotlight-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(255, 255, 255, 0.4),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.spotlight {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.spotlight-card:hover .spotlight {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.05);
}

.purple-glow { box-shadow: 0 0 30px rgba(138,43,226,0.3); border: 1px solid rgba(138,43,226,0.5); }
.green-glow { box-shadow: 0 0 30px rgba(0,230,118,0.3); border: 1px solid rgba(0,230,118,0.5); }
.gold-glow { box-shadow: 0 0 30px rgba(255,215,0,0.3); border: 1px solid rgba(255,215,0,0.5); }
.blue-glow { box-shadow: 0 0 30px rgba(41,121,255,0.3); border: 1px solid rgba(41,121,255,0.5); }
.orange-glow { box-shadow: 0 0 30px rgba(255,87,34,0.3); border: 1px solid rgba(255,87,34,0.5); }
.red-glow { box-shadow: 0 0 30px rgba(244,67,54,0.3); border: 1px solid rgba(244,67,54,0.5); }

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Grid Spans */
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

/* Feature Specific Visuals */
.duel-visual {
    margin-top: auto;
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.duel-bar {
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.duel-bar.you { background: var(--gradient-primary); color: #000; }
.duel-bar.opponent { background: rgba(255,255,255,0.1); color: #fff; margin-bottom: 0; }

.circular-progress {
    margin-top: auto;
    width: 150px;
    height: 150px;
    margin-inline: auto;
    position: relative;
}

.progress-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.row-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.payout-chips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

/* ===================================
   ECOSYSTEM SECTION
   =================================== */
.ecosystem-section {
    max-width: var(--max-width);
    margin: 0 auto var(--section-gap);
    padding: 0 2rem;
}

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

.eco-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur-glass);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eco-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.eco-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.eco-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.eco-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* ===================================
   TIMELINE SECTION
   =================================== */
.timeline-section {
    max-width: 800px;
    margin: 0 auto var(--section-gap);
    padding: 0 2rem;
}

.timeline-container {
    position: relative;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-green), transparent);
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
}

.step-dot {
    position: absolute;
    left: -3rem;
    width: 30px;
    height: 30px;
    background: var(--bg-surface);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    z-index: 2;
}

.step-content {
    padding: 2rem;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    max-width: 800px;
    margin: 0 auto var(--section-gap);
    padding: 0 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 28, 0.6);
}

.faq-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

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

.faq-item.active .faq-btn svg {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    padding: 0 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
}

.faq-content p {
    color: var(--text-secondary);
}

/* ===================================
   CTA SECTION
   =================================== */
.bottom-cta {
    max-width: var(--max-width);
    margin: 0 auto var(--section-gap);
    padding: 0 2rem;
}

.cta-card {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.4) 0%, rgba(0, 230, 118, 0.05) 100%);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    border-top: 1px solid var(--card-border);
    padding: 5rem 2rem 2rem;
    background: var(--bg-surface);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-desc {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--accent-green);
    color: #000;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
}

/* ===================================
   ANIMATION CLASSES
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 8rem;
    }

    .badge-wrapper, .hero-cta-group {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        height: 400px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-wide { grid-column: span 2; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-block.divider {
        border-left: none;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 3, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--card-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle.active .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

    .bento-large, .bento-tall, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .row-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .payout-chips {
        width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

/* ===================================
   POLICY PAGES
   =================================== */
.policy-container {
    max-width: 800px;
    margin: 10rem auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.policy-container h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 3rem;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.5rem;
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-content ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.policy-content li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.policy-content li::before {
    content: "•";
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-content a {
    color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.policy-content a:hover {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}