/* Scratch Card Graphics CSS Import */
@import url('assets/scratch-card-graphics.css');

/* CSS Reset and Base Styles - Optimized Version */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimization */
* {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: #000000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 7-Color Neon Glory Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* 7 Color Neon Glows - Red, Orange, Yellow, Green, Blue, Indigo, Violet */
        radial-gradient(circle 200px at 15% 20%, rgba(255, 0, 100, 0.3) 0%, transparent 50%),
        radial-gradient(circle 150px at 85% 15%, rgba(255, 165, 0, 0.25) 0%, transparent 50%),
        radial-gradient(circle 180px at 70% 80%, rgba(255, 255, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle 160px at 25% 75%, rgba(0, 255, 127, 0.25) 0%, transparent 50%),
        radial-gradient(circle 190px at 90% 60%, rgba(0, 191, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle 140px at 10% 60%, rgba(75, 0, 130, 0.25) 0%, transparent 50%),
        radial-gradient(circle 170px at 55% 25%, rgba(238, 130, 238, 0.25) 0%, transparent 50%),
        /* Additional neon accent points */
        radial-gradient(circle 50px at 40% 40%, rgba(0, 255, 255, 0.4) 0%, transparent 60%),
        radial-gradient(circle 40px at 65% 65%, rgba(255, 20, 147, 0.4) 0%, transparent 60%),
        radial-gradient(circle 45px at 30% 85%, rgba(50, 205, 50, 0.35) 0%, transparent 60%),
        /* Scattered twinkling stars */
        radial-gradient(circle 0.8px at 95% 10%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
        radial-gradient(circle 0.6px at 5% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(circle 0.7px at 50% 5%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
        radial-gradient(circle 0.5px at 15% 95%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(circle 0.8px at 85% 90%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(circle 0.6px at 25% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(circle 0.7px at 75% 60%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(circle 0.5px at 35% 30%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(circle 0.6px at 80% 35%, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    animation: neonGlory 8s ease-in-out infinite alternate;
}

/* Deep Space Background with Neon Planets */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* 7-Color Neon Planets scattered across space */
        radial-gradient(circle 8px at 18% 25%, rgba(255, 0, 100, 0.9) 0%, rgba(255, 0, 100, 0.4) 30%, transparent 70%),
        radial-gradient(circle 6px at 82% 12%, rgba(255, 165, 0, 0.8) 0%, rgba(255, 165, 0, 0.3) 35%, transparent 70%),
        radial-gradient(circle 10px at 68% 85%, rgba(255, 255, 0, 0.7) 0%, rgba(255, 255, 0, 0.2) 40%, transparent 70%),
        radial-gradient(circle 7px at 22% 78%, rgba(0, 255, 127, 0.8) 0%, rgba(0, 255, 127, 0.3) 35%, transparent 70%),
        radial-gradient(circle 9px at 88% 65%, rgba(0, 191, 255, 0.9) 0%, rgba(0, 191, 255, 0.4) 30%, transparent 70%),
        radial-gradient(circle 5px at 8% 55%, rgba(75, 0, 130, 0.8) 0%, rgba(75, 0, 130, 0.4) 40%, transparent 70%),
        radial-gradient(circle 11px at 52% 18%, rgba(238, 130, 238, 0.8) 0%, rgba(238, 130, 238, 0.3) 35%, transparent 70%),
        
        /* Bright neon stars */
        radial-gradient(circle 1.2px at 25% 25%, rgba(255, 255, 255, 1) 0%, transparent 100%),
        radial-gradient(circle 1px at 75% 35%, rgba(0, 255, 255, 0.9) 0%, transparent 100%),
        radial-gradient(circle 1.3px at 45% 60%, rgba(255, 20, 147, 0.9) 0%, transparent 100%),
        radial-gradient(circle 1px at 85% 80%, rgba(50, 205, 50, 0.8) 0%, transparent 100%),
        radial-gradient(circle 1.1px at 10% 45%, rgba(255, 255, 255, 1) 0%, transparent 100%),
        radial-gradient(circle 1px at 90% 25%, rgba(255, 165, 0, 0.9) 0%, transparent 100%),
        radial-gradient(circle 1.2px at 55% 15%, rgba(138, 43, 226, 0.9) 0%, transparent 100%),
        radial-gradient(circle 1px at 35% 85%, rgba(255, 255, 255, 1) 0%, transparent 100%),
        
        /* Additional twinkling colored stars */
        radial-gradient(circle 0.8px at 60% 40%, rgba(255, 0, 100, 0.8) 0%, transparent 100%),
        radial-gradient(circle 0.6px at 30% 70%, rgba(0, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(circle 0.7px at 70% 20%, rgba(255, 255, 0, 0.8) 0%, transparent 100%),
        radial-gradient(circle 0.9px at 40% 90%, rgba(238, 130, 238, 0.7) 0%, transparent 100%),
        
        /* Pure black deep space */
        #000000;
    background-size: 100% 100%;
    background-position: center;
    z-index: -2;
    animation: cosmicTwinkle 6s ease-in-out infinite alternate;
}

@keyframes cosmicTwinkle {
    0% { 
        opacity: 1;
        filter: brightness(1);
    }
    50% { 
        opacity: 0.9;
        filter: brightness(1.1);
    }
    100% { 
        opacity: 1;
        filter: brightness(1);
    }
}

@keyframes neonGlory {
    0% { 
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
        filter: brightness(1) hue-rotate(0deg);
    }
    25% { 
        opacity: 1;
        transform: scale(1.05) rotate(5deg);
        filter: brightness(1.2) hue-rotate(45deg);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.1) rotate(-3deg);
        filter: brightness(1.1) hue-rotate(90deg);
    }
    75% { 
        opacity: 1;
        transform: scale(1.02) rotate(7deg);
        filter: brightness(1.3) hue-rotate(135deg);
    }
    100% { 
        opacity: 0.85;
        transform: scale(1) rotate(0deg);
        filter: brightness(1) hue-rotate(180deg);
    }
}

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

/* ===== FUTURISTIC HEADER DESIGN ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(26, 26, 46, 0.95) 25%, 
        rgba(22, 33, 62, 0.95) 50%, 
        rgba(26, 26, 46, 0.95) 75%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    height: 80px;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.3) 0%, 
        rgba(0, 206, 201, 0.3) 25%, 
        rgba(255, 0, 100, 0.3) 50%, 
        rgba(0, 206, 201, 0.3) 75%, 
        rgba(108, 92, 231, 0.3) 100%);
    background-size: 400% 400%;
    animation: headerGlow 6s ease-in-out infinite;
    opacity: 0.7;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(108, 92, 231, 0.8) 10%, 
        rgba(0, 206, 201, 1) 25%, 
        rgba(255, 0, 100, 0.8) 50%, 
        rgba(0, 206, 201, 1) 75%, 
        rgba(108, 92, 231, 0.8) 90%, 
        transparent 100%);
    animation: borderPulse 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.6);
}

@keyframes headerGlow {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
}

@keyframes borderPulse {
    0%, 100% { 
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 206, 201, 0.6);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 30px rgba(0, 206, 201, 0.9), 0 0 40px rgba(108, 92, 231, 0.5);
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.nav-brand {
    position: relative;
}

.site-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, 
        #ff0064, #ffa500, #ffff00, #00ff7f, 
        #00bfff, #4b0082, #ee82ee, #ff0064);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 800% 800%;
    animation: rainbowShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-title::before {
    content: '🔮';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: crystalFloat 3s ease-in-out infinite;
}

.site-title:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

@keyframes crystalFloat {
    0%, 100% { 
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
    50% { 
        transform: translateY(-60%) rotate(180deg) scale(1.1);
    }
}

/* ===== FUTURISTIC NAVIGATION ===== */
.nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    backdrop-filter: blur(10px);
}

.nav-menu a:hover {
    color: #00cec9;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.8);
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.2) 0%, 
        rgba(0, 206, 201, 0.2) 100%);
    border-color: rgba(0, 206, 201, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 206, 201, 0.3);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(108, 92, 231, 1) 0%, 
        rgba(0, 206, 201, 1) 50%, 
        rgba(108, 92, 231, 1) 100%);
    transition: width 0.4s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 206, 201, 0.6);
}

.nav-menu a:hover::after {
    width: 120%;
}

/* ===== FUTURISTIC HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 12px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 206, 201, 0.3);
}

.hamburger:hover span {
    background: linear-gradient(45deg, #00cec9, #6c5ce7);
    box-shadow: 0 0 15px rgba(0, 206, 201, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION - FIXED SPACING ===== */
.hero {
    margin-top: 100px; /* Increased to prevent header border merging */
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(108, 92, 231, 0.3),
        0 0 60px rgba(0, 206, 201, 0.2);
}

.hero-video video,
.hero-video .video-fallback img {
    width: 100%;
    height: auto;
    display: block;
}

/* 3D Witch Enhancement */
.witch-3d {
    filter: drop-shadow(0 0 30px rgba(108, 92, 231, 0.6)) 
            drop-shadow(0 0 60px rgba(0, 206, 201, 0.4))
            drop-shadow(0 0 90px rgba(255, 255, 255, 0.2));
    transform: perspective(800px) rotateX(5deg) rotateY(-5deg);
    transition: all 0.8s ease;
    animation: float3D 6s ease-in-out infinite;
}

.witch-3d:hover {
    transform: perspective(800px) rotateX(10deg) rotateY(-10deg) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(108, 92, 231, 0.8)) 
            drop-shadow(0 0 80px rgba(0, 206, 201, 0.6))
            drop-shadow(0 0 120px rgba(255, 255, 255, 0.3));
}

@keyframes float3D {
    0%, 100% { 
        transform: perspective(800px) rotateX(5deg) rotateY(-5deg) translateY(0px);
    }
    33% { 
        transform: perspective(800px) rotateX(8deg) rotateY(-3deg) translateY(-15px);
    }
    66% { 
        transform: perspective(800px) rotateX(2deg) rotateY(-8deg) translateY(-10px);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff0064, #ffa500, #ffff00, #00ff7f, #00bfff, #4b0082, #ee82ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    margin-bottom: 1.5rem;
    animation: rainbowShift 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 206, 201, 0.8));
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

/* Products Section */
.products {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(108, 92, 231, 0.5);
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(108, 92, 231, 0.4),
        0 0 60px rgba(0, 206, 201, 0.3);
    border-color: rgba(0, 206, 201, 0.5);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.8) 0%, rgba(0, 206, 201, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-cta {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00cec9;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c5ce7;
}

/* Product Page Styles */
.product-page {
    margin-top: 80px;
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.product-display {
    text-align: center;
    margin-bottom: 3rem;
}

.witch-card-large {
    position: relative;
    display: inline-block;
    max-width: 400px;
    margin: 0 auto;
}

.witch-card-large img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(108, 92, 231, 0.4),
        0 0 80px rgba(0, 206, 201, 0.3);
}

.card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
    animation: cardPulse 3s ease-in-out infinite alternate;
}

@keyframes cardPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.05); opacity: 0.5; }
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #00cec9;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00cec9;
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.3);
}

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

.payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 92, 231, 0.3);
}

