/* /public/assets/css/style.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0b1020;
    color: #f5f5f5;
}

.site-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.site-nav a {
    margin-left: 12px;
    font-size: 14px;
    text-decoration: none;
    color: #f5f5f5;
    opacity: 0.8;
}

.site-nav a:hover {
    opacity: 1;
}

.hero {
    margin-top: 24px;
}

.hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.hero .sub {
    font-size: 14px;
    opacity: 0.85;
}

.current-country {
    margin-top: 12px;
    font-size: 14px;
}

.current-country .label {
    opacity: 0.8;
    margin-right: 6px;
}

.current-country .value {
    font-weight: 600;
}

.recommend {
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.recommend-header h2 {
    font-size: 18px;
}

.btn-refresh {
    padding: 6px 12px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    background: #ffb300;
    color: #1b1b1b;
    font-weight: 600;
}

.number-sets {
    display: grid;
    gap: 10px;
}

.number-set {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.set-label {
    font-size: 13px;
    opacity: 0.8;
    width: 60px;
}

.balls {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ball {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: radial-gradient(circle at 30% 30%, #ffffff, #ffcc33);
    color: #222;
}

.about {
    margin-top: 32px;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

.site-footer {
    margin-top: 32px;
    padding: 16px 0;
    font-size: 12px;
    opacity: 0.6;
    text-align: center;
}

.site-footer .copy {
    margin-top: 4px;
}

.ball.bonus {
    border: 2px solid rgba(255, 0, 90, 0.8);
}

.multiplier {
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.8;
}

.ball.bonus {
    border: 2px solid rgba(255, 0, 80, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 80, 0.7);
}

.prize-info {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.prize-info .sub {
    font-size: 12px;
    opacity: 0.75;
}

.ball.bonus {
    border: 2px solid rgba(255, 0, 80, 0.9);
    box-shadow: 0 0 8px rgba(255, 0, 80, 0.7);
}

/* Stats section */
.stats {
    margin-top: 40px;
}

.stats .stats-block {
    margin-top: 16px;
}

.stats h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.stats .balls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* hot / cold 강조 */
.ball.hot {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.ball.cold {
    opacity: 0.7;
    border: 1px dashed rgba(255, 255, 255, 0.4);
}