/* Bingo Card Styles - Elementor Override */

/* Reset everything aggressively */
.bingo-game .container, .bingo-game .container *,
.bingo-game .round-section, .bingo-game .round-section *,
.bingo-game .bingo-card,
.bingo-game .bingo-grid, .bingo-game .bingo-grid *,
.bingo-game .bingo-cell, .bingo-game .bingo-cell *,
.bingo-game .controls, .bingo-game .controls * {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling removed - don't want to affect entire site */

.bingo-game .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10rem 10rem !important;
    max-width: 1400px !important;
    min-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.bingo-game .round-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.bingo-game .bingo-card {
    background: #21409A !important;
    border-radius: 1rem !important;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    width: 100% !important;
}

.bingo-game .bingo-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 3px !important;
    border-radius: 0.5rem !important;
    overflow: hidden !important;
    width: 100% !important;
}

.bingo-game .column-header {
    background: #21409A !important;
    color: white !important;
    font-size: 4.5rem !important;
    font-weight: bold !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    gap: 1rem !important;
}

.bingo-game .decade {
    font-size: 1rem !important;
    font-weight: normal !important;
    color: white !important;
    margin-bottom: -1rem !important;
}

.bingo-game .bingo-cell {
    aspect-ratio: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    background: white !important;
    min-height: 0 !important;
    min-width: 0 !important;
}

.bingo-game .bingo-cell:hover {
    background: white !important;
}

.bingo-game .bingo-cell.marked {
    background: #F26522 !important;
}

.bingo-game .bingo-cell.marked:hover {
    background: #F26522 !important;
}

.bingo-game .song-title {
    font-size: 1rem !important;
    font-weight: bold !important;
    text-align: center !important;
    color: #333 !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.1 !important;
    padding: 0 !important;
}

.bingo-game .bingo-cell.marked .song-title {
    color: white !important;
}

.bingo-game .artist-name {
    font-size: 1rem !important;
    text-align: center !important;
    color: #666 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
}

.bingo-game .bingo-cell.marked .artist-name {
    color: rgba(255, 255, 255, 0.9) !important;
}

.bingo-game .controls {
    text-align: center !important;
    margin-top: 1rem !important;
    width: 100% !important;
}

.bingo-game .bingo-button {
    background: #21409A !important;
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    padding: 0.75rem 2rem !important;
    border: none !important;
    border-radius: 0.5rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    letter-spacing: 0.2rem !important;
    box-shadow: 0 4px 10px rgba(33, 64, 154, 0.3) !important;
    margin-bottom: 0.5rem !important;
    display: inline-block !important;
}

.bingo-game .bingo-button:hover {
    background: #1a3380 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(33, 64, 154, 0.4) !important;
}

.bingo-game .bingo-button.clicked {
    background: #F26522 !important;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3) !important;
}

.bingo-game .bingo-button.clicked:hover {
    background: #F26522 !important;
}

.bingo-game .bingo-button:active {
    transform: translateY(0) !important;
}

.bingo-game .instructions {
    font-size: 1rem !important;
    color: #666 !important;
    text-align: center !important;
}

/* Round-specific colors */
/* Round 1: Music - Orange with Blue highlights */
.bingo-game .round-1 .bingo-grid {
    background: #F26522 !important;
}

.bingo-game .round-1 .bingo-card,
.bingo-game .round-1 .column-header,
.bingo-game .round-1 .bingo-button {
    background: #F26522 !important;
}

.bingo-game .round-1 .bingo-button:hover {
    background: #D9571C !important;
}

.bingo-game .round-1 .bingo-cell.marked {
    background: #21409A !important;
}

.bingo-game .round-1 .bingo-cell.marked:hover {
    background: #21409A !important;
}

.bingo-game .round-1 .bingo-button.clicked {
    background: #21409A !important;
}

.bingo-game .round-1 .bingo-button.clicked:hover {
    background: #21409A !important;
}

/* Round 2: Wacky - Blue with Orange highlights */
.bingo-game .round-2 .bingo-grid {
    background: #21409A !important;
}

.bingo-game .round-2 .bingo-card,
.bingo-game .round-2 .column-header,
.bingo-game .round-2 .bingo-button {
    background: #21409A !important;
}

.bingo-game .round-2 .bingo-button:hover {
    background: #1a3380 !important;
}

.bingo-game .round-2 .bingo-cell.marked {
    background: #F26522 !important;
}

.bingo-game .round-2 .bingo-cell.marked:hover {
    background: #F26522 !important;
}

.bingo-game .round-2 .bingo-button.clicked {
    background: #F26522 !important;
}

.bingo-game .round-2 .bingo-button.clicked:hover {
    background: #F26522 !important;
}

/* Round 3: Wacky - Red with Green highlights */
.bingo-game .round-3 .bingo-grid {
    background: #DC143C !important;
}

.bingo-game .round-3 .bingo-card,
.bingo-game .round-3 .column-header,
.bingo-game .round-3 .bingo-button {
    background: #DC143C !important;
}

.bingo-game .round-3 .bingo-button:hover {
    background: #B01030 !important;
}

.bingo-game .round-3 .bingo-cell.marked {
    background: #4CAF50 !important;
}

.bingo-game .round-3 .bingo-cell.marked:hover {
    background: #4CAF50 !important;
}

.bingo-game .round-3 .bingo-button.clicked {
    background: #4CAF50 !important;
}

.bingo-game .round-3 .bingo-button.clicked:hover {
    background: #4CAF50 !important;
}

/* Round 4: Music - Green with Red highlights (Christmas) */
.bingo-game .round-4 .bingo-grid {
    background: #4CAF50 !important;
}

.bingo-game .round-4 .bingo-card,
.bingo-game .round-4 .column-header,
.bingo-game .round-4 .bingo-button {
    background: #4CAF50 !important;
}

.bingo-game .round-4 .bingo-button:hover {
    background: #45A049 !important;
}

.bingo-game .round-4 .bingo-cell.marked {
    background: #DC143C !important;
}

.bingo-game .round-4 .bingo-cell.marked:hover {
    background: #DC143C !important;
}

.bingo-game .round-4 .bingo-button.clicked {
    background: #DC143C !important;
}

.bingo-game .round-4 .bingo-button.clicked:hover {
    background: #DC143C !important;
}

.bingo-game .card-selector-container {
    max-width: 200px !important;
    margin: 0 auto 2rem auto !important;
    text-align: center !important;
}

.bingo-game .card-selector {
    padding: 0.75rem 1.5rem !important;
    font-size: 1.2rem !important;
    border: 3px solid #21409A !important;
    border-radius: 0.5rem !important;
    background: white !important;
    color: #21409A !important;
    cursor: pointer !important;
    font-weight: bold !important;
}

.bingo-game .card-set {
    display: none !important;
}

.bingo-game .card-set.active {
    display: grid !important;
}

/* Media queries removed - layout stays fixed on all screen sizes */


.bingo-game .score-bar {
    max-width: 1400px !important;
    margin: 0 auto 2rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    text-align: center !important;
}

.bingo-game .score-button {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.9rem !important;
    border: none !important;
    border-radius: 0.25rem !important;
    background: #f0f0f0 !important;
    color: #666 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.bingo-game .score-button:hover {
    background: #e0e0e0 !important;
    color: #21409A !important;
}

.bingo-game .score-button:active {
    transform: scale(0.95) !important;
}

.bingo-game .score-display {
    font-size: 1rem !important;
    font-weight: bold !important;
    color: #21409A !important;
}