.payment-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00cec9;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #6c5ce7;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
}

/* Consent Section Styling */
.consent-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
}

.checkmark {
    min-width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(108, 92, 231, 0.5);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #00cec9;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox input[type="checkbox"]:checked + .consent-label .checkmark {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    border-color: #00cec9;
    box-shadow: 0 0 15px rgba(0, 206, 201, 0.5);
}

.consent-checkbox input[type="checkbox"]:checked + .consent-label .checkmark::after {
    display: block;
}

.consent-link {
    color: #00cec9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consent-link:hover {
    color: #6c5ce7;
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.8);
}

.pay-button {
    width: 100%;
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
}

.pay-button:disabled {
    background: rgba(108, 92, 231, 0.3);
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
    box-shadow: none;
}

.pay-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Scratch Page Styles */
.scratch-section {
    margin-top: 80px;
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.scratch-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.scratch-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scratch-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.scratch-card-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(108, 92, 231, 0.4),
        0 0 80px rgba(0, 206, 201, 0.3);
}

.revealed-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(108, 92, 231, 0.3);
}

.revealed-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* Witch Result Container Styling */
.witch-result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.witch-final-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    border: 3px solid rgba(0, 206, 201, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 206, 201, 0.6),
        0 0 40px rgba(108, 92, 231, 0.4);
    animation: witchGlow 3s ease-in-out infinite alternate;
}

