/* RuneFlow.xyz - Neon to Powder Blue Fresh Design - Cross-browser compatible */

:root {
    --neon-blue: #00d4ff;
    --powder-blue: #b8e6ff;
    --electric-blue: #0099ff;
    --deep-blue: #001a33;
    --neon-cyan: #00ffff;
    --ice-glow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
    --neon-cyan-glow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px rgba(0, 255, 255, 0.8);
    --font-frozen: 'Roboto Condensed', sans-serif;
    --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--powder-blue) 100%);
    --gradient-secondary: linear-gradient(225deg, var(--electric-blue) 0%, var(--neon-blue) 50%, var(--powder-blue) 100%);
    --neon-glow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), 0 0 60px rgba(0, 212, 255, 0.8);
    --powder-glow: 0 0 15px var(--powder-blue), 0 0 30px var(--powder-blue), 0 0 45px rgba(184, 230, 255, 0.6);
    --font-primary: 'Roboto Condensed', sans-serif;
}

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

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    background-color: #000000;
    background-image: 
        radial-gradient(ellipse at center top, var(--deep-blue) 0%, rgba(0, 26, 51, 0.8) 40%, transparent 80%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.1) 0%, rgba(184, 230, 255, 0.05) 50%, transparent 100%);
    background: 
        -webkit-radial-gradient(center top, ellipse, var(--deep-blue) 0%, rgba(0, 26, 51, 0.8) 40%, transparent 80%),
        -webkit-linear-gradient(top, rgba(0, 212, 255, 0.1) 0%, rgba(184, 230, 255, 0.05) 50%, transparent 100%),
        #000000;
    background: 
        radial-gradient(ellipse at center top, var(--deep-blue) 0%, rgba(0, 26, 51, 0.8) 40%, transparent 80%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.1) 0%, rgba(184, 230, 255, 0.05) 50%, transparent 100%),
        #000000;
    overflow-x: hidden;
    color: white;
    position: relative;
}

/* Template Collection Summary Styles */
.template-summary {
    background-color: rgba(0, 26, 51, 0.95);
    color: var(--neon-blue);
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    transition: all 0.3s ease;
}

