/* Celestial Color Scheme */
:root {
    --bg-cosmic: #0f0f23;
    --text-radiant: #fefce8;
    --gold-celestial: #fbbf24;
    --purple-mystical: #a855f7;
    --blue-celestial: #3b82f6;
    --green-celestial: #22c55e;
    --red-celestial: #ef4444;
}

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

body {
    background: var(--bg-cosmic);
    color: var(--text-radiant);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 80%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(odd) { animation-delay: 1s; }
.star:nth-child(3n) { animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Ethereal Effects */
.ethereal-glow {
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    box-shadow: 
        0 0 60px rgba(251, 191, 36, 0.3),
        0 0 100px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(1px);
}

.luminescent-text {
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.celestial-border {
    border: 1px solid rgba(251, 191, 36, 0.4);
    box-shadow: 
        0 0 30px rgba(251, 191, 36, 0.2),
        0 0 60px rgba(168, 85, 247, 0.15),
        inset 0 0 20px rgba(251, 191, 36, 0.05);
}

.ethereal-pulse {
    animation: ethereal-pulse 4s ease-in-out infinite;
}

@keyframes ethereal-pulse {
    0%, 100% { 
        opacity: 0.9; 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
    }
    50% { 
        opacity: 1; 
        transform: scale(1.03); 
        filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.7));
    }
}

.celestial-float {
    animation: celestial-float 6s ease-in-out infinite;
}

@keyframes celestial-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

.divine-aura {
    position: relative;
    overflow: hidden;
}

.divine-aura::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(251, 191, 36, 0.1),
        transparent,
        rgba(168, 85, 247, 0.1),
        transparent
    );
    animation: divine-rotation 20s linear infinite;
    z-index: -1;
}

@keyframes divine-rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sacred-geometry {
    position: relative;
}

.sacred-geometry::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sacred-spin 15s linear infinite;
}

@keyframes sacred-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-title {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-sparkle {
    color: var(--gold-celestial);
    font-size: 20px;
    animation: celestial-float 6s ease-in-out infinite;
}

.nav-disclaimer {
    color: var(--gold-celestial);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-disclaimer:hover {
    background: rgba(251, 191, 36, 0.1);
}

/* Hero Section */
.hero-section {
    padding-top: 96px;
    padding-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(251, 191, 36, 0.1),
        transparent,
        rgba(168, 85, 247, 0.1),
        transparent
    );
    animation: divine-rotation 20s linear infinite;
    z-index: -1;
}

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

.hero-logo-container {
    margin-bottom: 32px;
    position: relative;
}

.hero-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    animation: ethereal-pulse 4s ease-in-out infinite;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    box-shadow: 
        0 0 60px rgba(251, 191, 36, 0.3),
        0 0 100px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(251, 191, 36, 0.1);
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sacred-spin 15s linear infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
    animation: celestial-float 6s ease-in-out infinite;
}

.hero-tagline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-sparkle {
    color: var(--gold-celestial);
    font-size: 24px;
    animation: celestial-float 6s ease-in-out infinite;
}

