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

body {
    font-family: 'SUIT', sans-serif;
    background: #F7F9FC;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 헤더 */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #718096;
    margin-bottom: 8px;
}

.title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #2D3748;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.desc {
    font-size: 1.2rem;
    color: #4A5568;
    font-weight: 600;
    margin-bottom: 6px;
}

.sub-desc {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* 룰렛 */
.roulette-wrapper {
    position: relative;
    width: 340px;
    height: 340px;
    margin-bottom: 30px;
}

.roulette {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #2D3748;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    background: white;
}

.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #2D3748;
    z-index: 10;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* 돌리기 버튼 */
.btn-spin {
    width: 100%;
    max-width: 340px;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    background: #2D3748;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 30px;
}

.btn-spin:hover {
    background: #1A202C;
    transform: translateY(-2px);
}

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

.btn-spin:disabled {
    background: #A0AEC0;
    cursor: not-allowed;
}

.cta-text {
    font-size: 1.qrem;
    color: #4A5568;
    font-weight: 700;
    margin: 10px 0 20px 0;  
    text-align: center;
    animation: bounce 2s infinite;
}

/* 결과 영역 */
.result-area {
    width: 100%;
    max-width: 340px;
}

.result-area.hidden {
    display: none;
}

.result-box {
    text-align: center;
    padding: 50px 30px;
    background: white;
    border: 4px solid #2D3748;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.result-label {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 12px;
    font-weight: 600;
}

.result-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2D3748;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.result-message {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4A5568;
    line-height: 1.7;
}

/* 버튼 그룹 */
.button-group {
    display: flex;
}

.btn-share-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: #2D3748;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-share-full:hover {
    background: #1A202C;
    transform: translateY(-2px);
}

/* 면책 문구 */
.disclaimer {
    text-align: center;
    margin-top: 20px;
    padding: 12px;
}

.disclaimer p {
    font-size: 0.75rem;
    color: #A0AEC0;
    line-height: 1.5;
    margin: 0;
}

/* 반응형 */
@media (max-width: 480px) {
    .title {
        font-size: 2.3rem;
    }
    
    .roulette-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .btn-spin {
        max-width: 300px;
    }
    
    .result-area {
        max-width: 300px;
    }
    
    .result-amount {
        font-size: 3rem;
    }
    
    .result-box {
        padding: 40px 24px;
    }
}