.template-summary h3 {
    color: var(--powder-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.template-card {
    background: linear-gradient(145deg, var(--deep-blue), var(--electric-blue));
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    max-width: 300px;
    width: 100%;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.template-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.template-card-body {
    padding: 1rem;
}

.template-card-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.template-card-description {
    font-size: 1rem;
    opacity: 0.9;
}

.template-card-keywords {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--powder-blue);
}

/* Responsive Styles for Template Collection Summary */
@media only screen and (max-width: 768px) {
    .template-summary {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .template-card {
        margin: 0 auto;
    }
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-btn {
    background: #007acc;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #005f99;
}

.cookie-link {
    color: #00e5ff;
    text-decoration: underline;
    cursor: pointer;
}

/* Terms Modal Styles */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.terms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.terms-content {
    position: relative;
    background: #1e2a38;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.terms-header h2 {
    margin: 0;
}

.terms-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.terms-body {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section h3 {
    margin-bottom: 0.5rem;
}

.terms-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.terms-accept-btn, .terms-decline-btn {
    background: #007acc;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.terms-accept-btn:hover, .terms-decline-btn:hover {
    background: #005f99;
}
    /* Custom Icon Styles */
    .custom-icon {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        background: rgba(30, 42, 56, 0.6);
        border-radius: 8px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        margin: 0.5rem 0;
        width: 100%;
        gap: 0.5rem;
    }

    .custom-icon span.rune {
        font-size: 1.2rem;
        color: #00d4ff;
        text-shadow: 0 0 10px #00d4ff;
        font-weight: bold;
    }

    .custom-icon span.text {
        font-size: 1rem;
        color: white;
        font-weight: normal;
    }

/* Template Collection Section Styles */
.template-collection-section {
    padding: 4rem 0;
    background: rgba(0, 26, 51, 0.3);
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.collection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.collection-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.collection-subtitle {
    font-size: 1.2rem;
    color: var(--powder-blue);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.collection-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.collection-stats > div {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: var(--neon-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--powder-blue);
    margin-top: 0.5rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-card {
    background: rgba(30, 42, 56, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.category-card.featured {
    border-color: var(--neon-blue);
    background: rgba(30, 42, 56, 0.9);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.category-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    text-shadow: var(--neon-glow);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.category-info h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.category-desc {
    color: var(--powder-blue);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.template-count {
    font-size: 0.8rem;
    color: var(--neon-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.category-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyword {
    background: rgba(0, 212, 255, 0.1);
    color: var(--powder-blue);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.collection-footer {
    margin-top: 3rem;
    text-align: center;
}

.more-categories h4 {
    margin-bottom: 1.5rem;
    color: var(--powder-blue);
}

.upcoming-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.upcoming {
    background: rgba(0, 212, 255, 0.1);
    color: var(--powder-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    opacity: 0.7;
}

/* Responsive styles for template collection */
@media (max-width: 768px) {
    .collection-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collection-title {
        font-size: 2rem;
    }
    
    .upcoming-categories {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
    }
    
    .terms-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
    }
    
    .terms-body {
        max-height: 60vh;
    }
    
    .terms-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .terms-accept-btn, .terms-decline-btn {
        width: 100%;
    }
    
    .terms-section h4 {
        font-size: 1rem;
    }
    
    .terms-section p {
        font-size: 0.9rem;
    }
}

/* RuneFlow.xyz - Neon to Powder Blue Fresh Design - Cross-browser compatible */

:root {
    --neon-blue: #00d4ff;
    --powder-blue: #b8e6ff;
    --electric-blue: #0099ff;
    --deep-blue: #001a33;
    --neon-cyan: #00ffff;
    --ice-glow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
    --neon-cyan-glow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px rgba(0, 255, 255, 0.8);
    --font-frozen: 'Roboto Condensed', sans-serif;
    --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--powder-blue) 100%);
    --gradient-secondary: linear-gradient(225deg, var(--electric-blue) 0%, var(--neon-blue) 50%, var(--powder-blue) 100%);
    --neon-glow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), 0 0 60px rgba(0, 212, 255, 0.8);
    --powder-glow: 0 0 15px var(--powder-blue), 0 0 30px var(--powder-blue), 0 0 45px rgba(184, 230, 255, 0.6);
    --font-primary: 'Roboto Condensed', sans-serif;
}

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

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    /* Safari-compatible background */
    background-color: #000000;
    background-image: 
        radial-gradient(ellipse at center top, var(--deep-blue) 0%, rgba(0, 26, 51, 0.8) 40%, transparent 80%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.1) 0%, rgba(184, 230, 255, 0.05) 50%, transparent 100%);
    /* Fallback for older Safari versions */
    background: 
        -webkit-radial-gradient(center top, ellipse, var(--deep-blue) 0%, rgba(0, 26, 51, 0.8) 40%, transparent 80%),
        -webkit-linear-gradient(top, rgba(0, 212, 255, 0.1) 0%, rgba(184, 230, 255, 0.05) 50%, transparent 100%),
        #000000;
    background: 
        radial-gradient(ellipse at center top, var(--deep-blue) 0%, rgba(0, 26, 51, 0.8) 40%, transparent 80%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.1) 0%, rgba(184, 230, 255, 0.05) 50%, transparent 100%),
        #000000;
    overflow-x: hidden;
    color: white;
    position: relative;
}

/* Static gradient background overlay - disabled animations for performance */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.1;
    /* animation: gradientShift 20s ease-in-out infinite alternate; */
    z-index: -1;
    pointer-events: none;
}

/* Static gradient orbs - disabled animations for performance */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--neon-blue) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, var(--powder-blue) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, var(--electric-blue) 0%, transparent 30%);
    opacity: 0.03;
    /* animation: orbFloat 30s ease-in-out infinite; */
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        opacity: 0.08;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 0.12;
        transform: scale(1.05) rotate(-1deg);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.03;
    }
    33% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.06;
    }
    66% {
        transform: translateY(10px) translateX(-15px) scale(0.9);
        opacity: 0.04;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
    z-index: 10;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-section {
    animation: logoAppear 3s ease-out;
    margin-bottom: 4rem;
    position: relative;
}

.logo-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--neon-blue));
    animation: iconPulse 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 30px var(--neon-blue));
    }
    100% {
        transform: scale(1.15) rotate(2deg);
        filter: 
            drop-shadow(0 0 60px var(--neon-blue)) 
            drop-shadow(0 0 80px var(--powder-blue));
    }
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.6);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(0.9);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.logo {
    font-family: var(--font-primary);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
    animation: logoGlow 3s ease-in-out infinite alternate;
    /* Clean rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@keyframes logoGlow {
    0% { 
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8), 
            0 0 30px rgba(0, 255, 255, 0.6);
        opacity: 0.9;
    }
    100% { 
        text-shadow: 
            0 0 25px rgba(255, 255, 255, 1.0), 
            0 0 45px rgba(0, 255, 255, 0.8),
            0 0 60px rgba(0, 255, 255, 0.4);
        opacity: 1;
    }
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 400;
    margin-bottom: 3rem;
    position: relative;
    animation: taglineFloat 3s ease-in-out infinite alternate;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite alternate;
}

@keyframes taglineFloat {
    0% {
        filter: drop-shadow(0 0 10px var(--neon-blue));
        transform: translateY(0);
    }
    100% {
        filter: drop-shadow(0 0 25px var(--powder-blue));
        transform: translateY(-5px);
    }
}

@keyframes underlineGlow {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 10px var(--neon-blue);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px var(--powder-blue), 0 0 30px var(--neon-blue);
    }
}

.scroll-indicator {
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: scrollFloat 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.8s ease;
}

.scroll-indicator:hover::before {
    left: 100%;
}

.scroll-indicator:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.scroll-indicator p {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    font-weight: 700;
    filter: drop-shadow(0 0 20px var(--neon-blue));
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 1;
}

@keyframes scrollFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
    }
}

.rollout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.rollout-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.rune-counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1rem 2rem;
    font-family: var(--font-frozen);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: runeGlow 4s ease-in-out infinite alternate;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.founder-price {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1rem 2rem;
    font-family: var(--font-frozen);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-shadow: var(--neon-cyan-glow);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 255, 255, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: flowPulse 4s ease-in-out infinite alternate;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.phase-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phase-title {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.phase-progress {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.phase-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #00ffff 100%);
    border-radius: 4px;
    width: 15%; /* Will be dynamic */
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { 
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

.rollout-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.stat-label {
    font-size: clamp(0.6rem, 1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.rune-counter:hover, .founder-price:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4), 
        0 10px 40px rgba(0, 255, 255, 0.3);
}

@keyframes badgeFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-8px) scale(1.01); 
    }
}

