﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Noto+Sans+TC:wght@400;700&display=swap');

body {
    font-family: 'Quicksand', 'Noto Sans TC', sans-serif;
    background-color: #fff0f5;
    color: #555555;
}

.cute-card {
    border-radius: 25px;
    border: 2px dashed #ffb6c1;
    box-shadow: 0 10px 20px rgba(255, 182, 193, 0.2);
    background: #fffaf0;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .cute-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(255, 182, 193, 0.4);
    }

.card-header-cute {
    background-color: #ffe4e1;
    color: #d1477a;
    border-radius: 23px 23px 0 0 !important;
    font-weight: 700;
    border-bottom: 2px dashed #ffb6c1;
    padding: 15px;
}

.btn-cute {
    background-color: #ffb6c1;
    color: white;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-cute:hover {
        background-color: #ff69b4;
        color: white;
        transform: scale(1.05);
    }

.btn-action {
    background-color: #b2f2bb;
    color: #2b8a3e;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-action:hover {
        background-color: #8ce99a;
        color: #2b8a3e;
    }

.btn-danger-cute {
    background-color: #ff8787;
    color: white;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    padding: 5px 15px;
    transition: background-color 0.2s;
}

    .btn-danger-cute:hover {
        background-color: #fa5252;
    }

.btn-cute-outline {
    border: 2px solid #ffb6c1;
    color: #ff69b4;
    border-radius: 20px;
    background: transparent;
    font-weight: bold;
    transition: all 0.3s;
}

    .btn-cute-outline:hover {
        background: #ffb6c1;
        color: white;
    }

.input-cute {
    border-radius: 20px;
    border: 2px solid #ffe4e1;
    padding: 10px 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .input-cute:focus {
        outline: none;
        border-color: #ff69b4;
        box-shadow: 0 0 8px rgba(255, 105, 180, 0.3);
    }

.badge-cute {
    background-color: #ffd1dc;
    color: #d1477a;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: bold;
}

.prize-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 23px 23px 0 0;
}

.news-box {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

    .news-box::-webkit-scrollbar {
        width: 6px;
    }

    .news-box::-webkit-scrollbar-thumb {
        background: #ffe4e1;
        border-radius: 3px;
    }

.news-item {
    border-left: 4px solid #ffb6c1;
    padding-left: 15px;
    margin-bottom: 15px;
}

/* 小遊戲專用樣式 */
.game-screen {
    height: 150px;
    background: linear-gradient(135deg, #ffe4e1, #ffb6c1);
    border-radius: 15px;
    line-height: 150px;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
