/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('images/background.jpg'); /* Pastikan Anda punya gambar ini */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}
h1 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 28px;
    text-align: center;
}
.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
    text-align: center;
}
.slots-container {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
}
.slot {
    width: 100px; 
    height: 100px;
    background-color: #f0f0f0;
    border: 3px solid #667eea;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slot img.spinning {
    filter: blur(5px);
}
.card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}
.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.info-row span:first-child {
    color: #666;
}
.info-row span:last-child {
    color: #333;
    font-weight: 600;
}
button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.status {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
}
.status-info {
    background: #e3f2fd;
    color: #1976d2;
}
.status-success {
    background: #e8f5e9;
    color: #388e3c;
}
.status-error {
    background: #ffebee;
    color: #d32f2f;
}
.step {
    padding: 10px;
    border-left: 3px solid #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}
.step.active {
    background: #f0f4ff;
    color: #667eea;
    font-weight: 600;
    border-left-color: #667eea;
}
.step.completed {
    color: #4caf50;
    border-left-color: #4caf50;
}
.hidden {
    display: none;
}
.link {
    color: #667eea;
    text-decoration: none;
    font-size: 12px;
}
.link:hover {
    text-decoration: underline;
}
.badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}
.wallet-display {
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    word-break: break-all;
}
