@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.6;
    padding-top: 80px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 2px solid #E5E5E5;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1a1a;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #DC143C;
}

.nav-link.active {
    color: #DC143C;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    height: 2px;
    background: #DC143C;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
}

/* ===== HEADERS ===== */
.header {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 3px solid #DC143C;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 18px;
    color: #677;
    font-weight: 300;
}

/* ===== HERO SECTION WITH VIDEO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.3) 0%, rgba(0, 0, 0, 0.6) 70%);
    backdrop-filter: blur(2px);
    z-index: 1;
}



/* Mouse-follow red glow */
.mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.4) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
    filter: blur(60px);
}

/* Make sure hero has position relative */
.hero {
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 24px;
    color: #FFFFFF !important;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 18px;
    color: #E5E5E5 !important;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #DC143C;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #b8102e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #DC143C;
    transform: translateY(-2px);
}

.back-button {
    display: inline-block;
    padding: 16px 40px;
    background: #DC143C;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #b8102e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.app-button {
    display: inline-block;
    background: #DC143C;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 20px auto;
    text-align: center;
}

.app-button:hover {
    background: #b8102e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.button-container {
    text-align: center;
    margin: 30px 0;
}

/* ===== CONTAINER & SECTIONS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #DC143C;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: #677;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-left: 4px solid #DC143C;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.section:hover {
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.description {
    font-size: 18px;
    color: #677;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: #F8F8F8;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    border-color: #DC143C;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.mission-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
    padding: 100px 20px;
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: #DC143C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #FFFFFF;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-item p {
    color: #677;
    line-height: 1.7;
}

/* ===== ROLES PAGE ===== */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #677;
    line-height: 1.8;
}

.pipeline {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.role-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    text-align: center;
    border: 3px solid #DC143C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.role-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.role-subtitle {
    font-size: 1.1em;
    color: #677;
    margin-bottom: 20px;
    font-style: italic;
}

.role-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.responsibilities {
    text-align: left;
    color: #444;
    font-size: 0.95em;
    line-height: 1.8;
}

.responsibilities li {
    margin-bottom: 8px;
}