@keyframes witchGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(0, 206, 201, 0.6),
            0 0 40px rgba(108, 92, 231, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(0, 206, 201, 0.8),
            0 0 60px rgba(108, 92, 231, 0.6),
            0 0 80px rgba(255, 0, 128, 0.3);
        transform: scale(1.05);
    }
}

.final-result-box {
    background: rgba(0, 206, 201, 0.1);
    border: 1px solid rgba(0, 206, 201, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.final-result-box h3 {
    color: #00cec9;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.6);
}

.final-result-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.revealed-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00cec9;
    margin-bottom: 1rem;
}

.partner-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.revealed-content p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.scratch-canvas {
    position: absolute;
    top: 0;
    left: 0;
    cursor: crosshair;
    z-index: 10;
}

/* Neon Action Buttons for Results */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Enhanced Action Buttons with Neon Effects */
.action-buttons button {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    font-family: 'Orbitron', monospace;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Neon border effect for action buttons */
.action-buttons button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff0080, #ff4000, #ffff00, #00ff80, 
        #0080ff, #8000ff, #ff0080
    );
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: neonBorder 3s linear infinite;
}

.action-buttons button:hover::before {
    opacity: 1;
}

.action-buttons button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(108, 92, 231, 0.6),
        0 0 25px rgba(0, 206, 201, 0.8);
}

