:root {
    --bg: #0e1011;
    --text: #e9e0d4;
    --gold: #D4AF37;
    --warm: rgba(176, 141, 87, 0.85);
    --maxw: 85%;
    --ease-out: cubic-bezier(.14,.85,.2,1);
}

*{
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body{
    margin: 0;
    overflow-x: clip;
    background: var(--bg);
    color: var(--text);
    font-family: "Rubik", sans-serif;
}

body.main-loading {
    overflow: hidden;
}

.main-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: radial-gradient(ellipse at top, #1c1f22 0%, var(--bg) 58%);
    transition: opacity .45s ease, visibility .45s ease;
}

.main-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.main-loader-inner {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.main-loader-inner p {
    margin: 0;
    color: rgba(233, 224, 212, 0.88);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.main-loader-spinner {
    width: 52px;
    aspect-ratio: 1;
    border: 3px solid rgba(212, 175, 55, 0.25);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: mainLoaderSpin 0.85s linear infinite;
}

@keyframes mainLoaderSpin {
    to { transform: rotate(360deg); }
}

h1, h2, h3 {
    font-family: "Cinzel", serif;
    margin: 0;
}

p {
    font-family: "Rubik", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -------------------------
   Floating god-symbol canvas (znaky)
-------------------------- */
#main-znaky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* -------------------------
   Page wrapper
-------------------------- */
.page-wrapper {
    position: relative;
    z-index: 5;
    min-height: fit-content;
    /* margin-top: var(--nav-h); */
}

/* -------------------------
   Landing (warm gradient — unique to main page)
-------------------------- */
@keyframes cameraMove {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.03) translateY(-1%); }
}

.landing {
    position: relative;
    height: calc(100vh);
    /* margin: var(--nav-h) 0 0 0; */
    background: radial-gradient(
        ellipse 80% 90% at top center,
        #D4AF37 0%,
        #B08D57 40%,
        #4A2E1F 110%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    animation: cameraMove 30s ease-in-out infinite;
}

.obdelnik{
    width: 200px;
    height: 400px;
    background: red;
}

.clouds-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh + 4vh);
    z-index: 2;
    pointer-events: none;
    overflow-x: clip;
}

.cloud-strip {
    position: absolute;
    bottom: 8%;
    left: 0;
    display: flex;
    align-items: center;
    animation: cloudStripLoop var(--strip-duration, 30s) linear infinite;
    will-change: transform;
}

.cloud-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cloud-group img {
    display: block;
    flex-shrink: 0;
    height: auto;
}

.cloud-group img + img {
    margin-left: -20px;
}

.cloud-strip.layer-1 {
    opacity: 0.35;
    transform: scale(5);
    transform-origin: left center;
    bottom: 6%;
}

.cloud-strip.layer-2 {
    opacity: 0.25;
    transform: scale(5);
    transform-origin: left center;
    bottom: 10%;
    animation-delay: -10s;
}

.cloud-strip.layer-3 {
    opacity: 0.2;
    transform: scale(5);
    transform-origin: left center;
    bottom: 14%;
    animation-delay: -20s;
}
/* 3.6 */

@keyframes cloudStripLoop {
    from { translate: 0 0; }
    to   { translate: calc(-1 * var(--group-set-width, 1000px)) 0; }
}

.landing_nadpis_box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: var(--maxw);
    max-width: 100%;
    padding: 0 16px;
    position: relative;
    z-index: 3;
}