.arrow {
    font-size: 3em;
    color: #dc143c;
    align-self: center;
    animation: arrowPulse 2s infinite;
    transition: transform 0.3s ease;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.flow-diagram {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 2px solid #e0e0e0;
}

.tree {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.node {
    background: #dc143c;
    border: 2px solid #dc143c;
    border-radius: 10px;
    padding: 15px 25px;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.connector {
    width: 2px;
    height: 30px;
    background: #dc143c;
    margin: 0 auto;
}

.verse {
    text-align: center;
    color: #dc143c;
    font-size: 1.1em;
    margin-top: 40px;
    font-style: italic;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

/* ===== GAMIFICATION ===== */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    color: #677;
    line-height: 1.8;
}

.currency-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 10px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.point-card {
    background: #F8F8F8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    transition: all 0.2s ease;
}

.point-card:hover {
    border-color: #DC143C;
    background: #FFFFFF;
}

.point-value {
    color: #DC143C;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
}

.point-value.negative {
    color: #B71C1C;
}

.point-activity {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 5px;
}

.point-description {
    color: #677;
    font-size: 14px;
}

.level-progression {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.level-item {
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.05), transparent);
    border-left: 5px solid #DC143C;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.level-number {
    width: 50px;
    height: 50px;
    background: #DC143C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.level-info {
    flex: 1;
}

.level-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.level-requirement {
    color: #DC143C;
    font-weight: 600;
    font-size: 14px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.badge-card {
    background: #F8F8F8;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-card:hover {
    border-color: #DC143C;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.badge-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.badge-desc {
    font-size: 14px;
    color: #677;
}

.warning-box {
    background: linear-gradient(135deg, #FFF5F5, #FFFFFF);
    border: 2px solid #DC143C;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.warning-box h3 {
    font-size: 24px;
    color: #DC143C;
    margin-bottom: 20px;
    font-weight: 700;
}

.do-dont-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.do-box {
    background: rgba(46, 125, 50, 0.05);
    border: 2px solid #2E7D32;
    border-radius: 12px;
    padding: 25px;
}

.do-box h4 {
    color: #2E7D32;
    font-size: 20px;
    margin-bottom: 15px;
}

.dont-box {
    background: rgba(220, 20, 60, 0.05);
    border: 2px solid #DC143C;
    border-radius: 12px;
    padding: 25px;
}

.dont-box h4 {
    color: #DC143C;
    font-size: 20px;
    margin-bottom: 15px;
}

.do-box ul, .dont-box ul {
    list-style: none;
    padding: 0;
}

.do-box li, .dont-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.do-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.dont-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #DC143C;
    font-weight: bold;
}

.scripture-quote {
    background: #F8F8F8;
    border-left: 4px solid #DC143C;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
}

.scripture-quote p {
    font-style: italic;
    color: #4a4a4a;
    font-size: 18px;
    margin-bottom: 10px;
}

.scripture-ref {
    color: #DC143C;
    font-weight: 600;
}

/* ===== NOTE BOX ===== */
.note-box {
    margin-top: 20px;
    padding: 15px;
    background: #FFF5F5;
    border-left: 3px solid #DC143C;
    border-radius: 4px;
    color: #4a4a4a;
    font-size: 14px;
}

/* ===== COIN STACK 3D EFFECT ===== */
.coin-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

.coin-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coin-wrap.crucible::before {
    box-shadow: inset 0 0 40px 10px rgba(205, 133, 63, 0.6);
}

.coin-wrap.kingdom::before {
    box-shadow: inset 0 0 50px 12px rgba(255, 215, 0, 0.55);
}

.coin-wrap.talent::before {
    box-shadow: inset 0 0 45px 10px rgba(100, 100, 120, 0.6);
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.75; transform: scale(1.03); }
}

.coin-wrap:hover::before {
    animation: subtleGlow 2s ease-in-out infinite;
}

.coin {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.coin-back {
    z-index: 0;
    transform: scale(1.08);
    opacity: 0.35;
    filter: blur(10px);
}

.coin-front {
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ===== SCHEDULE PAGE ===== */
.schedules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.schedule-section {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-left: 4px solid #DC143C;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
}

.section-time {
    font-size: 16px;
    color: #DC143C;
    font-weight: 600;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.2s ease;
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table tr:hover {
    background: #FAFAFA;
}

.schedule-table td {
    padding: 20px 30px;
}

.time-cell {
    font-weight: 600;
    color: #1a1a1a;
    width: 200px;
    font-size: 15px;
}

.activity-cell {
    color: #4a4a4a;
    font-size: 15px;
}

.activity-cell strong {
    color: #1a1a1a;
}

.week-badge {
    display: inline-block;
    background: #DC143C;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.week-badge.special {
    background: #8B0000;
}

.rotation-explainer {
    background: #F8F8F8;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.rotation-explainer h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.rotation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.rotation-item {
    background: #FFFFFF;
    border: 2px solid #DC143C;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.rotation-week {
    font-size: 18px;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 5px;
}

.rotation-type {
    font-size: 14px;
    color: #4a4a4a;
}

.calendar-section {
    margin-bottom: 60px;
}

.notes {
    background: #F8F8F8;
    border-top: 1px solid #E5E5E5;
    padding: 25px 30px;
    margin-top: 60px;
}

.notes h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.notes li {
    color: #4a4a4a;
    margin: 8px 0;
    padding-left: 24px;
    position: relative;
}

.notes li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #DC143C;
    font-weight: bold;
}

/* ===== ARMORY PAGE ===== */
.install-section {
    background: #F8F8F8;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.install-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.install-section p {
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.step-card {
    background: #FFFFFF;
    border: 2px solid #DC143C;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #DC143C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.store-badge {
    height: 50px;
}

.iframe-container {
    width: 100%;
    min-height: 600px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F8F8F8;
    border-radius: 12px;
}

.iframe-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E5E5;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== COMING SOON PAGE ===== */
.coming-soon-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* ===== CTA SECTION ===== */
.final-cta {
    padding: 100px 20px;
    background: #1a1a1a;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 20px;
    color: #E5E5E5;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .scripture-quote {
    background: rgba(255, 255, 255, 0.1);
}

.final-cta .scripture-quote p {
    color: #F8F8F8;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    color: #999;
    margin-top: 60px;
}

.footer p {
    font-size: 14px;
}

/* ===== DARK MODE TOGGLE SWITCH ===== */
.theme-toggle-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle-label {
    font-size: 14px;
    color: #4a4a4a;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #E5E5E5;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid #E5E5E5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.toggle-switch:hover {
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.2);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== DARK MODE STYLES ===== */
body.dark-mode {
    background: #0a0a0a !important;
    color: #E5E5E5;
}

body.dark-mode .navbar {
    background: #1a1a1a;
    border-bottom-color: #2a2a2a;
}

body.dark-mode .nav-logo,
body.dark-mode .nav-logo-text {
    color: #E5E5E5;
}

body.dark-mode .nav-link {
    color: #999;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: #DC143C;
}

body.dark-mode .mobile-menu-toggle {
    color: #E5E5E5;
}

body.dark-mode .header,
body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
}

body.dark-mode .hero h1 {
    color: #FFFFFF !important;  /* Changed from inheriting dark mode color */
}

body.dark-mode .hero-tagline {
    color: #FFFFFF !important;  /* Changed from inheriting dark mode color */
}

body.dark-mode .hero-description {
    color: #E5E5E5 !important;  /* Keep this as is or change to #FFFFFF */
}

body.dark-mode .hero-overlay {
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.3) 0%, rgba(0, 0, 0, 0.6) 70%);
    backdrop-filter: blur(2px);
}

body.dark-mode .container {
    background: transparent;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode .section-title,
body.dark-mode .level-name,
body.dark-mode .point-activity,
body.dark-mode .badge-name,
body.dark-mode .role-title,
body.dark-mode .time-cell,
body.dark-mode .activity-cell strong {
    color: #E5E5E5 !important;
}

body.dark-mode .subtitle,
body.dark-mode .intro-section p,
body.dark-mode .point-description,
body.dark-mode .badge-desc,
body.dark-mode p,
body.dark-mode .description,
body.dark-mode .section-description,
body.dark-mode .intro-text,
body.dark-mode .role-subtitle,
body.dark-mode .role-description,
body.dark-mode .responsibilities,
body.dark-mode .activity-cell,
body.dark-mode .rotation-type,
body.dark-mode .notes li {
    color: #999 !important;
}

body.dark-mode .section,
body.dark-mode .schedule-section {
    background: #1a1a1a !important;
    border-color: #2a2a2a;
}

body.dark-mode .section:hover,
body.dark-mode .schedule-section:hover {
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
}

body.dark-mode .point-card,
body.dark-mode .badge-card {
    background: #0a0a0a !important;
    border-color: #2a2a2a;
}

body.dark-mode .point-card:hover,
body.dark-mode .badge-card:hover {
    background: #1a1a1a !important;
    border-color: #DC143C;
}

body.dark-mode .scripture-quote {
    background: #0a0a0a !important;
}

body.dark-mode .scripture-quote p {
    color: #999 !important;
}

body.dark-mode .do-box {
    background: rgba(46, 125, 50, 0.1) !important;
    border-color: #2E7D32;
}

body.dark-mode .dont-box {
    background: rgba(220, 20, 60, 0.1) !important;
    border-color: #DC143C;
}

body.dark-mode .do-box li,
body.dark-mode .dont-box li {
    color: #999;
}

body.dark-mode .warning-box {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), #1a1a1a) !important;
}

body.dark-mode .level-item {
    background: linear-gradient(90deg, rgba(220, 20, 60, 0.1), transparent) !important;
}

body.dark-mode .mission-card,
body.dark-mode .role-card,
body.dark-mode .step-card,
body.dark-mode .rotation-item,
body.dark-mode .install-section,
body.dark-mode .rotation-explainer,
body.dark-mode .notes,
body.dark-mode .flow-diagram,
body.dark-mode .verse {
    background: #1a1a1a !important;
    border-color: #2a2a2a;
}

body.dark-mode .mission-card:hover,
body.dark-mode .role-card:hover,
body.dark-mode .step-card:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

body.dark-mode .what-we-do {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

body.dark-mode .mission-section {
    background: #0a0a0a;
}

body.dark-mode .coming-soon-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
}

body.dark-mode .coming-soon-container::before,
body.dark-mode .header::before {
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
}

body.dark-mode .logo,
body.dark-mode .hero-logo {
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

body.dark-mode .theme-toggle-label {
    color: #999;
}

body.dark-mode .toggle-switch {
    background: #DC143C;
    border-color: #DC143C;
}

body.dark-mode .toggle-slider {
    transform: translateX(30px);
}

body.dark-mode .theme-toggle-container {
    background: transparent;
}

body.dark-mode .schedule-table tr:hover {
    background: #1a1a1a;
}

body.dark-mode .iframe-container {
    background: #1a1a1a;
}

body.dark-mode .iframe-wrapper {
    background: #0a0a0a;
    border-color: #2a2a2a;
}

body.dark-mode .section-header {
    background: transparent !important;
}

body.dark-mode .note-box {
    background: rgba(220, 20, 60, 0.1) !important;
    color: #999 !important;
}

body.dark-mode .note-box strong {
    color: #E5E5E5 !important;
}

body.dark-mode .btn-secondary {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

body.dark-mode .btn-secondary:hover {
    background: #FFFFFF;
    color: #DC143C;
}

/* Dark mode for inline styled elements */
body.dark-mode [style*="background: #F8F8F8"],
body.dark-mode [style*="background: #F0F0F0"],
body.dark-mode [style*="background: #FFFFFF"],
body.dark-mode [style*="background: #FFF5F5"] {
    background: #1a1a1a !important;
}

body.dark-mode [style*="color: #4a4a4a"],
body.dark-mode [style*="color: #677"],
body.dark-mode [style*="color: #333"],
body.dark-mode [style*="color: #444"] {
    color: #999 !important;
}

body.dark-mode [style*="color: #1a1a1a"] {
    color: #E5E5E5 !important;
}

body.dark-mode [style*="border: 1px solid #E5E5E5"],
body.dark-mode [style*="border: 2px solid #E5E5E5"],
body.dark-mode [style*="border-left: 3px solid #DC143C"],
body.dark-mode [style*="border-bottom: 1px solid #E5E5E5"] {
    border-color: #2a2a2a !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 2px solid #E5E5E5;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #F0F0F0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .theme-toggle-container {
        top: 15px;
        right: 70px;
    }
    
    .theme-toggle-label {
        display: none;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .final-cta h2 {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .do-dont-grid {
        grid-template-columns: 1fr;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .coin-wrap {
        width: 220px;
        height: 220px;
    }
    
    .pipeline {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .schedules-grid {
        grid-template-columns: 1fr;
    }
    
    .time-cell {
        width: auto;
        display: block;
        padding-bottom: 8px;
    }
    
    .schedule-table td {
        display: block;
        padding: 15px 20px;
    }
    
    .activity-cell {
        padding-top: 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .iframe-wrapper {
        height: calc(100vh - 70px);
    }

    body.dark-mode .nav-links {
        background: #1a1a1a;
    }
}

/* Book discussion box */
.book-discussion-box {
    color: #4a4a4a;
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-left: 3px solid #DC143C;
    border-radius: 4px;
}

body.dark-mode .book-discussion-box {
    background: #1a1a1a !important;
    color: #999 !important;
}

body.dark-mode .book-discussion-box strong {
    color: #E5E5E5 !important;
}

/* For inline styled book discussion boxes */
body.dark-mode p[style*="border-left: 3px solid #DC143C"] {
    background: #1a1a1a !important;
    color: #999 !important;
}

body.dark-mode p[style*="border-left: 3px solid #DC143C"] strong {
    color: #E5E5E5 !important;
}
/* Calendar Section Styling */
.calendar-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.calendar-section p {
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 30px;
}

.calendar-container {
    position: relative;
    padding-bottom: 600px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #E5E5E5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.calendar-note {
    color: #677;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

/* Dark Mode Calendar */
body.dark-mode .calendar-section h2 {
    color: #E5E5E5;
}

body.dark-mode .calendar-section p,
body.dark-mode .calendar-note {
    color: #999 !important;
}

body.dark-mode .calendar-container {
    background: #1a1a1a;
    border-color: #2a2a2a;
}