

.home-page {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 16px;
}

.home-section {
    margin-bottom: 16px;
}

.home-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 4px;
}


.daily-bonus-card {
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.daily-bonus-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.daily-bonus-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.daily-bonus-info {
    flex: 1;
}

.daily-bonus-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--color-text);
}

.daily-bonus-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
}

.daily-bonus-btn {
    padding: 12px 24px;
    min-width: 120px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transition: all 0.2s ease;
}

.daily-bonus-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

.daily-bonus-btn:disabled,
.daily-bonus-btn.disabled {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.5), rgba(96, 96, 96, 0.5));
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.daily-bonus-timer {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.drops-card {
    padding: 16px 16px 20px;
}

.drops-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.drops-title {
    font-size: 16px;
    font-weight: 600;
}

.drops-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.drops-track {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 65%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7);
}

.drops-level {
    width: 40px;
    min-width: 40px;
    height: 60px;
    border-radius: 999px;
    background: linear-gradient(180deg, #161b21, #050607);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.drops-level-value {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    transform:rotate(270deg);
}

.drops-level-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #b2ff5a, #7ac943);
    box-shadow: 0 0 10px rgba(178, 255, 90, 0.8);
}

.drops-viewport {
    position: relative;
    overflow: hidden;
    flex: 1;
    height: 60px;
}

.drops-viewport::before {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: 6px;
    height: 4px;
    background: linear-gradient(90deg, #ffed70, #ff5ddb, #9fc7ff, #92ff74, #ffed70);
    opacity: 0.9;
    filter: blur(1px);
    pointer-events: none;
}

.drops-strip {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: drops-scroll 36s linear infinite;
}

.drops-icon-item {
    flex: 0 0 auto;
}

.drops-icon-inner {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.drops-icon-inner img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    transform: translateY(4%);
}

@keyframes drops-scroll {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(-50%, -50%, 0);
    }
}


.phoenix-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.phoenix-full-image {
    display: block;
    width: 100%;
    height: auto;
}

