/* Schadenfreude Shame Scale css */

body {
    font-family: 'Arial', sans-serif;
}

main {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.app-container {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.app-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.app-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20">💀</text></svg>') repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.app-title {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.app-description {
    line-height: 1.5;
}

.app-content {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 0rem;
}

label {
    color: #333;
}

.confession-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.confession-input::placeholder {
    color: #6c757d;
    font-style: italic;
}

.judge-btn {
    background: linear-gradient(135deg, #f3ef3e 0%, #f9b825 100%);
    color: #f23b10;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.judge-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.judge-btn:active {
    transform: translateY(-1px);
}

.results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shame-level {
    text-align: center;
    margin-bottom: 1rem;
}

.shame-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.shame-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.shame-description {
    color: #666;
    line-height: 1.6;
}