.rune-accent {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: runeGlow 4s ease-in-out infinite alternate;
}

@keyframes runeGlow {
    0% { 
        opacity: 0.7; 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% { 
        opacity: 1; 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* Epic Animation Containers */
.snow-container, .ice-crystals, .floating-ice-runes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* EPIC Milestone Dashboard Styles with Aurora Effects */
.milestone-dashboard {
    margin-top: 3rem;
    padding: 2.5rem;
    background: 
        radial-gradient(ellipse at 10% 10%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%),
        rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: auroraShimmer 8s ease-in-out infinite alternate;
}

.milestone-dashboard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(16, 185, 129, 0.01) 0%, transparent 30%);
    animation: auroraRotate 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes auroraShimmer {
    0% {
        border-color: rgba(0, 255, 255, 0.3);
        box-shadow: 
            0 20px 60px rgba(0, 255, 255, 0.1),
            0 8px 32px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(139, 92, 246, 0.4);
        box-shadow: 
            0 20px 60px rgba(139, 92, 246, 0.15),
            0 8px 32px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    100% {
        border-color: rgba(16, 185, 129, 0.3);
        box-shadow: 
            0 20px 60px rgba(16, 185, 129, 0.12),
            0 8px 32px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes auroraRotate {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.milestone-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #ffffff, #00ffff, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(0, 255, 255, 0.6);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(0, 255, 255, 0.8),
            0 0 80px rgba(139, 92, 246, 0.6);
    }
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.milestone-card {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 60%),
        rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.3), 
        rgba(139, 92, 246, 0.3), 
        rgba(16, 185, 129, 0.3), 
        rgba(0, 255, 255, 0.3));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

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

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

.milestone-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 255, 255, 0.2),
        0 5px 15px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.milestone-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(139, 92, 246, 0.2));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.milestone-status {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.milestone-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.milestone-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.milestone-card li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.milestone-toggle {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #007acc, #0056b3);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 16px rgba(0, 122, 204, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.milestone-toggle::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.5s ease;
}

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

.milestone-toggle:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0088dd, #006bb3);
    box-shadow: 
        0 12px 24px rgba(0, 122, 204, 0.4),
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.milestone-card.milestone-special {
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 140, 0, 0.08) 0%, transparent 60%),
        rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 215, 0, 0.4);
}

