/* ================================
   ELEMENTAL GODS - THE GRAND STAGE
   ================================ */

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    min-height: 600px; /* Minimum height for content */
    min-width: 1000px; /* Minimum width for content */
    position: relative;
    transform-origin: top left; /* Changed to match JS transform origin */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto; /* Center the body when not scaled */
}

/* ================================
   HOME SCREEN
   ================================ */

.home-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Use viewport units to ensure full coverage */
    height: 100vh;
    background-image: url('../image/background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 1s ease-in-out;
    min-width: 1000px;
    min-height: 600px;
}

.home-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.home-title {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    animation: pulse 2s infinite;
}

.start-button {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e90ff, #123a6b);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.8);
}

.start-button:active {
    transform: scale(0.98);
}

.start-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.start-button:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Theme Variables - Dynamic */
:root {
    --theme-dark: #0b1a2b;
    --theme-primary: #1e90ff;
    --theme-secondary: #123a6b;
    --theme-accent: #ffde59;
    --theme-glow: rgba(30, 144, 255, 0.6);
}

/* ================================
   LANGUAGE SWITCHER
   ================================ */

.language-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
    border-color: var(--theme-primary);
    color: #000;
    box-shadow: 0 0 15px var(--theme-primary);
}

@media (max-width: 480px) {
    .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.3rem;
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* ================================
   GRAND STAGE LAYOUT
   ================================ */

.grand-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: radial-gradient(ellipse at center, var(--theme-dark) 0%, #000 100%);
    transition: background 1s ease;
    min-width: 1000px;
    min-height: 600px;
    margin: 0 auto; /* Center the stage */
}

/* Stage Backdrop */
.stage-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.backdrop-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.3;
}

.backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, var(--theme-glow) 0%, transparent 70%);
    filter: blur(80px);
    animation: glowPulse 4s ease-in-out infinite;
}

/* ================================
   HERO STAGE (Main Display)
   ================================ */

.hero-stage {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.stage-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    animation: stageReveal 1s ease-out;
}

@media (max-width: 768px) {
    .stage-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Hero Figure */
.hero-figure {
    flex: 0 0 45%;
    position: relative;
    animation: heroEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-figure img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    filter: drop-shadow(0 0 40px var(--theme-primary))
            drop-shadow(0 0 80px var(--theme-primary));
    animation: heroFloat 4s ease-in-out infinite;
    border-radius: 30px;
    background: radial-gradient(ellipse at center, 
                rgba(255, 255, 255, 0.05) 0%, 
                transparent 70%);
    padding: 1rem;
}

.figure-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse, var(--theme-primary) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}

/* Hero Info Panel */
.hero-info-panel {
    flex: 1;
    animation: panelSlideIn 1s ease-out;
}

.hero-rank {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--theme-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--theme-accent);
    animation: fadeInDown 0.8s ease-out;
}

.stage-hero-name {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: nameReveal 1s ease-out;
    text-shadow: 0 0 30px var(--theme-primary);
}

.stage-hero-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    animation: fadeInDown 1s ease-out 0.2s backwards;
}

/* Hero Stats Display */
.hero-stats-display {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.stat-circle {
    text-align: center;
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid var(--theme-primary);
    border-radius: 50%;
    opacity: 0.3;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--theme-accent);
    text-shadow: 0 0 20px var(--theme-accent);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.hero-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Enter Battle Button */
.enter-battle-btn {
    position: relative;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
    border: none;
    border-radius: 50px;
    color: #000;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 30px var(--theme-primary),
                0 10px 40px rgba(0, 0, 0, 0.5);
    animation: buttonPulse 2s ease-in-out infinite, fadeInUp 1s ease-out 0.5s backwards;
}

.enter-battle-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px var(--theme-primary),
                0 15px 60px rgba(0, 0, 0, 0.6);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: buttonShine 3s ease-in-out infinite;
}

/* Elemental Particles */
.elemental-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* ================================
   CARD STACK (Bottom Selection)
   ================================ */

.card-stack-container {
    position: relative;
    z-index: 10;
    padding: 1rem 2rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.stack-title {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-card-stack {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    perspective: 1000px;
}

/* Individual Stack Cards */
.stack-card {
    position: relative;
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 20, 0.9));
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform-origin: bottom center;
    backdrop-filter: blur(10px);
}

.stack-card:hover {
    transform: translateY(-20px) scale(1.1);
    z-index: 100;
    border-color: var(--theme-primary);
    box-shadow: 0 20px 60px var(--theme-glow);
}

.stack-card.active {
    transform: translateY(-30px) scale(1.15);
    border: 3px solid var(--theme-primary);
    box-shadow: 0 0 40px var(--theme-primary),
                0 30px 80px var(--theme-glow);
    z-index: 50;
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px currentColor);
    animation: cardIconFloat 3s ease-in-out infinite;
}

.card-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.stack-card:hover .card-shine,
.stack-card.active .card-shine {
    left: 150%;
}

