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

:root {
    --gray-0: #0E0E0E;
    --gray-1: #1A1A1A;
    --gray-2: #2A2A2A;
    --gray-3: #3C3C3C;
    --gray-4: #5E5E5E;
    --gray-5: #C8C8C8;
    --gray-6: #E8E8E8;
    --accent: #00B7FF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-5);
    background: var(--gray-0);
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

a:hover {
    border-bottom-color: var(--gray-5);
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header */
header {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-3);
    background: var(--gray-0);
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--gray-6);
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    border: none;
    color: var(--gray-5);
    transition: color 0.2s ease-in-out;
}

nav a:hover {
    color: var(--gray-6);
    opacity: 1;
}

.cta-button {
    padding: 8px 20px;
    border: 1px solid var(--gray-5) !important;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.cta-button:hover {
    background: var(--gray-5);
    color: var(--gray-0);
    border-color: var(--gray-5) !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--gray-6);
}

.hero .subtitle {
    font-size: 20px;
    color: var(--gray-4);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.primary-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gray-6);
    color: var(--gray-0);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid var(--gray-6);
    transition: all 0.2s ease-in-out;
}

.primary-button:hover {
    background: var(--gray-1);
    color: var(--gray-6);
    border-color: var(--gray-6);
    border-bottom-color: var(--gray-6);
}

.hero-visual {
    margin-top: 80px;
}

/* Placeholder Styles */
.placeholder-video,
.placeholder-screenshot,
.placeholder-large {
    background: var(--gray-1);
    border: 2px dashed var(--gray-3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--gray-4);
    transition: background 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.placeholder-video:hover,
.placeholder-screenshot:hover,
.placeholder-large:hover {
    background: var(--gray-2);
    border-color: var(--gray-4);
}

.placeholder-video {
    min-height: 600px;
    max-width: 900px;
    margin: 0 auto;
}

.placeholder-screenshot {
    min-height: 500px;
}

.placeholder-large {
    min-height: 650px;
    aspect-ratio: 9 / 19.5;
}

.placeholder-video span,
.placeholder-screenshot span,
.placeholder-large span {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-5);
}

.placeholder-video p,
.placeholder-screenshot p,
.placeholder-large p {
    font-size: 14px;
    color: var(--gray-4);
}

/* Screenshot Styles */
.hero-screenshot,
.feature-screenshot,
.showcase-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-screenshot {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.feature-screenshot {
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
}

.showcase-screenshot {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    padding: 120px 0;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 160px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature.reverse .feature-content {
    order: 2;
}

.feature.reverse .feature-visual {
    order: 1;
}

.feature h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--gray-6);
}

.feature p {
    font-size: 18px;
    color: var(--gray-4);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.feature ul li {
    font-size: 16px;
    color: var(--gray-5);
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.feature ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gray-4);
}

@media (max-width: 968px) {
    .feature,
    .feature.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
    }

    .feature.reverse .feature-content {
        order: 1;
    }

    .feature.reverse .feature-visual {
        order: 2;
    }
}

/* Showcase Section (Blloc-inspired) */
.showcase {
    padding: 120px 0;
    background: #0a0a0a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.showcase h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
    color: #e0e0e0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.showcase-item {
    text-align: center;
}

.showcase-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.showcase-item p {
    font-size: 16px;
    color: #999;
}

@media (max-width: 968px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .placeholder-large {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    text-align: center;
}

.philosophy h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    color: #e0e0e0;
}

.philosophy p {
    font-size: 20px;
    color: #999;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Download Section */
.download {
    padding: 120px 0;
    text-align: center;
    background: #000;
    color: #e0e0e0;
}

.download h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #e0e0e0;
}

.download p {
    font-size: 18px;
    color: #999;
    margin-bottom: 40px;
}

.download .primary-button {
    background: #e0e0e0;
    color: #000;
    border-color: #e0e0e0;
}

.download .primary-button:hover {
    background: transparent;
    color: #e0e0e0;
}

.version-info {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left p {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-right a {
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .feature h2,
    .showcase h2,
    .philosophy h2,
    .download h2 {
        font-size: 32px;
    }

    nav {
        gap: 20px;
    }
}

/* Privacy Policy */
.privacy-policy {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: var(--gray-6);
}

.last-updated {
    font-size: 14px;
    color: var(--gray-4);
    margin-bottom: 60px;
}

.policy-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--gray-6);
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--gray-5);
}