.milestone-card.milestone-special .milestone-toggle {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000000;
    box-shadow: 
        0 8px 16px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.milestone-card.milestone-special .milestone-toggle:hover {
    background: linear-gradient(135deg, #ffed4e, #ffaa00);
    box-shadow: 
        0 12px 24px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.milestone-card.milestone-final {
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 75%, rgba(5, 150, 105, 0.1) 0%, transparent 60%),
        rgba(0, 0, 0, 0.7);
    border-color: rgba(16, 185, 129, 0.4);
}

.milestone-card.milestone-final .milestone-toggle {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 
        0 8px 16px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.milestone-card.milestone-final .milestone-toggle:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 
        0 12px 24px rgba(16, 185, 129, 0.4),
        0 0 20px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* User Input Dashboard Styles */
.user-dashboard {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: #ffffff;
    text-shadow: 0 0 5px #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.input-section textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #cccccc;
    margin-bottom: 1rem;
}

.input-section button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: #ffffff;
    cursor: pointer;
}

.input-section button:hover {
    background-color: #218838;
}

.progress-bar-container {
    height: 10px;
    background: #dddddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: #007acc;
    transition: width 0.3s ease;
}

/* Info Panel Styles */
.info-panel {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
}

.info-title {
    color: #ffffff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    font-family: 'Exo 2', 'Roboto', sans-serif;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card:hover::before {
    opacity: 0.1;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Premium Elite Access */
.pricing-card.premium {
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 140, 0, 0.06) 0%, transparent 60%),
        rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
    position: relative;
}

.pricing-card.premium::after {
    content: '👑 ELITE';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.pricing-card.premium:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(255, 215, 0, 0.4);
}

/* Beta Warning Styling */
.beta-warning {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 69, 0, 0.4);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.beta-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 69, 0, 0.1), 
        transparent);
    animation: warningShimmer 3s ease-in-out infinite;
}

@keyframes warningShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.beta-warning p {
    color: #ff4500;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
    position: relative;
    z-index: 1;
}

.beta-warning strong {
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    font-weight: 800;
}

/* Coinbase Payment Buttons */
.coinbase-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.coinbase-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.5s ease;
    z-index: 1;
}

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

.coinbase-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Elite Tier Button */
.elite-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000000;
    box-shadow: 
        0 8px 16px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.elite-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffaa00);
    box-shadow: 
        0 12px 24px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Pro Tier Button */
