/* ==================== Daily Free Section ==================== */
.daily-free {
    max-width: 430px;
    margin: 0 auto;
    padding: 48px 20px;
    text-align: center;
}

.daily-free__title {
    font-size: 24px;
    font-weight: 700;
    color: #f5d36c;
    margin-bottom: 8px;
}

.daily-free__subtitle {
    font-size: 14px;
    color: rgba(232, 230, 240, 0.7);
    margin-bottom: 32px;
}

.daily-free__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.daily-free__cards .daily-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.daily-card {
    background: linear-gradient(135deg, rgba(111, 92, 255, 0.1) 0%, rgba(155, 136, 255, 0.05) 100%);
    border: 1px solid rgba(111, 92, 255, 0.2);
    border-radius: 20px;
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.daily-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.daily-card:active {
    transform: scale(0.98);
}

.daily-card:hover::before {
    left: 100%;
}

.daily-card__icon {
    font-size: 48px;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

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

.daily-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #e8e6f0;
    margin-bottom: 8px;
}

.daily-card__desc {
    font-size: 13px;
    color: rgba(232, 230, 240, 0.6);
    line-height: 1.4;
    margin-bottom: 16px;
}

.daily-card__status {
    margin-top: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge--available {
    background: rgba(111, 92, 255, 0.2);
    color: #9b88ff;
}

.status-badge--used {
    background: rgba(232, 230, 240, 0.1);
    color: rgba(232, 230, 240, 0.4);
}

/* ==================== Fortune Cookie Modal ==================== */
.fortune-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.fortune-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortune-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.fortune-modal__container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b29 100%);
    border: 1px solid rgba(111, 92, 255, 0.3);
    border-radius: 24px;
    padding: 40px 24px;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fortune-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232, 230, 240, 0.1);
    color: #e8e6f0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fortune-modal__close:hover {
    background: rgba(232, 230, 240, 0.2);
}

.fortune-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortune-stage {
    width: 100%;
    text-align: center;
}

.fortune-stage--hidden {
    display: none;
}

.cookie-wrapper {
    margin-bottom: 24px;
}

.cookie {
    font-size: 120px;
    cursor: pointer;
    display: inline-block;
    animation: cookiePulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes cookiePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cookie:active {
    animation: cookieShake 0.5s ease;
}

@keyframes cookieShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.cookie.cracking {
    animation: cookieCrack 2.5s ease forwards;
}

@keyframes cookieCrack {
    0% { transform: scale(1) rotate(0deg); }
    15% { transform: scale(1.1) rotate(-5deg); }
    30% { transform: scale(1.15) rotate(5deg); }
    45% { transform: scale(1.2) rotate(-8deg); }
    60% { transform: scale(1.25) rotate(10deg); opacity: 1; }
    75% { transform: scale(0.8) rotate(90deg); opacity: 0.7; }
    100% { transform: scale(0) rotate(180deg); opacity: 0; }
}

.fortune-instruction {
    font-size: 15px;
    color: rgba(232, 230, 240, 0.7);
}

.fortune-paper {
    background: linear-gradient(135deg, #fffef0 0%, #f5f3e0 100%);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: paperUnfold 0.8s ease;
}

@keyframes paperUnfold {
    0% {
        transform: scaleY(0) rotateX(-90deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scaleY(1) rotateX(0deg);
        opacity: 1;
    }
}

.fortune-paper__content {
    font-size: 16px;
    line-height: 1.8;
    color: #2a2640;
    font-weight: 500;
    text-align: center;
}

/* ==================== Lucky Item Modal ==================== */
.lucky-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.lucky-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.lucky-modal__container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b29 100%);
    border: 1px solid rgba(111, 92, 255, 0.3);
    border-radius: 24px;
    padding: 40px 24px;
    animation: modalSlideUp 0.4s ease;
}

.lucky-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232, 230, 240, 0.1);
    color: #e8e6f0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lucky-modal__close:hover {
    background: rgba(232, 230, 240, 0.2);
}

.lucky-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-stage {
    width: 100%;
    text-align: center;
}

.lucky-stage--hidden {
    display: none;
}

.roulette-wrapper {
    margin-bottom: 32px;
}

.roulette {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: conic-gradient(
            from 0deg,
            #6f5cff 0deg 45deg,
            #9b88ff 45deg 90deg,
            #6f5cff 90deg 135deg,
            #9b88ff 135deg 180deg,
            #6f5cff 180deg 225deg,
            #9b88ff 225deg 270deg,
            #6f5cff 270deg 315deg,
            #9b88ff 315deg 360deg
    );
    box-shadow:
            0 0 20px rgba(111, 92, 255, 0.3),
            inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.roulette::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(42, 38, 64, 0.9) 0%, rgba(30, 27, 41, 0.9) 100%);
    border: 3px solid rgba(111, 92, 255, 0.5);
}

