/* DESIGN SYSTEM: SHRAMJIVI CORP ULTRA-LUXURY LAUNCH */

:root {
    --bg-dark: #040406;
    --bg-pure: #000000;
    --gold-base: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8c2c;
    --gold-shadow: rgba(212, 175, 55, 0.15);
    --gold-glow-bright: rgba(243, 229, 171, 0.45);
    --white: #ffffff;
    --white-muted: #a0a2a6;
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s ease;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--font-body);
    overflow: hidden;
    user-select: none;
}

/* SCREEN SHAKE ANIMATION FOR LAUNCH IMPACT */
@keyframes shake {
    0%, 100% { transform: translate(0, 0); }
    10%, 30%, 50%, 70%, 90% { transform: translate(-4px, 2px); }
    20%, 40%, 60%, 80% { transform: translate(4px, -2px); }
}

.screen-shake {
    animation: shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
}

/* INTERACTIVE CURSOR SPOTLIGHT */
#cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.08), transparent 80%);
    transition: opacity 0.5s ease;
}

#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

/* GLASSMORPHISM BASE PANEL */
.glass-panel {
    background: rgba(6, 6, 8, 0.82);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 
                inset 0 1px 0 rgba(255, 255, 255, 0.08), 
                0 0 45px rgba(212, 175, 55, 0.06);
    position: relative;
    border-radius: 4px;
}

/* DECORATIVE CARD CORNERS (TECH-LUXURY LOOK) */
.decorative-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold-base);
    pointer-events: none;
    z-index: 5;
}
.decorative-corner.top-left { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.decorative-corner.top-right { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.decorative-corner.bottom-left { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.decorative-corner.bottom-right { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* LUXURY BRACKETED FRAMES ON SECTIONS */
.luxury-frame {
    position: absolute;
    top: 4vh;
    left: 4vw;
    right: 4vw;
    bottom: 4vh;
    border: 1px solid rgba(212, 175, 55, 0.08);
    pointer-events: none;
    z-index: 10;
}

.corner-bracket {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid var(--gold-base);
    pointer-events: none;
}
.corner-bracket.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.corner-bracket.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.corner-bracket.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.corner-bracket.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* UNLOCK OVERLAY (LUXURY INVITATION INTERFACE) */
#unlock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-pure);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.5s ease;
}

#unlock-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.luxury-border-lines {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1px dashed rgba(212, 175, 55, 0.1);
    pointer-events: none;
    animation: rotateSlow 80s linear infinite;
}

.unlock-content {
    text-align: center;
    padding: 4.5rem 3.5rem;
    max-width: 580px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
}

.invite-header {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: var(--gold-base);
    text-transform: uppercase;
}

.unlock-logo-frame {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: pulseGlow 3s ease-out infinite;
}

.unlock-logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.unlock-content h2 {
    font-size: 2.6rem;
    letter-spacing: 9px;
    font-weight: 900;
}

.experience-line {
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 14px;
    color: var(--white-muted);
    text-transform: uppercase;
}

.entry-notice {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* TYPOGRAPHY SHIMMER GOLD EFFECT */
.cinzel-gold {
    font-family: var(--font-serif);
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 40%, var(--gold-base) 70%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(212, 175, 55, 0.12);
}

/* SHRAMJIVI PREMIUM BUTTONS */
.gold-glow-btn {
    position: relative;
    padding: 1.1rem 3.2rem;
    background: transparent;
    border: 1px solid var(--gold-base);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-medium);
    border-radius: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gold-glow-btn span {
    position: relative;
    z-index: 2;
}

.gold-glow-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--gold-light) 0%, var(--gold-base) 55%, transparent 100%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    z-index: 1;
}

.gold-glow-btn:hover {
    color: var(--bg-dark);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px var(--gold-shadow);
    transform: translateY(-2px);
}

.gold-glow-btn:hover::before {
    width: 380px;
    height: 380px;
    opacity: 1;
}

.gold-glow-btn:active {
    transform: translateY(1px);
}

.gold-glow-btn.large-cta {
    padding: 1.4rem 4rem;
    font-size: 1.05rem;
    letter-spacing: 6px;
    border-radius: 30px;
    border-color: rgba(212, 175, 55, 0.35);
    background-color: rgba(5, 5, 8, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px var(--gold-shadow);
}

.gold-glow-btn.large-cta:hover {
    border-color: var(--gold-light);
    box-shadow: 0 20px 50px rgba(0,0,0,0.95), 0 0 35px var(--gold-glow-bright);
}

/* APP MANDATORY SCROLLING GRID */
#launch-app {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#launch-app::-webkit-scrollbar {
    display: none;
}

/* SECTION STRUCTURE */
.scroll-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-dark);
}