.pro-btn {
    background: var(--gradient-primary);
    color: #000000;
    box-shadow: 
        0 8px 16px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pro-btn:hover {
    background: linear-gradient(135deg, #00ffff, #00aaff);
    box-shadow: 
        0 12px 24px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Founder Tier Button */
.founder-btn {
    background: linear-gradient(135deg, var(--powder-blue), var(--electric-blue));
    color: #000000;
    box-shadow: 
        0 8px 16px rgba(184, 230, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.founder-btn:hover {
    background: linear-gradient(135deg, #e6f7ff, var(--neon-blue));
    box-shadow: 
        0 12px 24px rgba(184, 230, 255, 0.4),
        0 0 20px rgba(184, 230, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Pro Access */
.pricing-card.founders-pro {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 153, 255, 0.08) 0%, transparent 60%),
        rgba(0, 0, 0, 0.8);
    border-color: var(--neon-blue);
    position: relative;
}

.pricing-card.founders-pro::after {
    content: '⚡ PRO';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.pricing-card.founders-pro:hover {
    border-color: var(--powder-blue);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 212, 255, 0.4);
}

/* Starter Access */
.pricing-card.founders-annual {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(184, 230, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 153, 255, 0.06) 0%, transparent 60%),
        rgba(0, 0, 0, 0.8);
    border-color: var(--powder-blue);
    position: relative;
}

.pricing-card.founders-annual::after {
    content: '👑 FOUNDER';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--powder-blue), var(--electric-blue));
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 230, 255, 0.4);
}

.pricing-card.founders-annual:hover {
    border-color: var(--neon-blue);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(184, 230, 255, 0.4);
}

.pricing-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.pricing-card.premium .price {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.pricing-card.founders-pro .price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.pricing-card.founders-annual .price {
    background: linear-gradient(135deg, var(--powder-blue), var(--electric-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--powder-blue));
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.pricing-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    padding-left: 0.5rem;
}

.system-explanation {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.system-explanation p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.system-explanation strong {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

/* ASMR Video Section */
.asmr-video {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.asmr-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.6);
}

.asmr-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.asmr-video-player {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: #000000;
    object-fit: cover;
    transition: all 0.3s ease;
}

.asmr-video-player:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Close button for ASMR video */
.asmr-video::before {
    content: '×';
    position: absolute;
    top: 5px;
    right: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.asmr-video:hover::before {
    color: rgba(255, 255, 255, 0.9);
}

/* Week 1 Rune Capture Section */
.week1-capture {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    text-align: center;
}

.capture-header h3 {
    color: #00ffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: var(--neon-cyan-glow);
}

.capture-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.rune-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.rune-details h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.rune-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    text-align: left;
}

.rune-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.email-capture-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.capture-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff, #0088cc);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capture-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
    background: linear-gradient(135deg, #00ffff, #00aaff);
}

.capture-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Download Section */
.download-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.1);
    text-align: center;
}

.download-header h3 {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.download-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.download-info h4 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-stats .stat {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.download-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn, .dashboard-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
}

.download-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000000;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00ff88, #00dd77);
}

.dashboard-btn {
    background: linear-gradient(135deg, #8800ff, #6600cc);
    color: #ffffff;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 0, 255, 0.4);
    background: linear-gradient(135deg, #9900ff, #7700dd);
}

.next-rune-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
}

.next-rune-info h4 {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.next-rune-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

#nextRuneCountdown {
    color: #00ff88;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Footer Styles */
.site-footer {
    margin-top: 4rem;
    padding: 2rem 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 255, 0.08) 0%, transparent 60%),
        rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 255, 0.05), 
        transparent);
    animation: footerShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 255, 255, 0.3),
        0 0 20px rgba(0, 255, 255, 0.4);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.social-link svg {
    fill: currentColor;
    filter: drop-shadow(0 0 5px currentColor);
    transition: all 0.3s ease;
}

.social-link:hover svg {
    filter: drop-shadow(0 0 10px currentColor);
    transform: scale(1.1);
}

.terms-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.terms-link::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.5s ease;
}

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

.terms-link:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.made-with {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.warp-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.warp-link::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.5s ease;
}

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

.warp-link:hover {
    transform: translateY(-1px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.2),
        0 0 15px rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.warp-logo {
    font-size: 1.1em;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
}

.warp-link:hover .warp-logo {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    transform: scale(1.2) rotate(10deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: clamp(0.7rem, 3vw, 1rem);
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .milestone-card {
        margin-bottom: 0.5rem;
        padding: 0.8rem;
    }
    
    .user-dashboard {
        padding: 0.8rem;
    }
    
    .input-section textarea {
        padding: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-link {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .warp-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}
