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

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f;
    color: #ededed;
    line-height: 1.5;
}

/* === MODERNÍ PRVKY (BLUR, ANIMACE) === */
.glass-panel {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glow-text {
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* === ANIMACE === */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 30px rgba(106, 13, 173, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(138, 43, 226, 0.6);
    }

    100% {
        box-shadow: 0 0 30px rgba(106, 13, 173, 0.3);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* === LAYOUT === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    background: linear-gradient(90deg, #7e22ce, #9b59b6, #7e22ce);
    background-size: 200% auto;
    color: white;
    text-align: center;
    padding: 10px 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
    overflow: hidden;
}

.announcement-bar .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shineRoll 3s infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.announcement-bar strong {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 5px;
}

/* Adjusted Navbar for Announcement Bar */
body {
    padding-top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    /* Mírně snížening */
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    /* Mírně menší */
    font-weight: 800;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo .sanity {
    background: linear-gradient(135deg, #b19cd9, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .beta {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #b19cd9;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(177, 156, 217, 0.5);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    border-color: #b19cd9;
    background: rgba(177, 156, 217, 0.1);
}

/* === SELECT INPUTS (Configs / Admin) === */
select.upload-input,
select.input-admin {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.upload-input option,
select.input-admin option {
    background: #140f19;
    color: white;
    padding: 10px;
}

/* === CUSTOM FILE UPLOAD === */
.custom-file-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px dashed rgba(138, 43, 226, 0.5);
    border-radius: 8px;
    color: #a0a0b0;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
}

.custom-file-upload:hover {
    border-color: #8a2be2;
    color: #fff;
    background: rgba(138, 43, 226, 0.1);
}

.custom-file-upload input[type="file"] {
    display: none;
}

/* === HERO === */
.hero {
    padding: 2rem 0 4rem;
    position: relative;
    /* Allow backgrounds to bleed out if needed */
}

.hero-background {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle at 70% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #a0a0b0;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(1.2) translateX(20px);
    z-index: 10;
}

.hero-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image-content .small {
    font-size: 0.8rem;
    color: #6a0dad;
    letter-spacing: 4px;
}

/* === FEATURE BADGES === */
.feature-badge {
    display: inline-block;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #b19cd9;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

/* === PRODUKTOVÉ CARDS (3 měsíčně/čtvrtletně/lifetime) === */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #b19cd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    color: #8a8a9a;
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(25, 20, 35, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.6);
    animation: pulse-glow 3s infinite;
}

.pricing-card.popular {
    border: 2px solid #8a2be2;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #b19cd9;
    margin-bottom: 0.5rem;
}

.price small {
    font-size: 1rem;
    color: #6a0dad;
    font-weight: 500;
}

.period {
    color: #6a6a80;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li::before {
    content: "✓";
    color: #8a2be2;
    font-weight: 800;
    font-size: 1.2rem;
}

.btn-card {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-card:hover {
    opacity: 0.9;
}

/* === FEATURE GRID (výhody) === */
.features-showcase {
    padding: 4rem 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-showcase-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(30, 20, 40, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-showcase-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-showcase-item h4 {
    color: #b19cd9;
    margin-bottom: 0.5rem;
}

.feature-showcase-item p {
    color: #8a8a9a;
    font-size: 0.9rem;
}

/* === JAK TO FUNGUJE (steps) === */
.steps-section {
    padding: 6rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(20, 15, 25, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(138, 43, 226, 0.15);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(138, 43, 226, 0.2);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #b19cd9;
}

.step-card p {
    color: #a0a0b0;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(106, 13, 173, 0.3) 0%, transparent 70%);
    text-align: center;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #b19cd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #a0a0b0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    color: white;
    text-decoration: none;
    padding: 1.2rem 3.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
}

/* === FOOTER === */
footer {
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-col p {
    color: #8a8a9a;
    max-width: 280px;
}

.footer-col h4 {
    color: #b19cd9;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #8a8a9a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #b19cd9;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: #6a6a80;
}

/* === RESPONSIVITA === */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.2rem;
        /* Snížení paddingu */
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        gap: 1.5rem;
    }

    .feature-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        display: flex;
        /* Navigace je zpět viditelná */
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 1rem;
        overflow: hidden;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero p {
        margin: 0 auto 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .hero-image {
        transform: none !important;
        margin: 2rem 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none !important;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px) !important;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1rem 0.8rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.3rem;
    }

    .logo img {
        height: 40px !important;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .nav-right .btn-outline-light {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .feature-showcase-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col p {
        margin-left: auto;
        margin-right: auto;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1.2rem;
    }

    .discord-section .glass-panel {
        padding: 1.5rem 1rem !important;
    }

    .discord-section h2 {
        font-size: 1.8rem !important;
    }

    .discord-section iframe {
        width: 100% !important;
        max-width: 350px;
    }
}

/* === EXTRA BEAUTIFUL GLOW EFFECTS & ANIMATIONS === */

/* Text Glow Effects */
.glow-text-purple {
    background: linear-gradient(135deg, #b19cd9, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.4), 0 0 30px rgba(138, 43, 226, 0.2);
}

.glow-text-white {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Box Glow Effects */
.glow-box {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4), inset 0 0 10px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.5);
}

.glow-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glow-hover:hover {
    box-shadow: 0 0 35px rgba(138, 43, 226, 0.6), inset 0 0 15px rgba(138, 43, 226, 0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.8);
}

/* Pulse Animations */
@keyframes pulseGlowInf {
    0% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(138, 43, 226, 0.8);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    }
}

.pulse-glow-anim {
    animation: pulseGlowInf 2.5s infinite ease-in-out;
}

.pulse-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pulse-hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    pointer-events: none;
    z-index: -1;
}

.pulse-hover:hover::after {
    width: 300%;
    height: 300%;
    opacity: 1;
    transition: 0s;
}

/* Scroll Animations (triggered by JS) */
.animate-up,
.animate-down,
.animate-left,
.animate-right,
.animate-scale {
    opacity: 0;
    filter: blur(10px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up {
    transform: translateY(50px);
}

.animate-down {
    transform: translateY(-50px);
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-scale {
    transform: scale(0.8);
}

.animate-up.in-view,
.animate-down.in-view,
.animate-left.in-view,
.animate-right.in-view,
.animate-scale.in-view {
    opacity: 1;
    filter: blur(0);
    transform: translate(0) scale(1);
}

/* Ambient glow orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: orb-float 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: rgba(138, 43, 226, 0.15);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: rgba(106, 13, 173, 0.1);
    bottom: 10%;
    right: -20%;
    animation-duration: 25s;
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: rgba(147, 112, 219, 0.12);
    top: 30%;
    left: 30%;
    animation-duration: 18s;
}

.orb-4 {
    width: 45vw;
    height: 45vw;
    max-width: 550px;
    max-height: 550px;
    background: rgba(138, 43, 226, 0.1);
    top: -15%;
    right: -10%;
    animation-duration: 22s;
    animation-delay: -5s;
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, -50px) scale(0.9);
    }
}

/* Helpers */
.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-10 {
    z-index: 10;
}

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

/* === LOADER === */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0f;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    display: flex;
    align-items: center;
}

.l-sanity {
    color: #8a2be2;
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.anim-sanity {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.l-beta-wrapper {
    overflow: hidden;
    width: 0;
    white-space: nowrap;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.l-beta {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.l-bar {
    color: #fff;
    opacity: 0;
    font-weight: 300;
    font-size: 1.25em;
    position: relative;
    top: -4px;
    margin-left: 0.1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transition: opacity 0.3s;
}

.anim-bar {
    opacity: 1 !important;
}