.download-button {
    background: linear-gradient(135deg, #00cec9 0%, #55a3ff 100%);
}

.download-button:hover {
    background: linear-gradient(135deg, #10ded9 0%, #65b3ff 100%);
    box-shadow: 
        0 15px 40px rgba(0, 206, 201, 0.6),
        0 0 25px rgba(85, 163, 255, 0.8);
}

.share-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
}

.share-button:hover {
    background: linear-gradient(135deg, #7c6ce7 0%, #fd89b8 100%);
    box-shadow: 
        0 15px 40px rgba(108, 92, 231, 0.6),
        0 0 25px rgba(253, 121, 168, 0.8);
}

.new-reading-button {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

.new-reading-button:hover {
    background: linear-gradient(135deg, #fddb7e 0%, #f18065 100%);
    box-shadow: 
        0 15px 40px rgba(253, 203, 110, 0.6),
        0 0 25px rgba(225, 112, 85, 0.8);
}

.scratch-instructions {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(10px);
}

.scratch-instructions p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.scratch-instructions p:last-child {
    margin-bottom: 0;
}

/* Korean Astro Tabs Section */
.astro-tabs {
    background: linear-gradient(90deg, #0f0f2d, #1a0033);
    padding: 40px 20px;
    text-align: center;
    margin-top: 4rem;
}

.astro-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #ff5df0;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 93, 240, 0.6);
    animation: neonGlow .5s ease-in-out infinite alternate;
}

.tabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.astro-tab {
    background: #111;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    box-shadow: 
        0 0 15px #ff00ff, 
        0 0 30px #00eaff inset;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.astro-tab:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px #ff00ff, 
        0 0 40px #00eaff inset;
    color: #00eaff;
}

/* Tarot Cards Section */
.tarot-cards {
    background: #0a001a;
    padding: 40px 20px;
    text-align: center;
    margin-top: 2rem;
}

.tarot-title {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 24px;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.6);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.cards-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tarot-card {
    background: #1c0033;
    color: #fff;
    font-size: 18px;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 
        0 0 20px #ff00ff, 
        0 0 25px #00eaff inset;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tarot-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 15px 30px #ff00ff, 
        0 0 35px #00eaff inset;
    color: #ff5df0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .astro-title {
        font-size: 22px;
    }
    
    .tabs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .astro-tab {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tarot-title {
        font-size: 20px;
    }
    
    .cards-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tarot-card {
        font-size: 16px;
        padding: 15px 25px;
        min-width: 200px;
    }

    /* ===== MOBILE HEADER STYLES ===== */
    .hamburger {
        display: flex;
    }
    
    .hamburger:hover {
        background: rgba(0, 206, 201, 0.2);
        border-color: rgba(0, 206, 201, 0.6);
        transform: scale(1.05);
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
        background: linear-gradient(45deg, #6c5ce7, #00cec9);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .site-title {
        font-size: 1.6rem;
    }
    
    .site-title::before {
        left: -30px;
        font-size: 1.2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* ===== MOBILE FOOTER STYLES ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.8rem;
    }
    
    .footer-brand h3::before {
        left: -30px;
        font-size: 1.2rem;
    }
    
    .footer-navigation {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .affiliate-section {
        align-items: center;
    }
    

}

/* ===== FUTURISTIC FOOTER DESIGN ===== */
.footer {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(13, 13, 35, 0.95) 25%, 
        rgba(19, 19, 47, 0.95) 50%, 
        rgba(13, 13, 35, 0.95) 75%, 
        rgba(0, 0, 0, 0.95) 100%);
    border-top: 3px solid transparent;
    background-clip: padding-box;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(108, 92, 231, 0.15) 0%, 
        rgba(0, 206, 201, 0.15) 25%, 
        rgba(255, 0, 100, 0.15) 50%, 
        rgba(0, 206, 201, 0.15) 75%, 
        rgba(108, 92, 231, 0.15) 100%);
    background-size: 400% 400%;
    animation: footerGlow 8s ease-in-out infinite;
    opacity: 0.6;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(108, 92, 231, 0.8) 10%, 
        rgba(0, 206, 201, 1) 25%, 
        rgba(255, 0, 100, 0.8) 50%, 
        rgba(0, 206, 201, 1) 75%, 
        rgba(108, 92, 231, 0.8) 90%, 
        transparent 100%);
    animation: footerBorderPulse 5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.6);
}

@keyframes footerGlow {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 0.9;
    }
}

@keyframes footerBorderPulse {
    0%, 100% { 
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 206, 201, 0.6);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 30px rgba(0, 206, 201, 0.9), 0 0 40px rgba(108, 92, 231, 0.5);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    position: relative;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, 
        #ff0064, #ffa500, #ffff00, #00ff7f, 
        #00bfff, #4b0082, #ee82ee, #ff0064);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 800% 800%;
    animation: rainbowShift 5s ease-in-out infinite;
    margin-bottom: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-brand h3::before {
    content: '✨';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.footer-brand h3:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(-50%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-60%) rotate(360deg) scale(1.2);
        opacity: 1;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00cec9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(108, 92, 231, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 206, 201, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.footer-links a:hover {
    color: #00cec9;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.8);
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.2) 0%, 
        rgba(0, 206, 201, 0.2) 100%);
    border-color: rgba(0, 206, 201, 0.6);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 206, 201, 0.3);
}

.footer-links a:hover::before {
    left: 100%;
}

.affiliate-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.affiliate-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.6);
    animation: moneyFlicker 3s ease-in-out infinite;
}

.affiliate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 206, 201, 0.8);
    animation: none;
}

.affiliate-button::before {
    content: '💰';
    font-size: 1.2rem;
    animation: moneyBounce 2s ease-in-out infinite;
}

.affiliate-button::after {
    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;
}

.affiliate-button:hover::after {
    left: 100%;
}

.earning-text {
    color: #00cec9;
    font-size: 0.9rem;
    font-weight: 600;
    animation: earnGlow 2.5s ease-in-out infinite alternate;
}