.roulette__center {
    position: relative;
    z-index: 1;
    font-size: 64px;
    filter: drop-shadow(0 0 10px rgba(245, 211, 108, 0.5));
}

.roulette-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #f5d36c;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 2;
    animation: pointerBounce 1s ease-in-out infinite;
}

@keyframes pointerBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

.roulette.spinning {
    animation: rouletteSpin 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes rouletteSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(1080deg); }
}

.lucky-spin-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #6f5cff 0%, #9b88ff 100%);
    border-radius: 28px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(111, 92, 255, 0.4);
}

.lucky-spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 92, 255, 0.6);
}

.lucky-spin-btn:active {
    transform: translateY(0);
}

.lucky-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lucky-result {
    animation: resultPop 0.6s ease;
}

@keyframes resultPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lucky-result__icon {
    font-size: 100px;
    margin-bottom: 24px;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(245, 211, 108, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(245, 211, 108, 0.8)); }
}

.lucky-result__title {
    font-size: 24px;
    font-weight: 700;
    color: #f5d36c;
    margin-bottom: 16px;
}

.lucky-result__desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(232, 230, 240, 0.8);
}

/* ==================== Lucky Number Modal ==================== */
.lucky-number-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.lucky-number-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-number-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.lucky-number-modal__container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b29 100%);
    border: 1px solid rgba(111, 92, 255, 0.3);
    border-radius: 24px;
    padding: 40px 24px;
    animation: modalSlideUp 0.4s ease;
}

.lucky-number-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232, 230, 240, 0.1);
    color: #e8e6f0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lucky-number-modal__close:hover {
    background: rgba(232, 230, 240, 0.2);
}

.lucky-number-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lucky-number-stage {
    width: 100%;
    text-align: center;
}

.lucky-number-stage--hidden {
    display: none;
}

.lucky-number-title {
    font-size: 24px;
    font-weight: 700;
    color: #f5d36c;
    margin-bottom: 8px;
}

.lucky-number-subtitle {
    font-size: 14px;
    color: rgba(232, 230, 240, 0.7);
    margin-bottom: 32px;
}

.slot-machine {
    margin-bottom: 32px;
}

.slot-machine__display {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.slot-machine__number {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, rgba(111, 92, 255, 0.2) 0%, rgba(155, 136, 255, 0.1) 100%);
    border: 2px solid rgba(111, 92, 255, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #f5d36c;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
    box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.2),
            inset 0 2px 8px rgba(111, 92, 255, 0.1);
}

.slot-machine__number.spinning {
    animation: slotSpin 0.1s linear infinite;
    color: rgba(245, 211, 108, 0.6);
}

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

.slot-machine__number.stopped {
    animation: numberPop 0.4s ease;
}

@keyframes numberPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(245, 211, 108, 0.6);
    }
    100% {
        transform: scale(1);
    }
}

.lucky-number-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #6f5cff 0%, #9b88ff 100%);
    border-radius: 28px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(111, 92, 255, 0.4);
}

.lucky-number-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 92, 255, 0.6);
}

.lucky-number-btn:active {
    transform: translateY(0);
}

.lucky-number-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lucky-number-result {
    animation: resultFadeIn 0.6s ease;
}

@keyframes resultFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.lucky-number-result__title {
    font-size: 24px;
    font-weight: 700;
    color: #f5d36c;
    margin-bottom: 24px;
}

.lucky-number-result__numbers {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.result-number-box {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #6f5cff 0%, #9b88ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
    box-shadow: 0 8px 24px rgba(111, 92, 255, 0.4);
    animation: numberBoxPop 0.6s ease backwards;
}

.result-number-box:nth-child(1) {
    animation-delay: 0.1s;
}

.result-number-box:nth-child(2) {
    animation-delay: 0.2s;
}

.result-number-box:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes numberBoxPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    70% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.lucky-number-result__desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(232, 230, 240, 0.8);
}

/* ==================== Share Reward Card ==================== */
.daily-card--share {
    background: linear-gradient(135deg, rgba(245, 211, 108, 0.15) 0%, rgba(245, 211, 108, 0.05) 100%);
    border: 1px solid rgba(245, 211, 108, 0.3);
}

.daily-card--share:hover {
    border-color: rgba(245, 211, 108, 0.5);
    box-shadow: 0 4px 16px rgba(245, 211, 108, 0.2);
}

/* ==================== Share Reward Modal ==================== */
.share-reward-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.share-reward-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-reward-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.share-reward-modal__container {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b29 100%);
    border: 1px solid rgba(245, 211, 108, 0.3);
    border-radius: 24px;
    padding: 40px 24px;
    animation: modalSlideUp 0.4s ease;
}

.share-reward-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232, 230, 240, 0.1);
    color: #e8e6f0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-reward-modal__close:hover {
    background: rgba(232, 230, 240, 0.2);
}