.landing_nadpis {
    font-family: "Cinzel Decorative", "Cinzel", serif;
    font-size: clamp(2rem, 8vw, 8rem);
    color: var(--text);
    text-align: center;
    word-break: break-word;
    hyphens: auto;
    text-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

/* -------------------------
   Intro scrolling text (unique to main page)
-------------------------- */
.intro {
    height: 300vh;
    position: relative;
    background: linear-gradient(#4A2E1F 0%, #212425 100%);
    /* background: linear-gradient(#0e1011 0%, #0e1011 100%); */
}

.text-container {
    position: sticky;
    top: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.text {
    position: absolute;
    width: 90%;
    max-width: 900px;
    font-size: clamp(1.8rem, 6vw, 5.5rem);
    color: var(--text);
    font-family: "Cinzel", serif;
    opacity: 0;
    transform: translateY(30px);
    transition: none;
    text-align: center;
    text-shadow: 0 8px 40px rgba(0,0,0,0.55);
}

/* -------------------------
   Content sections
-------------------------- */
.uvod, .bohove, .bytosti, .myty, .povesti {
    background-color: #212425;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.uvod {
    padding: 200px 0 100px 0;
}

.uvod-box, .bohove-box, .bytosti-box, .myty-box, .povesti-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--maxw);
    gap: 3rem;
    position: relative;
    z-index: 4;
}

.uvod-obrazek-box, .bohove-obrazek-box, .bytosti-obrazek-box, .povesti-obrazek-box {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.uvod-obrazek, .bytosti-obrazek, .povesti-obrazek {
    width: 100%;
    border-radius: 50%;
    box-shadow: rgba(0,0,0,0.55) 0px 10px 40px;
}

.uvod-text, .bohove-text, .bytosti-text, .myty-text, .povesti-text {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(1.2rem, 1.1vw, 1.3rem);
    color: var(--text);
}

/* -------------------------
God cards — carousel + grid toggle
--------------------------- */
.bohove-box,
.bytosti-box,
.myty-box {
    flex-direction: column;
    align-items: flex-start;
}

/* Carousel outer wrapper (arrows + viewport) */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 28px;
}

/* Viewport clips overflow for carousel sliding.
   overflow-x: clip keeps the horizontal slide constraint;
   overflow-y: visible lets hovered cards lift without being cut off. */
.carousel-viewport {
    flex: 1;
    overflow-x: clip;
    overflow-y: visible;
    min-width: 0;
}

/* The scrolling track — single row by default */
.bohove-karty {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

/* Grid mode: multiple rows, no sliding */
.bohove-karty.grid-mode {
    flex-wrap: wrap;
    transform: translateX(0) !important;
    transition: none;
    justify-content: center;
    gap: 16px;
}

/* In grid mode cards resize to fill available width responsively */
/* .bohove-karty.grid-mode .god-card {
    flex: 0 0 calc(25% - 12px);
    width: calc(25% - 12px);
} */


/* Navigation arrows */
.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.30);
    background: rgba(74,46,31,0.25);
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    user-select: none;
}

.carousel-btn:hover:not(:disabled) {
    background: rgba(212,175,55,0.20);
    border-color: rgba(212,175,55,0.55);
    transform: scale(1.08);
}

.carousel-btn:disabled {
    opacity: 0.28;
    cursor: default;
}

/* Footer: show-all toggle */
.carousel-footer {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    width: 100%;
}

.show-all-btn {
    font-family: "Cinzel", serif;
    font-size: 0.85rem;
    letter-spacing: 0.10em;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.30);
    background: rgba(74,46,31,0.18);
    color: var(--text);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.show-all-btn:hover {
    background: rgba(212,175,55,0.18);
    border-color: rgba(212,175,55,0.55);
}

/* Individual card sizing */
.god-card {
    flex: 0 0 var(--card-w, 240px);
    width: var(--card-w, 240px);
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #352A21;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}

.god-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 50px rgba(74, 46, 31, 0.50);
}

/* Totem 3D model placeholder — same fixed aspect ratio for every card */
.god-card-model {
    width: 100%;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(160deg, rgba(74,46,31,0.30) 0%, rgba(33,20,10,0.50) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.god-card-model::after {
    content: "[ totem ]";
    font-family: "Cinzel", serif;
    font-size: 0.80rem;
    letter-spacing: 0.18em;
    color: rgba(233, 224, 212, 0.20);
    pointer-events: none;
    user-select: none;
}

/* Real totem image — centred, fills the card, wood slightly darkened */
.god-card-model img {
    object-fit: contain;
    display: block;
    /* filter: brightness(0.65) saturate(2); */
    filter: sepia(80%) saturate(100%) brightness(50%) contrast(120%);
    transition: .4s;
}

.god-card:hover .god-card-model img {
    filter: sepia(80%) saturate(100%) brightness(60%) contrast(130%);
}

/* Hide placeholder text when a real totem image is present */
.god-card-model:has(img)::after {
    content: none;
}

.god-card-name {
    font-family: "Cinzel", serif;
    font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.7rem);
    padding: 18px 16px;
    margin: 0;
    letter-spacing: 0.06em;
}

/* -------------------------
Creature cards (bytosti section) — carousel + grid toggle
--------------------------- */

/* The scrolling track — single row by default */
.bytosti-karty {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

/* Grid mode: multiple rows, no sliding */
.bytosti-karty.grid-mode {
    flex-wrap: wrap;
    transform: translateX(0) !important;
    transition: none;
    justify-content: center;
    gap: 16px;
}

/* Creature card sizing */
.creature-card {
    flex: 0 0 var(--card-w, 240px);
    width: var(--card-w, 240px);
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #282F29;
    border: 1px solid rgba(122, 90, 58, 0.28);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}

.creature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 143, 106, 0.55);
    box-shadow: 0 20px 50px rgba(42, 30, 20, 0.50);
}

