/* Lore Page - Purple & Green Only, No Scrolling */

body {
    overflow: hidden;
    height: 100vh;
    background: #000000;
}

.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.nav-back {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 20px;
}

.nav-back:hover {
    border-color: var(--chaos-purple);
    background: rgba(157, 78, 221, 0.2);
    transform: translateX(-5px);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--chaos-purple);
    letter-spacing: 0.3rem;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5), 0 0 20px rgba(0, 255, 0, 0.3);
}

.lore-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 80px 3rem 1.5rem;
    box-sizing: border-box;
}

.lore-header {
    text-align: center;
    padding: 0.5rem 0;
    flex-shrink: 0;
}

.lore-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.8rem;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.8), 0 0 60px rgba(0, 255, 0, 0.4);
}

.lore-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 255, 0, 0.8);
    letter-spacing: 0.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.lore-cards-row {
    display: flex;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.lore-cards-row .lore-card {
    flex: 1;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.lore-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-shrink: 0;
}

.lore-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.8rem 1.5rem;
    text-align: center;
}

.lore-card h2 {
    font-size: 1.2rem;
    color: #00ff00;
    margin-bottom: 0.6rem;
    letter-spacing: 0.15rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.lore-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.lore-card span {
    display: block;
    text-align: center;
    color: var(--chaos-purple);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

/* Featured quote */
.featured-quote {
    background: transparent;
    border-left: 3px solid var(--chaos-purple);
    border-right: 3px solid #00ff00;
    padding: 1rem 2rem;
}

.featured-quote p {
    font-size: 1.1rem;
    color: var(--text-white);
    font-style: italic;
}

/* Prophecy card */
.prophecy-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3) !important;
    border-radius: 15px !important;
    padding: 0.8rem 1.5rem !important;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.15), inset 0 0 30px rgba(0, 255, 0, 0.05);
    margin: 0 auto;
    max-width: 600px;
}

.prophecy-card strong {
    display: block;
    font-size: 1.3rem;
    color: #00ff00;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    letter-spacing: 0.2rem;
}

.prophecy-card p {
    color: var(--text-white);
    font-size: 1rem;
    font-style: italic;
}

/* Final quote */
.final-quote {
    border-left: 3px solid #00ff00;
    border-right: 3px solid var(--chaos-purple);
    padding: 0.8rem 2rem;
}

.final-quote p {
    font-size: 1rem;
    color: var(--text-white);
    font-style: italic;
}

.page-footer {
    flex-shrink: 0;
    text-align: center;
    padding: 0.8rem 0;
}

.next-page {
    color: var(--chaos-purple);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s ease;
    padding: 0.6rem 2rem;
    border: 1px solid rgba(157, 78, 221, 0.4);
    border-radius: 25px;
    background: rgba(157, 78, 221, 0.1);
}

.next-page:hover {
    background: rgba(157, 78, 221, 0.25);
    border-color: var(--chaos-purple);
    color: #00ff00;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.copy-btn {
    background: var(--chaos-purple);
    color: var(--text-white);
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-top: 0.5rem;
}

.copy-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Responsive adjustments */
@media (max-height: 800px) {
    .lore-title {
        font-size: 2.5rem;
    }
    
    .lore-card p {
        font-size: 0.9rem;
    }
    
    .featured-quote p, .final-quote p {
        font-size: 1rem;
    }
}