.parallax-bg {
    position: absolute;
    top: -6%;
    left: -6%;
    width: 112%;
    height: 112%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.active .parallax-bg {
    transform: scale(1.06);
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(4, 4, 6, 0.25) 0%, rgba(4, 4, 6, 0.85) 60%, rgba(4, 4, 6, 1) 100%);
    z-index: 2;
}

.final-overlay {
    background: radial-gradient(circle, rgba(4, 4, 6, 0.15) 0%, rgba(4, 4, 6, 0.9) 65%, rgba(4, 4, 6, 1) 100%);
}

.section-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2.5rem;
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* SECTION 1: HERO */
.main-hero-card {
    padding: 5rem 4rem;
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    animation: cardFloat 5s ease-in-out infinite alternate;
}

.logo-box-luxury {
    width: 110px;
    height: 110px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background-color: rgba(4, 4, 6, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.08);
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 3.8rem;
    letter-spacing: 12px;
    font-weight: 900;
    line-height: 1.15;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 14px;
    color: var(--white-muted);
    text-transform: uppercase;
}

.intro-tagline {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.5rem;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.6;
}

/* Scroll Indicators */
.scroll-down {
    position: absolute;
    bottom: -10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold-base);
    opacity: 0.7;
    transition: opacity var(--transition-medium);
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 5px;
    font-weight: 600;
}

.mouse-icon {
    width: 20px;
    height: 34px;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--gold-base);
    border-radius: 1.5px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelPulse 2s infinite;
}

/* SECTION 2: CINEMATIC VIDEO SCREEN PLAYER */
.video-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    height: 68vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.video-ambient-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 75%);
    filter: blur(50px);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 1.5s ease;
}

.video-frame-bezel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background-color: var(--bg-pure);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 
                0 0 40px rgba(212, 175, 55, 0.05);
}

#launch-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.skip-video {
    position: absolute;
    bottom: -4.5rem;
    right: 0;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    z-index: 50;
    transition: var(--transition-medium);
}

.skip-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.skip-icon {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.wave-bar {
    width: 2px;
    height: 12px;
    background-color: var(--gold-base);
    display: inline-block;
    transition: height 0.3s ease;
}

.skip-video:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

/* SECTION 3: PARTICLE CELESTIAL COUNTDOWN */
#countdown-section {
    background-color: var(--bg-pure);
}

#countdown-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.countdown-dial-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dial-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(212, 175, 55, 0.65);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    animation: rotateSlow 20s linear infinite;
}

.dial-outer-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--gold-base);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold-base);
}

.dial-glow-core {
    position: absolute;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    animation: dialPulse 2.5s ease-in-out infinite alternate;
}

.countdown-number-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 8.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

.countdown-details {
    margin-top: 1rem;
}

.countdown-heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 12px;
    color: var(--white-muted);
    margin-bottom: 0.5rem;
}

.countdown-subheading {
    font-size: 1.8rem;
    letter-spacing: 6px;
    font-weight: 600;
}