.share-reward-content {
    text-align: center;
}

.share-reward-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: shareIconBounce 2s ease-in-out infinite;
}

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

.share-reward-title {
    font-size: 24px;
    font-weight: 700;
    color: #f5d36c;
    margin-bottom: 16px;
}

.share-reward-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(232, 230, 240, 0.8);
    margin-bottom: 32px;
}

.share-reward-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #f5d36c 0%, #f0c040 100%);
    border-radius: 28px;
    color: #1e1b29;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 211, 108, 0.4);
    margin-bottom: 16px;
}

.share-reward-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 211, 108, 0.6);
}

.share-reward-btn:active {
    transform: translateY(0);
}

.share-reward-note {
    font-size: 12px;
    color: rgba(232, 230, 240, 0.5);
    margin-top: 16px;
}

/* ==================== Zodiac Fortune Modal ==================== */
.zodiac-fortune-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.zodiac-fortune-modal.active {
    opacity: 1;
    pointer-events: all;
}

.zodiac-fortune-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.zodiac-fortune-modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b29 100%);
    border: 1px solid rgba(111, 92, 255, 0.3);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.zodiac-fortune-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(111, 92, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #e8e6f0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.zodiac-fortune-modal__close:hover {
    background: rgba(111, 92, 255, 0.3);
    transform: rotate(90deg);
}

.zodiac-fortune-content {
    position: relative;
    min-height: 550px;
}

.zodiac-fortune-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.zodiac-fortune-stage--hidden {
    opacity: 0;
    pointer-events: none;
}

.zodiac-fortune-title {
    font-size: 24px;
    font-weight: 700;
    color: #f5d36c;
    text-align: center;
    margin-bottom: 8px;
}

.zodiac-fortune-subtitle {
    font-size: 14px;
    color: rgba(232, 230, 240, 0.7);
    text-align: center;
    margin-bottom: 32px;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.zodiac-card {
    background: linear-gradient(135deg, rgba(111, 92, 255, 0.1) 0%, rgba(155, 136, 255, 0.05) 100%);
    border: 1px solid rgba(111, 92, 255, 0.2);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zodiac-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 92, 255, 0.5);
    box-shadow: 0 8px 20px rgba(111, 92, 255, 0.3);
}

.zodiac-card:active {
    transform: translateY(-2px);
}

.zodiac-card__icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.zodiac-card__name {
    font-size: 13px;
    font-weight: 600;
    color: #e8e6f0;
}

.zodiac-result {
    text-align: center;
    padding: 20px 0;
}

.zodiac-result__icon {
    font-size: 80px;
    margin-bottom: 16px;
    animation: zodiacIconFloat 3s ease-in-out infinite;
}

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

.zodiac-result__title {
    font-size: 20px;
    font-weight: 700;
    color: #f5d36c;
    margin-bottom: 24px;
}

.zodiac-result__score {
    margin-bottom: 20px;
}

.score-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid;
    position: relative;
}

.score-excellent {
    border-color: #f5d36c;
    background: linear-gradient(135deg, rgba(245, 211, 108, 0.2) 0%, rgba(245, 211, 108, 0.05) 100%);
}

.score-good {
    border-color: #9b88ff;
    background: linear-gradient(135deg, rgba(155, 136, 255, 0.2) 0%, rgba(155, 136, 255, 0.05) 100%);
}

.score-normal {
    border-color: #6f5cff;
    background: linear-gradient(135deg, rgba(111, 92, 255, 0.2) 0%, rgba(111, 92, 255, 0.05) 100%);
}

.score-low {
    border-color: rgba(232, 230, 240, 0.5);
    background: linear-gradient(135deg, rgba(232, 230, 240, 0.2) 0%, rgba(232, 230, 240, 0.05) 100%);
}

.score-bad {
    border-color: rgba(232, 230, 240, 0.3);
    background: linear-gradient(135deg, rgba(232, 230, 240, 0.1) 0%, rgba(232, 230, 240, 0.02) 100%);
}

.score-value {
    font-size: 36px;
    font-weight: 700;
    color: #e8e6f0;
}

.score-label {
    font-size: 14px;
    color: rgba(232, 230, 240, 0.7);
    margin-left: 4px;
}

.zodiac-result__summary {
    margin-bottom: 24px;
}

.summary-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(111, 92, 255, 0.2);
    border: 1px solid rgba(111, 92, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #9b88ff;
}

.zodiac-result__desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(232, 230, 240, 0.9);
    padding: 20px;
    background: rgba(111, 92, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.zodiac-fortune-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6f5cff 0%, #9b88ff 100%);
    border: none;
    border-radius: 28px;
    color: #e8e6f0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(111, 92, 255, 0.4);
}

.zodiac-fortune-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 92, 255, 0.6);
}

.zodiac-fortune-btn:active {
    transform: translateY(0);
}