/**
 * Santa's Nice List - Christmas Theme Styles
 */

.santa-nice-list-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
    background: linear-gradient(135deg, #165b33 0%, #c41e3a 50%, #165b33 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.santa-nice-list-header {
    margin-bottom: 25px;
}

.santa-title {
    color: #fff;
    font-size: 28px;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.santa-subtitle {
    color: #f0e68c;
    font-size: 16px;
    margin: 0;
    font-style: italic;
}

.santa-nice-list-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #165b33;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.santa-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 3px solid #c41e3a;
    border-radius: 25px;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.santa-input:focus {
    border-color: #165b33;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
    transform: scale(1.02);
}

.santa-button {
    background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.santa-button:hover {
    background: linear-gradient(135deg, #165b33 0%, #0f4024 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 91, 51, 0.5);
}

.santa-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(22, 91, 51, 0.3);
}

.santa-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.santa-result {
    margin-top: 25px;
    padding: 20px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    min-height: 20px;
    transition: all 0.4s ease;
}

.santa-result.nice {
    background: linear-gradient(135deg, #b8e986 0%, #50c878 100%);
    color: #0f4024;
    border: 3px solid #165b33;
    animation: celebrateNice 0.6s ease;
}

.santa-result.naughty {
    background: linear-gradient(135deg, #ff6b6b 0%, #c41e3a 100%);
    color: white;
    border: 3px solid #8b0000;
    animation: shakeNaughty 0.6s ease;
}

.santa-result.loading {
    background: #f0e68c;
    color: #8b7500;
    border: 3px dashed #ffd700;
}

@keyframes celebrateNice {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shakeNaughty {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Snowflake decorations */
.santa-nice-list-container::before {
    content: '❄️ ⭐ ❄️';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

/* Responsive design */
@media (max-width: 600px) {
    .santa-nice-list-container {
        margin: 20px;
        padding: 20px;
    }

    .santa-title {
        font-size: 24px;
    }

    .santa-subtitle {
        font-size: 14px;
    }

    .santa-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}
