:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --primary-color: #ef4444;
    /* Red for urgency */
    --secondary-color: #3b82f6;
    /* Blue for trust */
    --accent-color: #fbbf24;
    /* Amber for warning/highlight */
    --success-color: #22c55e;
    /* Green for YES */
    --card-bg: #1e293b;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Button Styles */
.decision-container {
    margin-bottom: 2rem;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 2rem 3rem;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse 2s infinite;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-button:hover {
    transform: scale(1.05);
}

.pulse-button:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Result Area */
.hidden {
    display: none;
}

#result-area {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#result-text {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.yes {
    color: var(--success-color);
}

.no {
    color: var(--primary-color);
}

.excuse-box {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

#excuse-text {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

.actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.secondary-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* SEO Content */
.seo-content {
    margin-top: 4rem;
    text-align: left;
    opacity: 0.6;
    font-size: 0.9rem;
}

details summary {
    cursor: pointer;
    margin-bottom: 0.5rem;
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .pulse-button {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }

    #result-text {
        font-size: 4rem;
    }
}