/* --- Loading Scene Styles --- */
.loading-container {
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.loading-title {
    font-family: 'DynaPuff', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff4081, #ff80ab);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff4081;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 1px;
    font-weight: 700;
}

.glow-effect {
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 128, 171, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0;
}

.premium-text-box {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 
        0 20px 50px rgba(255, 105, 180, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    max-width: 800px;
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.timer-wrapper {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border: 2px solid #fff;
}

.timer-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #f8bbd0;
    stroke-width: 2;
    opacity: 0.5;
}

.ring-progress {
    fill: none;
    stroke: #ff4081;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
}

.timer-content {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bengali-line {
    font-family: 'Galada', cursive;
    font-size: 2rem;
    color: #880e4f;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.emoji-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.text {
    flex: 1;
}

.bengali-line.highlight {
    font-size: 1.7rem;
    color: #c2185b;
    font-weight: 500;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 182, 193, 0.5);
}

@media (max-width: 768px) {
    .loading-title { font-size: 1.8rem; margin-bottom: 30px; }
    .premium-text-box { padding: 40px 30px; }
    .bengali-line { font-size: 1.5rem; gap: 10px; }
    .emoji-icon { font-size: 1.4rem; }
    .bengali-line.highlight { font-size: 1.3rem; }
    .timer-wrapper { width: 50px; height: 50px; top: -25px; right: 20px; }
    .timer-icon { font-size: 1.2rem; }
}
.loading-kicker {
    margin: 0 0 10px;
    color: #aa3f70;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(0.85rem, 1.25vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.loading-countdown {
    color: #e72d78;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .loading-kicker {
        margin-bottom: 7px;
        font-size: 0.72rem;
    }

    .loading-countdown {
        font-size: 1.05rem;
    }
}