/* === General Page Styling === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1e1e1e, #2c2c2c);
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === Container === */
.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

/* === Heading Styling === */
#welcome {
    color: #ff4444;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0px 0px 10px rgba(255, 50, 50, 0.7);
    animation: shake 0.3s infinite;
}

#subtitle {
    font-size: 1.2rem;
    color: #ff9ff3;
    margin-bottom: 40px;
}

/* === Buttons Container === */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === Error Button === */
#error-btn {
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: #2ecc71;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transition: all 0.25s ease;
}

#error-btn:hover {
    background: #27ae60;
    transform: scale(1.08);
}

/* === Praise Button === */
#praise-btn {
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: #3498db;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    transition: all 0.25s ease;
}

#praise-btn:hover {
    background: #2980b9;
    transform: scale(1.08);
}

/* === Shake Animation === */
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    20% { transform: translate(-1px, 1px) rotate(-1deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    60% { transform: translate(-1px, -1px) rotate(0deg); }
    80% { transform: translate(1px, 1px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
