/* ===== MODE TRANSITION OVERLAY ===== */
.mode-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    backdrop-filter: blur(0px);
}

.mode-transition-overlay.active {
    opacity: 1;
    transform: scale(1.2);
    backdrop-filter: blur(10px);
}

/* Echo mode specific transition */
body:not(.agoge-mode) .mode-transition-overlay.active {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.6) 70%);
}

/* Hollow mode specific transition */
body.agoge-mode .mode-transition-overlay.active {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0.9) 70%);
    box-shadow: inset 0 0 100px rgba(212, 175, 55, 0.1);
}

/* ===== AGOGE MODE STYLING ===== */

/* Phoenix breathing & glow animation */
@keyframes breatheGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1));
  }
}

/* Phoenix Logo */
.phoenix-logo {
    display: none; /* hidden by default */
    max-width: 60vw;   /* scales responsively - increased by 50% from 40vw */
    height: auto;
    transition: filter 4s ease-in-out;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Hollow mode breathing glow */
body.agoge-mode .phoenix-logo {
    display: block;
    animation: breatheGlow 6s ease-in-out infinite;
}

/* Hide logo box in Hollow mode */
body.agoge-mode .nav-logo {
    opacity: 0.1;
    transition: opacity 0.5s ease;
}

body.agoge-mode .nav-logo:hover {
    opacity: 0.3;
}

body.agoge-mode .phoenix-bg {
    opacity: 0.9;
}

/* AGOGE Toggle */
.agoge-toggle-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    background: rgba(0, 0, 0, 0.9) !important;
    padding: 12px 16px !important;
    border-radius: 25px !important;
    border: 2px solid #d4af37 !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.agoge-toggle-container:hover {
    background: rgba(0, 0, 0, 0.95) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6) !important;
}

.agoge-toggle {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    color: #d4af37 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.agoge-toggle:hover {
    color: #d4af37 !important;
}

.agoge-toggle input {
    display: none !important;
}

.toggle-slider {
    width: 36px !important;
    height: 18px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid #d4af37 !important;
    border-radius: 9px !important;
    margin-right: 10px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
}

.toggle-slider::before {
    content: '' !important;
    position: absolute !important;
    width: 14px !important;
    height: 14px !important;
    background: rgba(212, 175, 55, 0.8) !important;
    border-radius: 50% !important;
    top: 1px !important;
    left: 1px !important;
    transition: all 0.3s ease !important;
}

.agoge-toggle input:checked + .toggle-slider {
    background: rgba(212, 175, 55, 0.2) !important;
    border-color: #d4af37 !important;
}

.agoge-toggle input:checked + .toggle-slider::before {
    transform: translateX(18px) !important;
    background: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6) !important;
}

.toggle-label {
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Symbolic Overlay Elements */
.symbolic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5; /* Changed from 10 to 5 to be above content but below navigation */
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.agoge-mode .symbolic-overlay {
    opacity: 1;
}

/* Golden Spiral */
.golden-spiral {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: spiral-rotate 20s linear infinite;
}

.spiral-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.spiral-2 {
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes spiral-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Ouroboros Symbol */
.ouroboros-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: ouroboros-pulse 4s ease-in-out infinite;
}

@keyframes ouroboros-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.05); }
}

/* Laurel Wreaths */
.laurel-wreath {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: wreath-float 8s ease-in-out infinite;
}

.wreath-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.wreath-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -4s;
}

@keyframes wreath-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Geometric Unity Symbols */
.geometric-unity {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: unity-rotate 12s linear infinite;
}

.unity-1 {
    top: 30%;
    left: 20%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.unity-2 {
    bottom: 30%;
    right: 20%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -6s;
}

@keyframes unity-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* AGOGE Background Animation */
.agoge-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%),
                url('../assets/images/phoenix-logo.svg') center center no-repeat;
    background-size: cover;
    z-index: -3; /* Changed from -2 to -3 to be behind video */
    opacity: 0;
    transition: opacity 1s ease;
}

body.agoge-mode .agoge-background {
    opacity: 1;
}