/* ===== FUTURISTIC FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid transparent;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(108, 92, 231, 0.4) 25%, 
        rgba(0, 206, 201, 0.6) 50%, 
        rgba(108, 92, 231, 0.4) 75%, 
        transparent 100%) top / 100% 2px no-repeat;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(0, 206, 201, 1) 0%, 
        rgba(108, 92, 231, 1) 50%, 
        rgba(0, 206, 201, 1) 100%);
    animation: footerBottomGlow 3s ease-in-out infinite;
    border-radius: 1px;
}

@keyframes footerBottomGlow {
    0%, 100% { 
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(0, 206, 201, 0.4);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 25px rgba(0, 206, 201, 0.7), 0 0 35px rgba(108, 92, 231, 0.4);
    }
}

@keyframes neonGlow {
    0% { 
        text-shadow: 0 0 20px rgba(0, 206, 201, 0.5);
    }
    100% { 
        text-shadow: 0 0 30px rgba(108, 92, 231, 0.8), 0 0 40px rgba(0, 206, 201, 0.6);
    }
}

@keyframes moneyFlicker {
    0%, 50%, 100% { 
        box-shadow: 0 0 30px rgba(108, 92, 231, 0.6);
    }
    25%, 75% { 
        box-shadow: 0 0 40px rgba(0, 206, 201, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

@keyframes moneyBounce {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-3px) scale(1.1);
    }
}

@keyframes earnGlow {
    0% { 
        color: #00cec9;
        text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
    }
    100% { 
        color: #6c5ce7;
        text-shadow: 0 0 15px rgba(108, 92, 231, 0.8);
    }
}

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

/* Policy Pages Styles */
.policy-page {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.policy-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0064, #ffa500, #ffff00, #00ff7f, #00bfff, #4b0082, #ee82ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: rainbowShift 4s ease-in-out infinite;
    text-align: center;
}

.policy-date {
    text-align: center;
    color: #00cec9;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.policy-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.policy-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00cec9;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.5);
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.policy-section li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #6c5ce7;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.contact-info {
    background: rgba(108, 92, 231, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-link {
    color: #00cec9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #6c5ce7;
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.8);
}

.policy-contact {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 206, 201, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 206, 201, 0.3);
}

.policy-contact a {
    color: #00cec9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-contact a:hover {
    color: #6c5ce7;
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.8);
}