.phoenix-timer-overlay {
    position: absolute;
    z-index: 2;
    left: 1%;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.phoenix-timer-value {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: #FDEAC7;
    letter-spacing: 0.08em;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    min-width: 6.2ch;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

.phoenix-play-overlay-btn {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: 46%;
    max-width: 220px;
    min-height: 42px;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-family: var(--font-accent);
    background: radial-gradient(circle at 10% 0, #fff3d2 0, transparent 55%),
                radial-gradient(circle at 90% 0, #ffd0a2 0, transparent 55%),
                linear-gradient(135deg, #ffb347, #ff6a00);
    color: #120908;
    box-shadow: 0 0 18px rgba(255, 120, 40, 0.9), 0 0 32px rgba(255, 180, 80, 0.7);
    border-radius: 999px;
}

.phoenix-play-overlay-btn.btn-primary:hover:not(:disabled),
.phoenix-play-overlay-btn.btn-primary:active:not(:disabled) {
    transform: translateX(-50%);
}


.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    min-height: 120px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card-gift {
    min-height: 0;
    padding: 12px 12px 8px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    aspect-ratio: 1 / 1;
}

.promo-card-gift .btn {
    min-width: 56%;
    min-height: 34px;
    padding: 8px 14px;
}

.promo-gift-btn {
    position: relative;
    z-index: 1;
    font-size: 14px;
    letter-spacing: 0.04em;
    font-family: var(--font-accent);
    background: radial-gradient(circle at 10% 0, #fff3d2 0, transparent 55%),
                radial-gradient(circle at 90% 0, #ffd0a2 0, transparent 55%),
                linear-gradient(135deg, #ffb347, #ff6a00);
    color: #120908;
    box-shadow: 0 0 14px rgba(255, 120, 40, 0.85), 0 0 24px rgba(255, 180, 80, 0.65);
    border-radius: 999px;
}

.promo-card-cap {
    background-image: url('../../assets/pages/main/cap.jpeg');
}

.promo-card-present {
    background-image: url('../../assets/pages/main/present.jpeg');
}

.promo-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background: radial-gradient(circle at top, #ffffff, transparent 65%);
}

.promo-card-content {
    position: relative;
    z-index: 1;
}

.promo-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.promo-card-subtitle {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.promo-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.promo-chip {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.3);
}

.promo-card .btn {
    padding-inline: 14px;
}


.promo-code-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 220px;
    background: url('../../assets/pages/main/promo_block.webp') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
}

.promo-code-btn {
    position: relative;
    z-index: 1;
    min-width: 44%;
    min-height: 42px;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-family: var(--font-accent);
    background: radial-gradient(circle at 10% 0, #fff3d2 0, transparent 55%),
                radial-gradient(circle at 90% 0, #ffd0a2 0, transparent 55%),
                linear-gradient(135deg, #ffb347, #ff6a00);
    color: #120908;
    box-shadow: 0 0 18px rgba(255, 120, 40, 0.9), 0 0 32px rgba(255, 180, 80, 0.7);
    border-radius: 999px;
}


.faq-section {
    margin-top: 8px;
}

.faq-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* ===================================
   MOBILE ADAPTATION FOR HOME PAGE
   =================================== */

@media (max-width: 480px) {
    .daily-bonus-card {
        padding: 14px;
    }

    .daily-bonus-icon {
        font-size: 42px;
    }

    .daily-bonus-btn {
        padding: 10px 20px;
        min-width: 110px;
        font-size: 13px;
    }

    .drops-card {
        padding: 14px 14px 18px;
    }

    .phoenix-container {
        min-height: 280px;
    }

    .phoenix-full-image {
        max-width: 100%;
    }

    .promo-code-card {
        min-height: 200px;
    }

    .promo-code-btn {
        min-width: 48%;
        min-height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .home-page {
        padding-bottom: 12px;
    }

    .home-section {
        margin-bottom: 14px;
    }

    .home-section-title {
        font-size: 16px;
    }

    .daily-bonus-card {
        padding: 12px;
    }

    .daily-bonus-content {
        gap: 12px;
    }

    .daily-bonus-icon {
        font-size: 38px;
    }

    .daily-bonus-title {
        font-size: 15px;
    }

    .daily-bonus-desc {
        font-size: 12px;
    }

    .daily-bonus-btn {
        padding: 9px 18px;
        min-width: 100px;
        font-size: 12px;
    }

    .drops-level {
        width: 36px;
        min-width: 36px;
        height: 54px;
    }

    .drops-level-value {
        font-size: 13px;
    }

    .phoenix-container {
        min-height: 260px;
    }

    .phoenix-play-overlay-btn {
        min-width: 52%;
        max-width: 240px;
        min-height: 40px;
        font-size: 15px;
        bottom: 10px;
    }

    .promo-grid {
        gap: 10px;
    }

    .promo-card {
        min-height: 110px;
        padding: 12px;
    }

    .promo-card-title {
        font-size: 14px;
    }

    .promo-card-subtitle {
        font-size: 11px;
    }

    .promo-code-card {
        min-height: 190px;
        padding: 14px;
    }

    .promo-code-btn {
        min-width: 52%;
        min-height: 38px;
        font-size: 15px;
    }

    .faq-header {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .home-section {
        margin-bottom: 12px;
    }

    .home-section-title {
        font-size: 15px;
    }

    .daily-bonus-card {
        padding: 10px;
    }

    .daily-bonus-content {
        gap: 10px;
    }

    .daily-bonus-icon {
        font-size: 34px;
    }

    .daily-bonus-title {
        font-size: 14px;
    }

    .daily-bonus-desc {
        font-size: 11px;
    }

    .daily-bonus-btn {
        padding: 8px 16px;
        min-width: 90px;
        font-size: 11px;
    }

    .drops-card {
        padding: 12px;
    }

    .drops-track {
        gap: 10px;
        padding: 6px 10px;
    }

    .drops-level {
        width: 32px;
        min-width: 32px;
        height: 48px;
    }

    .drops-level-value {
        font-size: 12px;
    }

    .phoenix-container {
        min-height: 240px;
        padding: 16px;
    }

    .phoenix-play-overlay-btn {
        min-width: 56%;
        max-width: 220px;
        font-size: 14px;
        padding: 11px 18px;
        bottom: 8px;
    }

    .promo-grid {
        gap: 8px;
    }

    .promo-card {
        min-height: 100px;
        padding: 10px;
    }

    .promo-card-title {
        font-size: 13px;
    }

    .promo-card-subtitle {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .promo-chip {
        font-size: 10px;
        padding: 3px 8px;
    }

    .promo-card .btn {
        padding-inline: 12px;
        font-size: 12px;
    }

    .promo-card-gift {
        padding: 10px 10px 6px;
    }

    .promo-gift-btn {
        font-size: 13px;
        min-width: 60%;
    }

    .promo-code-card {
        min-height: 180px;
        padding: 12px;
    }

    .promo-code-btn {
        min-width: 56%;
        min-height: 36px;
        font-size: 14px;
    }

    .faq-header {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .faq-list {
        gap: 6px;
    }
}

/* Landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    .home-section {
        margin-bottom: 12px;
    }

    .daily-bonus-icon {
        font-size: 36px;
    }

    .phoenix-container {
        min-height: 200px;
    }

    .promo-code-card {
        min-height: 180px;
    }

    .promo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .promo-card {
        min-height: 90px;
    }
}