/* Illustration placeholder */
.creature-card-model {
    width: 100%;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(160deg, rgba(47,59,47,0.35) 0%, rgba(28,31,26,0.60) 100%);
    border-bottom: 1px solid rgba(122, 90, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.creature-card-name {
    font-family: "Cinzel", serif;
    font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.7rem);
    padding: 18px 16px;
    margin: 0;
    letter-spacing: 0.06em;
}

/* bytosti-text area same width management as bohove-text */
.bytosti-text {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(1.2rem, 1.1vw, 1.3rem);
    color: var(--text);
}

/* -------------------------
Myth cards (myty section) — carousel + grid toggle
--------------------------- */

/* The scrolling track — single row by default */
.myty-karty {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

/* Grid mode: multiple rows, no sliding */
.myty-karty.grid-mode {
    flex-wrap: wrap;
    transform: translateX(0) !important;
    transition: none;
    justify-content: center;
    gap: 16px;
}

/* Myth card sizing */
.myth-card {
    flex: 0 0 var(--card-w, 240px);
    width: var(--card-w, 240px);
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #352E1D;
    border: 1px solid rgba(200, 164, 94, 0.28);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}

.myth-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 164, 94, 0.55);
    box-shadow: 0 20px 50px rgba(74, 46, 20, 0.50);
}

/* Illustration placeholder */
.myth-card-model {
    width: 100%;
    aspect-ratio: 3 / 4;
    background:
        linear-gradient(160deg, rgba(74,58,20,0.35) 0%, rgba(31,25,10,0.60) 100%);
    border-bottom: 1px solid rgba(200, 164, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nahled-obrazek {
    max-height: 317px;
}

.myth-card-name {
    font-family: "Cinzel", serif;
    font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.7rem);
    padding: 18px 16px;
    margin: 0;
    letter-spacing: 0.06em;
}


.reveal {
    opacity: 0;
    transform: translateY(18px) scale(0.995);
    filter: blur(10px);
    transition:
        opacity 900ms var(--ease-out),
        transform 900ms var(--ease-out),
        filter 900ms var(--ease-out);
    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px) scale(0.995);
    filter: blur(10px);
    transition:
        opacity 900ms var(--ease-out),
        transform 900ms var(--ease-out),
        filter 900ms var(--ease-out);
    will-change: opacity, transform, filter;
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.995);
    filter: blur(10px);
    transition:
        opacity 900ms var(--ease-out),
        transform 900ms var(--ease-out),
        filter 900ms var(--ease-out);
    will-change: opacity, transform, filter;
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}


/* Tablet – improve readability */
@media (max-width: 1024px) and (min-width: 601px) {
    .nadpis {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }

    .uvod-text, .bohove-text, .bytosti-text, .myty-text, .povesti-text {
        font-size: clamp(1rem, 1.8vw, 1.2rem);
        line-height: 1.7;
    }

    .uvod, .bohove, .bytosti, .myty, .povesti {
        padding: 80px 0;
    }

    .uvod {
        padding: 120px 0 80px 0;
    }

    .uvod-box, .bohove-box, .bytosti-box, .myty-box, .povesti-box {
        gap: 2rem;
        width: 90%;
    }
}