.fun-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.fun-note p {
    color: #ffa500;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Tarot Notification Styles */
.tarot-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(108, 92, 231, 0.6);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    text-align: center;
    box-shadow: 
        0 0 40px rgba(108, 92, 231, 0.8),
        0 0 80px rgba(0, 206, 201, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.tarot-notification.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.tarot-notification.fade-out {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
}

.tarot-notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tarot-icon {
    font-size: 3rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

.tarot-message {
    color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.cosmic-sparkles {
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(108, 92, 231, 0.8);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(0, 206, 201, 1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.95) 0%, rgba(0, 206, 201, 0.95) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .affiliate-section {
        align-items: center;
    }
    
    .affiliate-button {
        width: 100%;
        max-width: 280px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-button,
    .share-button {
        width: 100%;
        max-width: 250px;
    }
    
    .policy-content {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .scratch-title {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .scratch-container {
        padding: 0 15px;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .consent-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .consent-label {
        font-size: 0.9rem;
    }
    
    .checkmark {
        min-width: 18px;
        height: 18px;
    }
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Cards Selection Styles */
.cards-section {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
    scroll-margin-top: 80px; /* Account for fixed header */
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(16, 16, 35, 0.95), rgba(8, 8, 20, 0.98));
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    margin-top: 2rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.main-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: neonGlow 2s ease-in-out infinite;
    font-size: 1.1rem;
}

.main-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.5);
}

/* ===== NUMEROLOGY SECTION ===== */
.numerology-section {
    padding: 6rem 0;
    background: 
        radial-gradient(ellipse at center, rgba(16, 16, 35, 0.9) 0%, rgba(8, 8, 20, 0.98) 100%),
        linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(255, 0, 150, 0.05) 50%, rgba(0, 206, 201, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.numerology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(108, 92, 231, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 150, 0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 206, 201, 0.7), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 90px, rgba(108, 92, 231, 0.5), transparent),
        radial-gradient(2px 2px at 250px 50px, rgba(255, 0, 150, 0.4), transparent),
        radial-gradient(1px 1px at 300px 20px, rgba(0, 206, 201, 0.6), transparent);
    background-repeat: repeat;
    background-size: 350px 200px;
    animation: twinkleStars 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

.numerology-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(108, 92, 231, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 0, 150, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 206, 201, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: galaxyPulse 12s ease-in-out infinite;
}

@keyframes twinkleStars {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    25% { 
        opacity: 1; 
        transform: scale(1.1);
    }
    50% { 
        opacity: 0.4; 
        transform: scale(0.9);
    }
    75% { 
        opacity: 0.9; 
        transform: scale(1.05);
    }
}

@keyframes galaxyPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.8;
        transform: scale(1.02) rotate(1deg);
    }
    66% { 
        opacity: 0.4;
        transform: scale(0.98) rotate(-1deg);
    }
}

.numerology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.numerology-title {
    margin-bottom: 2rem;
}

.scary-question {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #ff0096, #00d4ff, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(255, 0, 150, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3);
    animation: scaryGlow 4s ease-in-out infinite, gradientShift 6s ease-in-out infinite;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.sanskrit-subtitle {
    display: block;
    font-size: 1.2rem;
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 15px #00d4ff;
    opacity: 0.9;
}

@keyframes scaryGlow {
    0% { 
        text-shadow: 
            0 0 10px #ff0096,
            0 0 20px #ff0096,
            0 0 30px #ff0096;
    }
    100% { 
        text-shadow: 
            0 0 15px #ff0096,
            0 0 25px #ff0096,
            0 0 35px #ff0096,
            0 0 45px #ff0096;
    }
}

.mystical-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.numerology-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(108, 92, 231, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::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;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 10px 30px rgba(108, 92, 231, 0.3),
        0 0 20px rgba(0, 212, 255, 0.2);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1.5rem;
    min-width: 60px;
    text-align: center;
}

.feature-text h4 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.scary-revelation {
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.1), rgba(138, 43, 226, 0.1));
    border: 2px solid rgba(255, 0, 150, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 150, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 150, 0.6);
    }
}

.revelation-title {
    color: #ff0096;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff0096;
}

.scary-revelation p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.numerology-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mystical-numerology-graphic {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 0 40px rgba(108, 92, 231, 0.6),
        0 0 80px rgba(0, 206, 201, 0.4),
        0 0 120px rgba(255, 0, 150, 0.2);
    filter: brightness(1.15) contrast(1.25) saturate(1.1);
    animation: imageFloat 8s ease-in-out infinite, imageGlow 6s ease-in-out infinite alternate;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes imageGlow {
    0% { 
        filter: brightness(1.15) contrast(1.25) saturate(1.1);
        box-shadow: 
            0 0 40px rgba(108, 92, 231, 0.6),
            0 0 80px rgba(0, 206, 201, 0.4),
            0 0 120px rgba(255, 0, 150, 0.2);
    }
    100% { 
        filter: brightness(1.3) contrast(1.4) saturate(1.2);
        box-shadow: 
            0 0 50px rgba(108, 92, 231, 0.8),
            0 0 100px rgba(0, 206, 201, 0.6),
            0 0 150px rgba(255, 0, 150, 0.4);
    }
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-numbers span {
    position: absolute;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(45deg, #00d4ff, #ff0096);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: floatNumber 4s ease-in-out infinite;
}

.number-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.number-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.8s;
}

.number-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 1.6s;
}

.number-4 {
    top: 60%;
    right: 25%;
    animation-delay: 2.4s;
}

.number-5 {
    bottom: 40%;
    right: 10%;
    animation-delay: 3.2s;
}

@keyframes floatNumber {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0064, #ffa500, #ffff00, #00ff7f, #00bfff, #4b0082, #ee82ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: rainbowShift 4s ease-in-out infinite;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== IMPROVED RESPONSIVE CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.card-option {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: 20px;
    padding: 1.2rem;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
    max-width: 380px;
    width: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    cursor: pointer;
}

/* ===== FIXED CARD FLIP EFFECT ===== */
.card-option .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 550px;
}

.card-option:hover .card-inner {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

/* ===== FIXED CARD BACK LAYOUT ===== */
.card-option .card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 150, 0.9) 0%, 
        rgba(0, 255, 255, 0.9) 25%, 
        rgba(255, 255, 0, 0.9) 50%, 
        rgba(138, 43, 226, 0.9) 75%, 
        rgba(0, 255, 127, 0.9) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateZ(-50px);
    transition: all 0.6s ease;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    animation: neonPulse 3s ease-in-out infinite;
    min-height: 550px;
    box-sizing: border-box;
}

.card-option:hover .card-back {
    opacity: 1;
    transform: translateZ(20px);
}

.card-back h3 {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.card-back p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.upi-text {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 30px #00d4ff,
        0 0 40px #ff0096;
    animation: neonTextGlow 2s ease-in-out infinite alternate;
    margin: 1rem 0;
    padding: 8px 0;
}

@keyframes neonTextGlow {
    0% { 
        text-shadow: 
            0 0 10px #00d4ff,
            0 0 20px #00d4ff,
            0 0 30px #00d4ff,
            0 0 40px #ff0096;
    }
    100% { 
        text-shadow: 
            0 0 15px #00d4ff,
            0 0 25px #00d4ff,
            0 0 35px #00d4ff,
            0 0 45px #ff0096,
            0 0 55px #ff0096;
    }
}

@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 150, 0.8), 
                    0 0 40px rgba(0, 255, 255, 0.6), 
                    0 0 60px rgba(255, 255, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 150, 1), 
                    0 0 60px rgba(0, 255, 255, 0.8), 
                    0 0 90px rgba(255, 255, 0, 0.6);
    }
}

/* Input Requirement Box */
.input-requirement-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.requirement-title {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
    font-family: 'Orbitron', monospace;
}

