/* css/components.css */
/* Premium Red Button */
.btn-primary {
    background: var(--ariston-red);
    color: var(--text-light);
    border: none;
    padding: 16px 44px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px; /* Gaya tombol kapsul modern premium */
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.15);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-primary:hover {
    background: var(--ariston-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 18, 42, 0.4);
}

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

.btn-primary:disabled {
    background: #cccccc;
    box-shadow: none;
    cursor: not-allowed;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    padding: 30px;
    color: var(--text-light);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Pulse animation for tapping to start */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