/* SECTION 4: FINAL REDIRECTION CONSOLE */
#fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.launch-console-card {
    padding: 4.5rem 3.5rem;
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.revealed-logo-container {
    margin-bottom: 1.5rem;
}

.glowing-logo-luxury {
    position: relative;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background-color: rgba(4, 4, 6, 0.85);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.rotating-medallion {
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 1px solid transparent;
    border-top-color: var(--gold-base);
    border-radius: 50%;
    animation: rotateSlow 8s linear infinite;
}

.final-brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 3;
}

.final-title {
    font-size: 2.4rem;
    letter-spacing: 9px;
    font-weight: 800;
    line-height: 1.25;
}

.final-tagline {
    font-size: 0.95rem;
    color: var(--white-muted);
    max-width: 500px;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* REDIRECTION STATUS LOADERS */
.progress-loader-container {
    width: 100%;
    max-width: 440px;
    margin-top: 1.5rem;
    display: none; /* Hidden until button click */
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.progress-loader-container.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.progress-loader-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--white-muted);
    font-family: var(--font-heading);
}

.status-indicator-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-base);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-base);
    display: inline-block;
    animation: blink 1.2s infinite;
}

.progress-bar-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* WHITE FLASH EFFECT OVERLAY */
#flash-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#flash-cover.flash-active {
    opacity: 1;
    visibility: visible;
}

/* KEYFRAMES FOR TRANSITIONS & LOOP ACTIONS */
@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

@keyframes dialPulse {
    0% { opacity: 0.5; box-shadow: 0 0 20px rgba(212, 175, 55, 0.03); }
    100% { opacity: 0.95; box-shadow: 0 0 45px rgba(212, 175, 55, 0.15); }
}

@keyframes cardFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes scrollWheelPulse {
    0% { top: 5px; opacity: 1; }
    60% { top: 18px; opacity: 0.1; }
    100% { top: 5px; opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* RESPONSIVE LAYOUT MATRIX */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 9px;
    }
    .video-container {
        width: 85%;
        height: 55vh;
    }
    .final-title {
        font-size: 2rem;
        letter-spacing: 7px;
    }
    .countdown-dial-container {
        width: 280px;
        height: 280px;
    }
    .countdown-number {
        font-size: 7.5rem;
    }
}

@media (max-width: 768px) {
    .luxury-frame {
        top: 2.5vh;
        left: 2.5vw;
        right: 2.5vw;
        bottom: 2.5vh;
    }
    .unlock-content {
        padding: 3.5rem 2.2rem;
    }
    .unlock-content h2 {
        font-size: 2.1rem;
        letter-spacing: 6px;
    }
    .main-hero-card {
        padding: 3.5rem 2rem;
    }
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 6px;
    }
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 10px;
    }
    .video-container {
        width: 90%;
        height: 45vh;
    }
    .skip-video {
        bottom: -4rem;
    }
    .countdown-dial-container {
        width: 220px;
        height: 220px;
        margin-bottom: 2rem;
    }
    .countdown-number {
        font-size: 6.5rem;
    }
    .countdown-subheading {
        font-size: 1.4rem;
    }
    .launch-console-card {
        padding: 3rem 1.8rem;
    }
    .glowing-logo-luxury {
        width: 130px;
        height: 130px;
        padding: 20px;
    }
    .final-title {
        font-size: 1.6rem;
        letter-spacing: 5px;
    }
    .final-tagline {
        font-size: 0.85rem;
    }
    .gold-glow-btn.large-cta {
        padding: 1.2rem 3.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .unlock-content h2 {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }
    .unlock-logo-frame {
        width: 100px;
        height: 100px;
    }
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 6px;
    }
    .video-container {
        width: 95%;
        height: 35vh;
    }
    .countdown-dial-container {
        width: 180px;
        height: 180px;
    }
    .countdown-number {
        font-size: 5rem;
    }
    .glowing-logo-luxury {
        width: 110px;
        height: 110px;
        padding: 16px;
    }
    .final-title {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }
}
