.results-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.results-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* User Content Area */
.user-results-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Placeholder text style */
.user-results-content p {
    margin-bottom: 1em;
}

/* Countdown Timer */
.countdown-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-size: 4rem;
    font-weight: 700;
    font-family: monospace;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    line-height: 1;
    margin-bottom: 10px;
}

.timer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Fireworks Canvas */
#fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    display: none; /* Hidden by default */
}

/* New Year Message (Hidden initially) */
.new-year-message {
    display: none;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.new-year-title {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .timer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timer-value {
        font-size: 3rem;
    }
    
    .results-title {
        font-size: 2.5rem;
    }
}