@media (max-width: 950px) {
    .uvod-box, .bytosti-box, .myty-box {
        flex-direction: column;
        align-items: center;
    }

    .bohove-box, .povesti-box {
        flex-direction: column;
        align-items: center;
    }

    .uvod-obrazek-box, .uvod-text,
    .bytosti-obrazek-box, .bytosti-text,
    .povesti-obrazek-box, .povesti-text {
        width: 90%;
    }

    .bohove-karty {
        gap: 16px;
    }

    .bytosti-karty {
        gap: 16px;
    }

    .myty-karty {
        gap: 16px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .bohove-text,
    .bytosti-text,
    .myty-text {
        width: 90%;
    }

    .uvod, .bohove, .bytosti, .myty, .povesti {
        padding: 60px 0;
    }

    .uvod {
        padding: 100px 0 60px 0;
    }

    .uvod-box, .bohove-box, .bytosti-box, .myty-box, .povesti-box {
        width: 92%;
    }
}

@media (max-width: 560px) {
    .carousel-container{
        margin: 0;
    }

    .bohove-karty {
        gap: 24px !important;
    }

    .bytosti-karty {
        gap: 24px !important;
    }

    .myty-karty {
        gap: 24px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* -------------------------
NAVBAR CUSTOM
------------------------- */
.navbar {
    background-color: rgba(139, 106, 62, 1);
}

.navbar.scrolled {
    background-color: rgba(139, 106, 62, 0.75);
}

.navbar.scrolledMore {
    background-color: rgba(115, 137, 146, 0.75);
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #D4AF37;
}

.nav-links.hamburgerScrolledMore a:hover {
    background-color: #30364F;
}

@media (max-width: 1100px) {
    .nav-links {
        background-color: rgba(139, 106, 62, 0.95);
    }

    .nav-links.hamburgerScrolledMore {
        background-color: rgba(115, 137, 146, 0.95);
        transition: background-color 0.3s ease;
    }

    .nav-links.hamburgerScrolledMore a:hover {
        background-color: #30364F;
    }
}

/* -------------------------
CONTACT CUSTOM
-------------------------- */
.kontakty{
    background: radial-gradient(ellipse 80% 80% at bottom center, #B08D57 0%, #4A2E1F 55%, #212425 110%);
    color: var(--text);
}

.kontakty-dotaznik textarea{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgb(233,224,212);
    color: #121416;
}

.kontakty-dotaznik textarea:focus{
    box-shadow: 0 0 0 6px rgba(147,197,253,0.16);
}

.kontakty-dotaznik button{
    background: #c9a44c;
    color: #000;
}

.kontakty-dotaznik button:hover{
    background: #e6c46a;
}

.form-status{
    color: rgba(147,197,253,0.85);
}

.ornament-frame {
    border: 1px solid rgba(212,175,55,0.25);
    background: rgba(0, 0, 0, 0.35);
}

.ornament-frame::before,
.ornament-frame::after {
    border: 1px solid rgba(212,175,55,0.4);
}

.ornament-frame {
    animation: goldBorderFlow 4.5s linear infinite;
}

/* -------------------------
   Sound widget (button + volume panel)
   Appears (bottom-right) once .uvod scrolls into view
-------------------------- */

/* ---- Outer wrapper — owns the fixed position ---- */
.sound-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition:
        opacity 0.45s var(--ease-out),
        transform 0.45s var(--ease-out);
}

.sound-widget.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* ---- Volume panel (visible on hover / focus-within) ---- */
.volume-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px) scale(0.92);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.sound-widget:hover .volume-panel,
.sound-widget:focus-within .volume-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* ---- Vertical range slider ---- */
.volume-range {
    writing-mode: vertical-lr;
    direction: rtl;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 100px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    margin: 0;
}

/* WebKit track — height sets the visual horizontal thickness of the vertical bar */
.volume-range::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 4px;
}

/* WebKit thumb — margin-top centers it on the 4px track: -(14-4)/2 = -5px */
.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.55);
    cursor: pointer;
    margin-top: -5px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.volume-range::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Firefox track */
.volume-range::-moz-range-track {
    width: 4px;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 4px;
}

/* Firefox thumb */
.volume-range::-moz-range-thumb {
    border: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.55);
    cursor: pointer;
}

/* ---- Toggle button ---- */
.sound-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(14, 16, 17, 0.78);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.sound-btn:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.55);
    transform: scale(1.1);
}

.sound-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--text);
    pointer-events: none;
    flex-shrink: 0;
}

@keyframes goldBorderFlow {
    0% {
        box-shadow:
            0 0 10px rgba(212, 175, 55, 0.2),
            inset 0 0 10px rgba(212, 175, 55, 0.15);
    }
    50% {
        box-shadow:
            0 0 20px rgba(212, 175, 55, 0.45),
            inset 0 0 15px rgba(212, 175, 55, 0.3);
    }
    100% {
        box-shadow:
            0 0 10px rgba(212, 175, 55, 0.2),
            inset 0 0 10px rgba(212, 175, 55, 0.15);
    }
}