.policy-content p {
    font-size: 16px;
    color: var(--gray-4);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-content ul li {
    font-size: 16px;
    color: var(--gray-4);
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-content ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--gray-5);
}

.policy-content a {
    color: var(--gray-5);
    border-bottom: 1px solid var(--gray-4);
}

.policy-content a:hover {
    color: var(--gray-6);
    border-bottom-color: var(--gray-6);
}

.policy-content strong {
    color: var(--gray-5);
    font-weight: 600;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Early Access Banner */
.early-access-banner {
    background: linear-gradient(135deg, var(--gray-6) 0%, var(--gray-5) 100%);
    color: var(--gray-0);
    padding: 16px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-4);
}

.early-access-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.banner-badge {
    background: var(--gray-0);
    color: var(--gray-6);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.banner-text {
    margin: 0;
    font-size: 15px;
    color: var(--gray-0);
}

.banner-link {
    color: var(--gray-0);
    text-decoration: underline;
    font-weight: 600;
}

.banner-link:hover {
    color: var(--gray-2);
}

/* Disabled Button Styles */
.primary-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-4);
    color: var(--gray-2);
    border: 2px solid var(--gray-3);
}

.primary-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--gray-4);
    color: var(--gray-2);
}

/* ============================================
   SALVATION MODE - Early Christian Art Theme
   ============================================ */

