body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #203731;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.undefeated {
    background: #203731 !important;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffb612;
}

.answer {
    font-size: 4rem;
    font-weight: bold;
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.yes {
    background: transparent;
    color: white;
}

.no {
    background: linear-gradient(45deg, #f44336, #da190b);
    color: white;
}

.record {
    font-size: 1.5rem;
    margin: 1rem 0;
    opacity: 0.9;
    color: #ffb612;
}

.next-game {
    background: rgba(32, 55, 49, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid #ffb612;
}

.next-game h3 {
    margin-top: 0;
    color: #ffb612;
}

.countdown {
    font-size: 1.1rem;
    color: #ffb612;
    font-weight: bold;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 182, 18, 0.1);
    border-radius: 5px;
}

.live-game {
    background: rgba(255, 0, 0, 0.1) !important;
    border: 2px solid #ff0000 !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.game-status {
    font-size: 1rem;
    color: #ff0000;
    font-weight: bold;
    margin: 0.5rem 0;
}

.score-display {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.packers-score {
    color: #ffb612;
}

.opponent-score {
    color: #ffffff;
}

.loading {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #ffb612;
}

.error {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.packers-logo {
    font-size: 2rem;
    margin: 0 1rem;
}

.last-updated {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ffb612;
}

.share-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 182, 18, 0.3);
}

.share-section h3 {
    color: #ffb612;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    background: #28a745;
    justify-content: center;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #218838;
}

.share-icon {
    font-size: 1.2rem;
}

.copy-success {
    background: #20c997 !important;
}

.schedule-section {
    background: rgba(32, 55, 49, 0.8);
    margin: 0.25rem 0;
    max-width: 800px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid #ffb612;
    border-radius: 10px;
    overflow-x: auto;
}

.schedule-section h3 {
    margin-top: 0;
    color: #ffb612;
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-grid {
    display: grid;
    gap: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
}

.game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.game-item.completed.win {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.game-item.completed.loss {
    border-left-color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.game-item.live {
    border-left-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.game-item.next {
    border-left-color: #ffb612;
    background: rgba(255, 182, 18, 0.15);
    box-shadow: 0 0 10px rgba(255, 182, 18, 0.3);
}

.game-info {
    flex: 1;
}

.game-opponent {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.game-date {
    font-size: 0.85rem;
    opacity: 0.8;
    color: #ffb612;
}

.game-result {
    text-align: right;
    min-width: 80px;
}

.game-score {
    font-weight: bold;
    font-size: 1.1rem;
}

.game-score.win {
    color: #4CAF50;
}

.game-score.loss {
    color: #f44336;
}

.game-score.live {
    color: #ff0000;
}

.game-status {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.live-indicator-small {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 0.3rem;
    animation: blink 1s infinite;
}

.countdown-small {
    font-size: 0.8rem;
    color: #ffb612;
    font-weight: bold;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .answer {
        font-size: 2.5rem;
        margin: 1rem 0;
    }
    
    .container {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .game-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .game-result {
        text-align: left;
        min-width: auto;
    }
    
    .schedule-section {
        padding: 1rem;
        margin: 1rem 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 10px;
    }
    
    .schedule-grid {
        max-height: 400px;
    }
    
    .schedule-section h3 {
        margin-bottom: 1.5rem;
    }
}