body.agoge-mode .background-video {
    opacity: 0;
}

/* AGOGE Symbols */
.agoge-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.agoge-symbols .symbol {
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
    animation: symbol-float 10s ease-in-out infinite;
}

.symbol-1 { top: 15%; left: 10%; animation-delay: 0s; }
.symbol-2 { top: 25%; right: 15%; animation-delay: -2s; }
.symbol-3 { bottom: 30%; left: 20%; animation-delay: -4s; }
.symbol-4 { bottom: 20%; right: 25%; animation-delay: -6s; }
.symbol-5 { top: 50%; left: 50%; animation-delay: -8s; }

@keyframes symbol-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

/* AGOGE Particles */
.agoge-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particle-drift 20s linear infinite;
}

@keyframes particle-drift {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

/* AGOGE Mode Typography */
body.agoge-mode {
    font-family: 'Trajan Pro', serif;
}

body.agoge-mode .section-title,
body.agoge-mode .hero-title,
body.agoge-mode .nav-logo a {
    font-family: 'Trajan Pro', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

/* AGOGE Mode Color Overrides */
body.agoge-mode {
    --gold: #d4af37;
    --deep-red: #7b0000;
    --off-white: #f9f6ef;
}

body.agoge-mode .section-title {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

body.agoge-mode .hero-title .title-mantra {
    color: var(--deep-red);
    font-style: italic;
}

/* Echo Hollow Section Styling - REMOVED TO PREVENT CONFLICTS */
/* ===== ARCHIVE DROPDOWN UNIFIED STYLING ===== */
/* Consolidated styling for all Archive dropdown sections */

/* Base container for all dropdown sections */
.fragments-section, .bow-section, .singles-section {
    /* Reset all properties */
    all: unset;
    
    /* Unified box model */
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    
    /* Consistent spacing */
    margin: 0.5rem 0;
    padding: 1rem 2rem;
    
    /* Unified appearance */
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    border-left: none;
    border-right: none;
    
    /* Consistent height behavior */
    min-height: 60px;
    height: auto;
    
    /* Layout properties */
    position: relative;
    backdrop-filter: none;
    clear: both;
    float: none;
    
    /* Typography inheritance */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-align: inherit;
}

/* Header styling for all dropdown sections */
.fragments-header, .bow-header, .singles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

/* Toggle button styling for all dropdown sections */
.fragments-toggle, .bow-toggle, .singles-toggle {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.fragments-toggle:hover, .bow-toggle:hover, .singles-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.fragments-toggle.active, .bow-toggle.active, .singles-toggle.active {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.7);
}

/* Toggle icon animation */
.fragments-toggle .toggle-icon, .bow-toggle .toggle-icon, .singles-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

.fragments-toggle.active .toggle-icon, .bow-toggle.active .toggle-icon, .singles-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Content area styling for all dropdown sections */
.fragments-content, .bow-content, .singles-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Subsection title styling */
.subsection-title {
    color: #d4af37;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fragments-section, .bow-section, .singles-section {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .fragments-toggle, .bow-toggle, .singles-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

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

.echo-item {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.echo-item:hover {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.echo-date {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Trajan Pro', serif;
}

.echo-text {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.echo-hover-text {
    font-size: 0.9rem;
    color: rgba(249, 246, 239, 0.7);
    font-style: italic;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.echo-item:hover .echo-hover-text {
    opacity: 1;
    transform: translateY(0);
}

/* Temple Section Styling */
.temple-section {
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid var(--gold);
}

.temple-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.temple-symbol {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: temple-pulse 3s ease-in-out infinite;
}

@keyframes temple-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.temple-placeholder h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Trajan Pro', serif;
}

.temple-placeholder p {
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.temple-content-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.temple-content-list li {
    color: var(--off-white);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    padding-left: 2rem;
}

.temple-content-list li::before {
    content: '☤';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.temple-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    color: rgba(249, 246, 239, 0.8);
}

/* AGOGE Mode Navigation */
body.agoge-mode .nav-link {
    color: var(--gold);
    transition: all 0.3s ease;
}

body.agoge-mode .nav-link:hover {
    color: var(--off-white);
    text-shadow: 0 0 10px var(--gold);
}

.temple-link {
    opacity: 0.7;
    font-style: italic;
}

/* Loading Screen AGOGE Mode */
body.agoge-mode .loading-subtitle {
    color: var(--gold);
    font-family: 'Trajan Pro', serif;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

body.agoge-mode .loading-symbol {
    color: var(--gold);
    font-size: 2rem;
    margin-top: 1rem;
    animation: loading-symbol-rotate 3s linear infinite;
}

@keyframes loading-symbol-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for AGOGE Mode */
@media (max-width: 768px) {
    .agoge-toggle-container {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .agoge-toggle {
        font-size: 10px;
    }
    
    .toggle-slider {
        width: 35px;
        height: 18px;
    }
    
    .toggle-slider::before {
        width: 14px;
        height: 14px;
    }
    
    .agoge-toggle input:checked + .toggle-slider::before {
        transform: translateX(17px);
    }
    
    .echo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ouroboros-symbol {
        width: 200px;
        height: 200px;
    }
    
    .golden-spiral {
        width: 150px;
        height: 150px;
    }
    
    .laurel-wreath {
        width: 100px;
        height: 100px;
    }
    
    .geometric-unity {
        width: 80px;
        height: 80px;
    }
}

/* AGOGE Mode Transitions */
body.agoge-mode * {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Shimmer Effect for AGOGE Mode */
body.agoge-mode .section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.echo-item {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.echo-item:hover {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.echo-date {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Trajan Pro', serif;
}

.echo-text {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.echo-hover-text {
    font-size: 0.9rem;
    color: rgba(249, 246, 239, 0.7);
    font-style: italic;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.echo-item:hover .echo-hover-text {
    opacity: 1;
    transform: translateY(0);
}

/* Temple Section Styling */
.temple-section {
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid var(--gold);
}

.temple-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.temple-symbol {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: temple-pulse 3s ease-in-out infinite;
}

@keyframes temple-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.temple-placeholder h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Trajan Pro', serif;
}

.temple-placeholder p {
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.temple-content-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.temple-content-list li {
    color: var(--off-white);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    padding-left: 2rem;
}

.temple-content-list li::before {
    content: '☤';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.temple-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    color: rgba(249, 246, 239, 0.8);
}

/* AGOGE Mode Navigation */
body.agoge-mode .nav-link {
    color: var(--gold);
    transition: all 0.3s ease;
}

body.agoge-mode .nav-link:hover {
    color: var(--off-white);
    text-shadow: 0 0 10px var(--gold);
}

.temple-link {
    opacity: 0.7;
    font-style: italic;
}

/* Loading Screen AGOGE Mode */
body.agoge-mode .loading-subtitle {
    color: var(--gold);
    font-family: 'Trajan Pro', serif;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

body.agoge-mode .loading-symbol {
    color: var(--gold);
    font-size: 2rem;
    margin-top: 1rem;
    animation: loading-symbol-rotate 3s linear infinite;
}

@keyframes loading-symbol-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for AGOGE Mode */
@media (max-width: 768px) {
    .agoge-toggle-container {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .agoge-toggle {
        font-size: 10px;
    }
    
    .toggle-slider {
        width: 35px;
        height: 18px;
    }
    
    .toggle-slider::before {
        width: 14px;
        height: 14px;
    }
    
    .agoge-toggle input:checked + .toggle-slider::before {
        transform: translateX(17px);
    }
    
    .echo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ouroboros-symbol {
        width: 200px;
        height: 200px;
    }
    
    .golden-spiral {
        width: 150px;
        height: 150px;
    }
    
    .laurel-wreath {
        width: 100px;
        height: 100px;
    }
    
    .geometric-unity {
        width: 80px;
        height: 80px;
    }
}

/* AGOGE Mode Transitions */
body.agoge-mode * {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Shimmer Effect for AGOGE Mode */
body.agoge-mode .section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
} 
 
 
 
 