.requirement-tags {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.req-tag {
    background: rgba(108, 92, 231, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Witch Scratch Interface */
.witch-crystal-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 1rem 0;
    gap: 1rem;
    padding: 1rem;
}

.witch-hands {
    position: relative;
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.witch-video {
    width: 180px;
    height: 135px;
    border-radius: 15px;
    object-fit: cover;
    filter: drop-shadow(0 0 25px rgba(108, 92, 231, 0.9)) 
            drop-shadow(0 0 35px rgba(0, 206, 201, 0.6))
            brightness(1.2) contrast(1.3);
    animation: videoFloat 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@keyframes videoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.scratch-container {
    width: 220px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.scratch-area {
    position: relative;
    width: 200px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 18px;
    border: 3px solid rgba(192, 192, 192, 0.7);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.silver-foil {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(45deg, 
        #e8e8e8 0%, #f5f5f5 15%, #d0d0d0 30%, #f0f0f0 45%, 
        #c8c8c8 60%, #e8e8e8 75%, #f2f2f2 90%, #d5d5d5 100%);
    background-size: 200% 200%;
    opacity: 0.95;
    animation: foilShimmer 1.5s linear infinite;
    border-radius: 12px;
    border: 2px solid rgba(192, 192, 192, 0.8);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.6),
        inset 0 0 25px rgba(192, 192, 192, 0.4),
        0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes foilShimmer {
    0% { background-position: -200% -200%; }
    50% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.scratch-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

/* ===== FIXED NEON CLICK BUTTON ===== */
.neon-click-button {
    background: linear-gradient(45deg, #ff0096, #00d4ff);
    border: 3px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 16px 24px;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: neonGlow 2s ease-in-out infinite;
    margin: 0.5rem auto;
    width: 100%;
    max-width: 200px;
    min-height: 54px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 0 10px #ff0096, 0 0 20px #ff0096, 0 0 30px #ff0096;
        text-shadow: 0 0 10px #ff0096;
    }
    50% {
        box-shadow: 0 0 20px #ff0096, 0 0 30px #ff0096, 0 0 40px #ff0096;
        text-shadow: 0 0 20px #ff0096;
    }
}

.neon-click-button:hover {
    background: linear-gradient(45deg, #ff0096, #00d4ff);
    transform: scale(1.08);
    box-shadow: 0 0 40px #ff0096, 0 0 50px #00d4ff, 0 0 60px rgba(255, 255, 255, 0.5);
}

.neon-click-button::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.5s;
}

.neon-click-button:hover::before {
    left: 100%;
}

/* ===== CARD FRONT CONTENT LAYOUT FIXES ===== */
.card-image {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #00cec9;
    margin-bottom: 0.8rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: center;
}

.card-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.input-tag {
    background: rgba(108, 92, 231, 0.3);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(108, 92, 231, 0.5);
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, 
        #ff0080, /* Pink */
        #ff4000, /* Orange-Red */
        #ffff00, /* Yellow */
        #00ff80, /* Green */
        #0080ff, /* Blue */
        #8000ff, /* Purple */
        #ff0080  /* Pink again for smooth loop */
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: multiNeonGlow 2s ease-in-out infinite alternate;
    text-shadow: 
        0 0 5px rgba(255, 0, 128, 0.5),
        0 0 10px rgba(0, 255, 127, 0.4),
        0 0 15px rgba(0, 128, 255, 0.3),
        0 0 20px rgba(128, 0, 255, 0.2);
}

.card-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
    min-height: 44px;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.6);
}

@keyframes multiNeonGlow {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1.2);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg) brightness(1.5);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(360deg) brightness(1.2);
    }
}

/* ===== RESPONSIVE DESIGN IMPROVEMENTS ===== */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .card-option {
        max-width: none;
        width: 100%;
        min-height: 550px;
        padding: 1.25rem;
    }
    
    .numerology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .scary-question {
        font-size: 1.8rem;
    }
    
    .sanskrit-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .mystical-numerology-graphic {
        max-width: 350px;
    }
    
    .floating-numbers span {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
        min-height: 2.5rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .neon-click-button {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 50px;
        margin: 1rem auto 1.5rem auto;
        width: 85%;
        max-width: 180px;
    }
    
    .card-back {
        padding: 1.2rem !important;
        min-height: 500px !important;
        gap: 0.5rem;
    }
    
    .witch-crystal-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0.5rem 0;
        gap: 0.8rem;
    }
    
    .scratch-container {
        width: 180px;
        height: 140px;
    }
    
    .scratch-area {
        width: 160px;
        height: 120px;
    }
    
    .upi-text {
        font-size: 1rem;
        margin: 0.8rem 0;
    }
    
    .card-image img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        margin-top: 2rem;
    }
    
    .card-option {
        max-width: 100%;
        margin: 0 auto;
        min-height: 500px;
        padding: 1rem;
    }
    
    .card-inner {
        min-height: 450px;
    }
    
    .card-image img {
        height: 160px;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin: 1rem 0 0.8rem 0;
        line-height: 1.3;
        min-height: auto;
    }
    
    .card-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .card-inputs {
        margin: 0.8rem 0;
        gap: 0.3rem;
    }
    
    .input-tag {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .card-price {
        font-size: 1.6rem;
        margin: 0.8rem 0;
    }
    
    .card-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    .card-back {
        padding: 1rem !important;
        min-height: 450px !important;
        gap: 0.3rem;
    }
    
    .input-requirement-box {
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }
    
    .requirement-tags {
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    
    .req-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .witch-crystal-container {
        gap: 0.5rem;
        margin: 0.3rem 0;
    }
    
    .scratch-container {
        width: 160px;
        height: 120px;
    }
    
    .scratch-area {
        width: 140px;
        height: 100px;
    }
    
    .scratch-text {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .upi-text {
        font-size: 0.9rem;
        margin: 0.8rem 0;
        letter-spacing: 1.5px;
    }
    
    .neon-click-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 1rem auto 1.2rem auto;
        width: 80%;
        max-width: 150px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.neon-click-button:focus,
.card-button:focus {
    outline: 2px solid #00cec9;
    outline-offset: 2px;
}

.neon-click-button[aria-label],
.card-button[aria-label] {
    position: relative;
}

/* ===== TOUCH IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
    .card-option:hover .card-back {
        opacity: 0;
    }
    
    .card-option:active .card-back {
        opacity: 1;
        transform: translateZ(20px);
    }
    
    .neon-click-button,
    .card-button {
        min-height: 48px;
        padding: 14px 20px;
    }
}

/* Card hover effects */
.card-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
    border-color: rgba(0, 206, 201, 0.6);
}
    
    /* Mobile touch effects */
    .card-option:active .card-inner {
        transform: rotateY(5deg) rotateX(5deg) scale(1.02);
    }
    
    .card-option:active .card-back {
        opacity: 1;
        transform: translateZ(20px);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cards-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-option {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* Dynamic Form Styles */
.form-section {
    margin-top: 80px;
    padding: 4rem 0;
    min-height: calc(100vh - 80px);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

.selected-card-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.3);
}

.card-display-image {
    margin-bottom: 1.5rem;
}

.card-display-image img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(108, 92, 231, 0.5);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    filter: drop-shadow(0 0 15px rgba(0, 206, 201, 0.4));
}

.card-icon-display {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(108, 92, 231, 0.6));
}

.selected-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00cec9;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 206, 201, 0.6);
}

.selected-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.selected-card-price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, 
        #ff0080, /* Pink */
        #ff4000, /* Orange-Red */
        #ffff00, /* Yellow */
        #00ff80, /* Green */
        #0080ff, /* Blue */
        #8000ff, /* Purple */
        #ff0080  /* Pink again for smooth loop */
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: multiNeonGlow 2s ease-in-out infinite alternate;
    text-shadow: 
        0 0 5px rgba(255, 0, 128, 0.5),
        0 0 10px rgba(0, 255, 127, 0.4),
        0 0 15px rgba(0, 128, 255, 0.3),
        0 0 20px rgba(108, 92, 231, 0.6);
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    color: #00cec9;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 206, 201, 0.4);
}

