/* =========================================
   TEXT CONTENT WIDGETS
   ========================================= */

.base-content-text {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.base-content-text-large {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.base-content-text-small {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.base-info-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.base-cta-desc {
    max-width: 600px;
    margin-inline: auto;
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.base-cta-desc-left {
    max-width: 600px;
    margin-inline: auto;
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    text-align: left;
}

.base-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.base-intro-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: var(--line-height-normal);
}

.base-intro-text-left {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: var(--line-height-normal);
    text-align: left;
}

.base-snow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 5;
}

.base-snow-flake {
    position: absolute;
    top: -30px;
    width: 2px;
    height: 2px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.98);
    opacity: 0.7;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation-name: base-snow-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.base-snow-flake-sway {
    animation-name: base-snow-fall-sway;
    animation-timing-function: ease-in-out;
}

.base-snow-flake-slow {
    animation-duration: 18s;
    opacity: 0.5;
}

.base-snow-weihnachtsmann {
    position: absolute;
    top: -50px;
    width: 28px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-name: base-snow-weihnachtsmann-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes base-snow-fall {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    3% {
        opacity: 0.85;
    }
    92% {
        opacity: 0.6;
    }
    100% {
        transform: translate3d(40px, 115vh, 0);
        opacity: 0;
    }
}

@keyframes base-snow-fall-sway {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    3% {
        opacity: 0.85;
    }
    25% {
        transform: translate3d(45px, 28vh, 0);
    }
    50% {
        transform: translate3d(-35px, 57vh, 0);
    }
    75% {
        transform: translate3d(40px, 85vh, 0);
    }
    92% {
        opacity: 0.6;
    }
    100% {
        transform: translate3d(-25px, 115vh, 0);
        opacity: 0;
    }
}

@keyframes base-snow-weihnachtsmann-fall {
    0% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
        opacity: 0;
    }
    2% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.85;
    }
    100% {
        transform: translate3d(60px, 120vh, 0) rotate(5deg);
        opacity: 0;
    }
}

.base-snow-geschenk {
    position: absolute;
    top: -40px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-name: base-snow-geschenk-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes base-snow-geschenk-fall {
    0% {
        transform: translate3d(0, 0, 0) rotate(-5deg);
        opacity: 0;
    }
    2% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.85;
    }
    100% {
        transform: translate3d(-50px, 120vh, 0) rotate(12deg);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .base-snow-flake,
    .base-snow-flake-sway,
    .base-snow-weihnachtsmann,
    .base-snow-geschenk {
        animation: none;
        opacity: 0.3;
    }
}

.base-content-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.base-content-footer-update {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

/* 011-ui-html.mdc Rule 006 Hover Effect requirement */
.base-highlight-gold {
    display: inline-block;
    position: relative;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-position;
    background-size: 200% auto;
    font-weight: var(--font-weight-bold);
}

.base-highlight-gold:hover {
    background-position: right center;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.base-highlight-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.base-highlight-gold:hover::after {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .base-highlight-gold {
        transition: none;
    }

    .base-highlight-gold:hover {
        background-position: left center;
        text-shadow: none;
    }

    .base-highlight-gold::after {
        display: none;
    }
}