/* Black Lotus - Core Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Marcellus&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bl-black: #0a0a0b;
    --bl-deep-purple: #1a0b2e;
    --bl-lotus-purple: #4a1f8c;
    --bl-gold: #c5a059;
    --bl-gold-bright: #e9d1a1;
    --bl-text-ghost: #b3a9c9;
    --bl-text-gold: #d4af37;
    --bl-white: #ffffff;
    --bl-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    --bl-border: 1px solid rgba(197, 160, 89, 0.2);
}

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

body {
    background-color: var(--bl-black);
    color: var(--bl-text-ghost);
    font-family: 'Lora', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .bl-font-cinzel {
    font-family: 'Cinzel', serif;
    color: var(--bl-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Creative Background */
.bl-vision-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--bl-deep-purple) 0%, var(--bl-black) 100%);
    z-index: -2;
}

.bl-lotus-aura {
    position: fixed;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at center, rgba(74, 31, 140, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: bl-pulse 10s infinite alternate;
}

@keyframes bl-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

/* Unique Navbar */
.bl-celestial-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: var(--bl-border);
}

.bl-nav-emblem {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bl-gold-bright);
    font-family: 'Cinzel', serif;
}

.bl-nav-links {
    display: flex;
    gap: 40px;
}

.bl-nav-link {
    color: var(--bl-text-ghost);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.bl-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bl-gold);
    transition: 0.3s;
}

.bl-nav-link:hover {
    color: var(--bl-gold);
}

.bl-nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.bl-void-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.bl-hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--bl-gold);
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.bl-hero-subtitle {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    max-width: 600px;
    color: var(--bl-text-ghost);
}

.bl-summon-btn {
    margin-top: 40px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--bl-gold);
    color: var(--bl-gold);
    font-family: 'Cinzel', serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bl-summon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bl-gold);
    transition: 0.4s;
    z-index: -1;
}

.bl-summon-btn:hover {
    color: var(--bl-black);
}

.bl-summon-btn:hover::before {
    left: 0;
}

/* Sections */
.bl-temple-section {
    padding: 100px 10%;
    position: relative;
}

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

.bl-section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.bl-section-title::after {
    content: '◈';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bl-gold);
    font-size: 1rem;
}

/* Creative Cards */
.bl-lotus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bl-lotus-card {
    background: rgba(26, 11, 46, 0.4);
    border: var(--bl-border);
    padding: 40px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.bl-lotus-card:hover {
    border-color: var(--bl-gold);
    transform: translateY(-10px);
    background: rgba(26, 11, 46, 0.6);
}

.bl-card-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Theatre Section */
.bl-theatre-chamber {
    background: rgba(10, 10, 11, 0.9);
    padding: 80px 5%;
    border-top: var(--bl-border);
    border-bottom: var(--bl-border);
}

.bl-stage-frame {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--bl-gold);
    padding: 2px;
    position: relative;
    background: var(--bl-gold);
}

.bl-stage-inner {
    background: var(--bl-black);
}

/* About Section */
.bl-chronicle-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bl-chronicle-image {
    position: relative;
}

.bl-chronicle-image img {
    width: 80%;
    border-radius: 2px;
    filter: grayscale(1) sepia(0.5) contrast(1.2);
}

.bl-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--bl-gold);
    transform: translate(20px, 20px);
    z-index: -1;
}

/* Unique Footer */
.bl-foundation-footer {
    padding: 80px 10% 40px;
    background: var(--bl-black);
    border-top: var(--bl-border);
    position: relative;
}

.bl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.bl-footer-logo {
    font-size: 2rem;
    color: var(--bl-gold-bright);
    margin-bottom: 20px;
}

.bl-footer-text {
    font-size: 0.9rem;
    color: var(--bl-text-ghost);
    opacity: 0.8;
}

.bl-footer-links h4 {
    margin-bottom: 20px;
    color: var(--bl-gold);
}

.bl-footer-link {
    display: block;
    color: var(--bl-text-ghost);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.bl-footer-seals {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.bl-seal img {
    height: 40px;
    filter: grayscale(1) brightness(0.8);
    transition: 0.3s;
}

.bl-seal:hover img {
    filter: grayscale(0) brightness(1);
}

.bl-copyright {
    text-align: center;
    margin-top: 60px;
    font-size: 0.8rem;
    color: var(--bl-text-ghost);
    opacity: 0.5;
}

/* Age Portal */
.bl-portal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bl-black);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bl-portal-overlay.verified {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bl-portal-content {
    max-width: 500px;
    text-align: center;
    padding: 60px;
    border: 1px solid var(--bl-gold);
    background: rgba(26, 11, 46, 0.4);
    position: relative;
}



.bl-portal-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.bl-portal-text {
    margin-bottom: 40px;
}

.bl-portal-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bl-portal-btn {
    padding: 12px 30px;
    border: 1px solid var(--bl-gold);
    background: transparent;
    color: var(--bl-gold);
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: 0.3s;
}

.bl-portal-btn.affirm:hover {
    background: var(--bl-gold);
    color: var(--bl-black);
}

.bl-portal-btn.deny:hover {
    border-color: #666;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .bl-hero-title { font-size: 3rem; }
    .bl-chronicle-wrap { grid-template-columns: 1fr; }
    .bl-footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .bl-nav-links { display: none; }
}