.field-input {
    background: rgba(20, 20, 30, 0.8);
    border: 2px solid rgba(108, 92, 231, 0.4);
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.field-input:focus {
    outline: none;
    border-color: #00cec9;
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.4);
    background: rgba(20, 20, 30, 0.9);
}

.field-input:valid {
    border-color: rgba(0, 206, 201, 0.6);
}

.payment-section {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 206, 201, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.payment-info h3 {
    font-family: 'Orbitron', monospace;
    color: #00cec9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.5);
}

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

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c5ce7;
    text-shadow: 0 0 20px rgba(108, 92, 231, 0.6);
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.pay-button {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    overflow: hidden;
}

.pay-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
}

.pay-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button-glow {
    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;
}

.pay-button:not(:disabled):hover .button-glow {
    left: 100%;
}

/* Mobile Form Styles */
@media (max-width: 768px) {
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .selected-card-title {
        font-size: 1.8rem;
    }
    
    .selected-card-description {
        font-size: 1rem;
    }
    
    .selected-card-price {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 2rem 0;
    }
    
    .form-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .card-icon-display {
        font-size: 3rem;
    }
    
    .selected-card-title {
        font-size: 1.5rem;
    }
    
    .payment-section {
        padding: 1.5rem;
    }
}

/* Enhanced Reading Card Styles */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(108, 92, 231, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.6));
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: #00cec9;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(0, 206, 201, 0.6);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reading-section {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reading-section:hover {
    border-color: rgba(0, 206, 201, 0.5);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
    transform: translateY(-2px);
}

.reading-section h3 {
    font-family: 'Orbitron', monospace;
    color: #6c5ce7;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.reading-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.reading-section strong {
    color: #00cec9;
    font-weight: 600;
}

.reading-section ul {
    list-style: none;
    padding: 0;
}

.reading-section li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.reading-section li:before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #6c5ce7;
}

.reading-section li:last-child {
    border-bottom: none;
}

.special-message {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(0, 206, 201, 0.2) 100%);
    border: 2px solid rgba(0, 206, 201, 0.4);
    position: relative;
    overflow: hidden;
}

.special-message:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.special-message h3 {
    color: #00cec9;
}

.special-message p {
    font-weight: 500;
    color: #fff;
    font-style: italic;
}

/* Action Buttons Enhancement */
#actionButtons {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(108, 92, 231, 0.4);
    backdrop-filter: blur(15px);
}

#actionButtons button {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

#actionButtons button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
}

#actionButtons button: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;
}

#actionButtons button:hover:before {
    left: 100%;
}

#downloadButton {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

#shareButton {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

#newReadingButton {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

/* Mobile Reading Card Styles */
@media (max-width: 768px) {
    .card-header {
        margin-bottom: 1.5rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .reading-section {
        padding: 1rem;
    }
    
    .reading-section h3 {
        font-size: 1.1rem;
    }
    
    .reading-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .card-content {
        gap: 1rem;
    }
    
    .reading-section {
        padding: 0.8rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    #actionButtons {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    #actionButtons button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}