/* Card Specific Themes */
.stack-card[data-hero="got"] { --card-color: #1e90ff; }
.stack-card[data-hero="gof"] { --card-color: #ff6b35; }
.stack-card[data-hero="gow"] { --card-color: #00bfff; }
.stack-card[data-hero="goa"] { --card-color: #c8f0ff; }
.stack-card[data-hero="gom"] { --card-color: #b87333; }
.stack-card[data-hero="goe"] { --card-color: #6a8f4e; }

.stack-card:hover,
.stack-card.active {
    border-color: var(--card-color);
    box-shadow: 0 20px 60px var(--card-color);
}

/* ================================
   DETAIL MODAL
   ================================ */

.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease-out;
}

.detail-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-content {
    max-width: 800px;
    width: 100%;
}

.modal-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--theme-accent);
}

.abilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--theme-primary);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.ability-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--theme-glow);
}

/* ================================
   RESPONSIVE MOBILE OPTIMIZATIONS
   ================================ */

/* Mobile Portrait Mode */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-stage {
        padding: 0.5rem 0.5rem;
    }
    
    .stage-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-figure {
        flex: 0 0 auto;
        max-width: 100%;
    }
    
    .hero-figure img {
        max-height: 50vh;
        max-width: 90vw;
        border-radius: 40px;
        border: 3px solid var(--theme-primary);
        box-shadow: 0 0 30px var(--theme-primary),
                    inset 0 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .hero-info-panel {
        width: 100%;
    }
    
    .hero-rank {
        font-size: 0.6rem;
    }
    
    .stage-hero-name {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1;
    }
    
    .stage-hero-title {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 1rem;
    }
    
    .hero-stats-display {
        gap: 0.8rem;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .stat-circle::before {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .enter-battle-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .card-stack-container {
        padding: 0.5rem 0.5rem 1rem;
    }
    
    .stack-title {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-card-stack {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stack-card {
        width: 70px;
        height: 95px;
    }
    
    .stack-card.active {
        transform: translateY(-15px) scale(1.1);
    }
    
    .stack-card:hover {
        transform: translateY(-10px) scale(1.05);
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-name {
        font-size: 0.7rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .abilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Landscape Mode */
@media (max-width: 932px) and (orientation: landscape) {
    .hero-stage {
        padding: 0.5rem 1rem;
    }
    
    .stage-content {
        gap: 2rem;
        max-width: 100%;
    }
    
    .hero-figure {
        flex: 0 0 40%;
    }
    
    .hero-figure img {
        max-height: 50vh;
    }
    
    .hero-rank {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .stage-hero-name {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 0.3rem;
    }
    
    .stage-hero-title {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-stats-display {
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-circle::before {
        width: 60px;
        height: 60px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .enter-battle-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .card-stack-container {
        padding: 0.5rem 1rem 0.8rem;
    }
    
    .stack-title {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-card-stack {
        gap: 0.8rem;
    }
    
    .stack-card {
        width: 90px;
        height: 120px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-name {
        font-size: 0.85rem;
    }
}

/* Tablet and Medium Screens */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-stats-display {
        gap: 1rem;
    }
    
    .stat-circle::before {
        width: 60px;
        height: 60px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
}

/* Small Landscape Screens */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-stage {
        padding: 0.5rem;
    }
    
    .stage-content {
        gap: 1.5rem;
    }
    
    .hero-figure img {
        max-height: 45vh;
    }
    
    .card-stack-container {
        padding: 0.3rem 1rem 0.5rem;
    }
    
    .stack-card {
        width: 80px;
        height: 110px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .stack-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    .enter-battle-btn {
        -webkit-tap-highlight-color: transparent;
    }
    
    .modal-close {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Remove hover effects on touch devices */
    .stack-card:hover {
        transform: none;
    }
    
    .stack-card.active {
        transform: translateY(-20px) scale(1.1);
    }
    
    .enter-battle-btn:hover {
        transform: none;
    }
    
    .enter-battle-btn:active {
        transform: scale(0.95);
    }
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes stageReveal {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateX(-100px) rotateY(-30deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes panelSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nameReveal {
    from {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 30px var(--theme-primary),
                    0 10px 40px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 50px var(--theme-primary),
                    0 10px 40px rgba(0, 0, 0, 0.5);
    }
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

@keyframes cardIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Theme-specific glow colors */
body.theme-got { --theme-glow: rgba(30, 144, 255, 0.6); }
body.theme-gof { --theme-glow: rgba(255, 107, 53, 0.6); }
body.theme-gow { --theme-glow: rgba(0, 191, 255, 0.6); }
body.theme-goa { --theme-glow: rgba(200, 240, 255, 0.6); }
body.theme-gom { --theme-glow: rgba(184, 115, 51, 0.6); }
body.theme-goe { --theme-glow: rgba(106, 143, 78, 0.6); }