.hero-tagline {
    font-size: 20px;
    color: rgba(254, 252, 232, 0.8);
    max-width: 768px;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-btn {
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: celestial-float 6s ease-in-out infinite;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    backdrop-filter: blur(1px);
}

.btn-youtube {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    border-color: rgba(239, 68, 68, 0.5);
}

.btn-youtube:hover {
    background: linear-gradient(to right, #b91c1c, #991b1b);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.5);
}

.btn-spotify {
    background: linear-gradient(to right, #16a34a, #15803d);
    border-color: rgba(34, 197, 94, 0.5);
}

.btn-spotify:hover {
    background: linear-gradient(to right, #15803d, #166534);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.5);
}

.btn-tiktok {
    background: linear-gradient(to right, #db2777, #9333ea, #4f46e5);
    border-color: rgba(168, 85, 247, 0.5);
}

.btn-tiktok:hover {
    background: linear-gradient(to right, #be185d, #7c3aed, #4338ca);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.5);
}

/* Sections */
.cover-section, .bio-section, .statement-section, .quote-section, .support-section {
    padding: 64px 24px;
}

.cover-container, .bio-container, .statement-container, .quote-container, .support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bio-container, .statement-container {
    max-width: 896px;
}

.quote-container, .support-container {
    max-width: 768px;
}

.cover-card, .bio-card, .statement-card, .quote-card, .support-card {
    border-radius: 12px;
    padding: 32px;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    box-shadow: 
        0 0 60px rgba(251, 191, 36, 0.3),
        0 0 100px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.cover-card {
    padding: 0;
}

.cover-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    animation: celestial-float 6s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-sparkle {
    color: var(--gold-celestial);
    font-size: 32px;
    margin-bottom: 16px;
    animation: celestial-float 6s ease-in-out infinite;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.bio-content {
    font-size: 18px;
    line-height: 1.7;
}

.bio-paragraph {
    margin-bottom: 24px;
}

.bio-paragraph:last-child {
    margin-bottom: 0;
}

.statement-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.statement-image {
    max-width: 384px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    animation: celestial-float 6s ease-in-out infinite;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    box-shadow: 
        0 0 60px rgba(251, 191, 36, 0.3),
        0 0 100px rgba(168, 85, 247, 0.2);
    display: block;
    margin: 0 auto;
}

.statement-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sacred-spin 15s linear infinite;
}

.statement-quote {
    font-size: 20px;
    font-style: italic;
    text-align: center;
    color: var(--gold-celestial);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
}

.statement-attribution {
    text-align: center;
    color: rgba(254, 252, 232, 0.7);
}

.quote-header {
    margin-bottom: 24px;
    text-align: center;
}

.quote-sparkle {
    color: var(--gold-celestial);
    font-size: 40px;
    margin-bottom: 16px;
    animation: celestial-float 6s ease-in-out infinite;
}

.quote-title {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.divine-quote {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-celestial);
    line-height: 1.6;
    text-align: center;
}

.support-header {
    text-align: center;
    margin-bottom: 24px;
}

.support-heart {
    color: var(--gold-celestial);
    font-size: 48px;
    margin-bottom: 16px;
    animation: ethereal-pulse 4s ease-in-out infinite;
}

.support-sparkle {
    color: var(--gold-celestial);
    font-size: 24px;
    margin-bottom: 16px;
    animation: celestial-float 6s ease-in-out infinite;
}

.support-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.support-description {
    font-size: 18px;
    color: rgba(254, 252, 232, 0.8);
    margin-bottom: 24px;
}

.support-btn {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(to right, #f59e0b, #d97706);
    backdrop-filter: blur(1px);
    margin: 0 auto;
}

.support-btn:hover {
    transform: scale(1.05);
}

/* Additional centering for support section */
.support-card {
    text-align: center;
}

.support-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Footer */
.footer {
    padding: 48px 24px;
    border-top: 1px solid rgba(251, 191, 36, 0.4);
    background: rgba(15, 15, 35, 0.5);
    backdrop-filter: blur(4px);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-sparkle {
    color: var(--gold-celestial);
    font-size: 20px;
    animation: celestial-float 6s ease-in-out infinite;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    animation: ethereal-pulse 4s ease-in-out infinite;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.footer-tagline {
    color: rgba(254, 252, 232, 0.8);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-link {
    color: var(--gold-celestial);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(254, 252, 232, 0.6);
}

/* Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    z-index: 100;
    overflow-y: auto;
    padding: 80px 24px 24px;
}

.disclaimer-content {
    max-width: 896px;
    margin: 0 auto;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 48px;
}

.disclaimer-shield {
    color: var(--gold-celestial);
    font-size: 64px;
    margin-bottom: 24px;
    animation: ethereal-pulse 4s ease-in-out infinite;
}

.disclaimer-sparkle {
    color: var(--gold-celestial);
    font-size: 32px;
    margin-bottom: 16px;
    animation: celestial-float 6s ease-in-out infinite;
}

.disclaimer-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
    animation: celestial-float 6s ease-in-out infinite;
}

.disclaimer-subtitle {
    font-size: 20px;
    color: rgba(254, 252, 232, 0.8);
}

.disclaimer-close {
    margin-top: 16px;
    background: var(--gold-celestial);
    color: var(--bg-cosmic);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.disclaimer-close:hover {
    background: var(--purple-mystical);
}

.disclaimer-sections {
    display: grid;
    gap: 32px;
}

.disclaimer-section {
    border-radius: 12px;
    padding: 24px;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    box-shadow: 
        0 0 60px rgba(251, 191, 36, 0.3),
        0 0 100px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.disclaimer-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24, #fefce8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.disclaimer-icon {
    color: var(--gold-celestial);
    animation: ethereal-pulse 4s ease-in-out infinite;
}

.disclaimer-section-sparkle {
    color: var(--gold-celestial);
    font-size: 20px;
    animation: celestial-float 6s ease-in-out infinite;
}

.disclaimer-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.permitted-uses, .prohibited-uses {
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.permitted-uses {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.prohibited-uses {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.uses-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.uses-title.permitted {
    color: #22c55e;
}

.uses-title.prohibited {
    color: #ef4444;
}

.uses-sparkle {
    animation: celestial-float 6s ease-in-out infinite;
}

.uses-warning {
    animation: ethereal-pulse 4s ease-in-out infinite;
}

.uses-list {
    font-size: 18px;
    line-height: 1.6;
    list-style: none;
    padding: 0;
}

.disclaimer-footer {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(59, 130, 246, 0.08)
    );
    box-shadow: 
        0 0 60px rgba(251, 191, 36, 0.3),
        0 0 100px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.disclaimer-footer-sparkle {
    color: var(--gold-celestial);
    font-size: 24px;
    margin-bottom: 16px;
    animation: celestial-float 6s ease-in-out infinite;
}

.disclaimer-footer-text {
    font-size: 14px;
    color: rgba(254, 252, 232, 0.7);
}

/* Responsive Design */
@media (min-width: 768px) {
    .social-btn {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-tagline {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-logo-container::before {
        width: 150px;
        height: 150px;
    }
    
    .social-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .disclaimer-title {
        font-size: 28px;
    }
}