/* Byzantine font */
@font-face {
    font-family: 'Byzantine Normal';
    src: url('assets/Byzantine Normal/Byzantine Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Salvation mode button */
.salvation-button {
    background: transparent;
    border: 1px solid var(--gray-5);
    color: var(--gray-5);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-left: 20px;
}

.salvation-button:hover {
    background: var(--gray-5);
    color: var(--gray-0);
    transform: translateY(-1px);
}

/* Base salvation mode styles */
.salvation-mode {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text y="20" font-size="20">✝</text></svg>') 12 12, auto !important;
    transition: all 0.6s ease-in-out;
}

.salvation-mode * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text y="20" font-size="20">✝</text></svg>') 12 12, auto !important;
}

/* Background - aged parchment */
.salvation-mode {
    background: linear-gradient(135deg, #f4e4c1 0%, #e8d5b7 50%, #dcc9a8 100%);
    background-attachment: fixed;
}

.salvation-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

/* Header - ornate gold */
.salvation-mode header {
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    border-bottom: 3px solid #8b6914;
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.4);
    position: relative;
}

.salvation-mode header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: url('assets/manuscript_decoration.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: sepia(0.7) brightness(1.3);
    pointer-events: none;
}

.salvation-mode .logo {
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    color: #4a2511;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
    position: relative;
}

.salvation-mode .logo::before {
    content: '☩ ';
    color: #8b6914;
    margin-right: 8px;
}

.salvation-mode nav a,
.salvation-mode .salvation-button {
    color: #4a2511;
    border-color: #8b6914;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    font-weight: 600;
}

.salvation-mode nav a:hover,
.salvation-mode .cta-button:hover {
    background: #4a2511;
    color: #d4af37;
    border-color: #4a2511;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.salvation-mode .salvation-button {
    background: #8b6914;
    color: #f4e4c1;
    border: 2px solid #4a2511;
}

.salvation-mode .salvation-button:hover {
    background: #4a2511;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* Hero section - heavenly glow */
.salvation-mode .hero {
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    position: relative;
}

.salvation-mode .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 500px;
    background-image: url('assets/john_ascetic_portrait.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.15;
    filter: sepia(0.3) brightness(1.1);
    pointer-events: none;
    z-index: 0;
}

.salvation-mode .hero .container {
    position: relative;
    z-index: 2;
}

.salvation-mode .hero h1 {
    color: #4a2511;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.salvation-mode .hero .subtitle {
    color: #6b4423;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    font-style: italic;
}

/* Primary buttons - blessed gold */
.salvation-mode .primary-button {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #4a2511;
    border: 3px solid #8b6914;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.salvation-mode .primary-button:hover {
    background: linear-gradient(135deg, #ffcc00 0%, #d4af37 100%);
    color: #2a1508;
    border-color: #6b4423;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* Screenshots - halos and ornate frames */
.salvation-mode .hero-screenshot,
.salvation-mode .feature-screenshot,
.salvation-mode .showcase-screenshot {
    border: 4px solid #8b6914;
    border-radius: 8px;
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
}

.salvation-mode .hero-screenshot::before,
.salvation-mode .feature-screenshot::before,
.salvation-mode .showcase-screenshot::before {
    content: '✦';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Features section - illuminated manuscript */
.salvation-mode .features {
    background: rgba(244, 228, 193, 0.5);
    position: relative;
}

.salvation-mode .features::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url('assets/manuscript_decoration.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    filter: sepia(0.5);
    pointer-events: none;
}

.salvation-mode .feature {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.salvation-mode .feature::before {
    content: '✦ ✦ ✦';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 10px;
    z-index: 2;
}

.salvation-mode .feature::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-image: url('assets/manuscript_decoration.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: sepia(0.6) brightness(1.2);
    pointer-events: none;
    z-index: 1;
}

.salvation-mode .feature h2 {
    color: #4a2511;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.salvation-mode .feature p,
.salvation-mode .feature li {
    color: #5a3621;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
}

.salvation-mode .feature ul li::before {
    content: "☩";
    color: #d4af37;
}

/* Cards - blessed containers */
.salvation-mode .hero-screenshot,
.salvation-mode .feature-screenshot,
.salvation-mode .showcase-screenshot {
    background: rgba(255, 255, 255, 0.1);
}

/* Showcase section - heavenly realm */
.salvation-mode .showcase {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 148, 31, 0.1) 100%);
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.salvation-mode .showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: url('assets/manuscript_decoration.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    filter: sepia(0.5);
    pointer-events: none;
}

.salvation-mode .showcase::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url('assets/manuscript_decoration.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    filter: sepia(0.5);
    transform: scaleX(-1);
    pointer-events: none;
}

.salvation-mode .showcase h2 {
    color: #4a2511;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    position: relative;
    z-index: 1;
}

.salvation-mode .showcase-item h3 {
    color: #6b4423;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.salvation-mode .showcase-item p {
    color: #5a3621;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
}

/* Philosophy section - divine wisdom */
.salvation-mode .philosophy {
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.salvation-mode .philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/religious_scene.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: sepia(0.5) blur(2px) brightness(1.1);
    pointer-events: none;
    z-index: 0;
}

.salvation-mode .philosophy::after {
    content: '☩';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    color: rgba(212, 175, 55, 0.3);
    z-index: 0;
}

.salvation-mode .philosophy h2 {
    color: #4a2511;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    position: relative;
    z-index: 1;
}

.salvation-mode .philosophy p {
    color: #5a3621;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

/* Download section - call to salvation */
.salvation-mode .download {
    background: linear-gradient(180deg, #8b6914 0%, #6b4423 100%);
    border-top: 4px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.salvation-mode .download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/religious_scene.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: sepia(0.8) brightness(0.7);
    pointer-events: none;
}

.salvation-mode .download .container {
    position: relative;
    z-index: 1;
}

.salvation-mode .download h2 {
    color: #f4e4c1;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.salvation-mode .download p {
    color: #e8d5b7;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
}

.salvation-mode .version-info {
    color: #c4a574;
}

/* Footer - sanctified ground */
.salvation-mode footer {
    background: #4a2511;
    border-top: 3px solid #d4af37;
}

.salvation-mode footer p,
.salvation-mode footer a {
    color: #d4af37;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
}

.salvation-mode footer a:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

/* Text selection - holy highlight */
.salvation-mode ::selection {
    background: rgba(212, 175, 55, 0.4);
    color: #4a2511;
}

/* Scrollbar - golden path */
.salvation-mode::-webkit-scrollbar {
    width: 12px;
}

.salvation-mode::-webkit-scrollbar-track {
    background: #e8d5b7;
}

.salvation-mode::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37 0%, #8b6914 100%);
    border-radius: 6px;
    border: 2px solid #e8d5b7;
}

.salvation-mode::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffcc00 0%, #d4af37 100%);
}

/* Early Access Banner - Salvation Mode */
.salvation-mode .early-access-banner {
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
    border-bottom: 2px solid #d4af37;
}

.salvation-mode .banner-badge {
    background: #d4af37;
    color: #4a2511;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.salvation-mode .banner-text {
    color: #f4e4c1;
    font-family: 'Byzantine Normal', 'Times New Roman', Times, serif;
}

.salvation-mode .banner-link {
    color: #d4af37;
    font-weight: 700;
}

.salvation-mode .banner-link:hover {
    color: #ffcc00;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

/* Disabled Button - Salvation Mode */
.salvation-mode .primary-button.disabled {
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
    color: #c4a574;
    border: 2px solid #5a3621;
    opacity: 0.6;
    cursor: not-allowed;
}

.salvation-mode .primary-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #8b6914 0%, #6b4423 100%);
}
