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

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #e6e6e6;
    min-height: 100vh;
    padding: 20px;
    color: #333;
    background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border: 4px solid #333;
    border-radius: 0;
    box-shadow: 8px 8px 0 #999;
    position: relative;
    background: white;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
.container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #999;
    pointer-events: none;
    border-radius: 0;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.5em;
    text-shadow: 3px 3px 0 #999;
    border-bottom: 4px solid #333;
    padding-bottom: 10px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    letter-spacing: -2px;
    position: relative;
}
h1::after {
    content: "||";
    position: absolute;
    right: -20px;
    top: 0;
    color: #999;
    font-size: 0.8em;
}

p {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.1em;
    font-style: italic;
}

/* Rounds Selection */
.rounds-selection {
    margin: 20px 0;
    text-align: center;
}

.rounds-selection label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.rounds-selection select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    min-width: 100px;
    cursor: pointer;
}

.rounds-selection select:focus {
    outline: none;
    border-color: #4a90e2;
}

/* Game Options */
.game-options {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.game-options h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.4em;
}

.option-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-group span {
    margin-left: 10px;
    color: #333;
    font-size: 16px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #333;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Leaderboard Styles */
.leaderboard {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border: 3px solid #333;
    border-radius: 0;
    box-shadow: 6px 6px 0 #999;
    position: relative;
}

.leaderboard::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dotted #666;
    pointer-events: none;
}

.leaderboard h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th, .leaderboard-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.leaderboard-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.reset-leaderboard {
    display: block;
    width: 200px;
    margin: 20px auto 0;
    padding: 10px 15px;
    background: #333;
    color: white;
    border: 3px solid #333;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    box-shadow: 6px 6px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.reset-leaderboard:hover {
    background: #555;
    box-shadow: 4px 4px 0 #999;
    transform: translate(2px, 2px);
}

.reset-leaderboard:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #999;
}

/* Double Trouble Timer */
.double-trouble-active {
    background: #ffcc00 !important;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Colour Bombs */
.colour-bomb {
    background: #ff6b6b !important;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, 5px) rotate(5deg); }
    50% { transform: translate(0, 0) rotate(0eg); }
    75% { transform: translate(-5px, 5px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Vehicle Combo */
.combo-active {
    background: #4ecdc4 !important;
    animation: flash 1s infinite;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Passenger Bonus */
.passenger-bonus {
    background: #45b7d1 !important;
    animation: bounce 1s infinite;
}

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

/* Special Buttons */
.special-btn {
    grid-column: span 2;
    background: #9b59b6 !important;
    color: white !important;
    font-size: 16px !important;
    height: auto !important;
    min-height: 60px !important;
}

.special-btn span {
    font-size: 28px !important;
    margin-bottom: 5px !important;
}

/* Responsive adjustments for special buttons */
@media (max-width: 768px) {
    .special-btn {
        min-height: 80px !important;
        font-size: 18px !important;
    }
    
    .special-btn span {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .special-btn {
        min-height: 100px !important;
        font-size: 20px !important;
    }
    
    .special-btn span {
        font-size: 36px !important;
    }
}
.rounds-selection {
    margin: 20px 0;
    text-align: center;
}

.rounds-selection label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.rounds-selection select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    min-width: 100px;
    cursor: pointer;
}

.rounds-selection select:focus {
    outline: none;
    border-color: #4a90e2;
}

.game-mode-selection {
    margin: 20px 0;
    text-align: center;
}
.game-mode-selection label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}
.game-mode-selection select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    min-width: 180px;
    cursor: pointer;
}
.game-mode-selection select:focus {
    outline: none;
    border-color: #4a90e2;
}

/* Player Setup Styles */
.player-setup {
    background: white;
    border: 3px solid #333;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 6px 6px 0 #999;
}
.player-setup::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dotted #666;
    pointer-events: none;
}

.player-setup h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-input {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.player-input label {
    width: 80px;
    font-weight: 600;
    color: #555;
    margin-right: 10px;
}

.player-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    min-width: 200px;
    background: #f9f9f9;
    box-shadow: 3px 3px 0 #999;
}
.player-input input:focus {
    outline: none;
    border-color: #333;
    background: #fff;
}

.player-input input:focus {
    outline: none;
    border-color: #667eea;
}

.start-btn {
    display: block;
    width: 200px;
    margin: 20px auto 0;
    padding: 15px 20px;
    background: #333;
    color: white;
    border: 3px solid #333;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    box-shadow: 6px 6px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.start-btn:hover {
    background: #555;
    box-shadow: 4px 4px 0 #999;
    transform: translate(2px, 2px);
}
.start-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #999;
}

.start-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.start-btn:active {
    transform: translateY(0);
}

/* Game Area Styles */
.game-area {
    background: white;
    border: 3px solid #333;
    padding: 30px;
    box-shadow: 6px 6px 0 #999;
    position: relative;
}
.game-area::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dotted #666;
    pointer-events: none;
}

.hidden {
    display: none;
}

.current-turn {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #667eea;
}

.current-turn h2 {
    color: #333;
    font-size: 1.8em;
}

.current-turn span {
    color: #667eea;
    font-weight: 700;
}

/* Players Container */
#playersContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.player-card {
    background: #f8f9fa;
    border-radius: 0;
    padding: 20px;
    border: 2px solid #333;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0 #999;
    position: relative;
}
.player-card::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px dashed #999;
    pointer-events: none;
}

.player-card.active {
    border-color: #667eea;
    background: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.player-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-card h3 .score {
    color: #667eea;
    font-weight: 700;
    font-size: 1.2em;
}

/* Buttons */
.vehicle-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    text-shadow: 2px 2px 0 #999;
}
.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(70px, auto);
    gap: 12px;
}

.vehicle-btn, .end-turn-btn {
    padding: 15px;
    border: 2px solid #333;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    height: auto;
    min-height: 70px;
    background: white;
    box-shadow: 4px 4px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.vehicle-btn {
    background: white;
    color: #333;
    border: 2px solid #333;
}

.vehicle-btn:hover {
    background: #f0f0f0;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #999;
}

.vehicle-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #999;
}

.car-btn {
    grid-column: span 1;
}

.van-btn {
    grid-column: span 1;
}

.bike-btn {
    grid-column: span 1;
}

.end-turn-btn {
    grid-column: span 1;
    background: #d32f2f;
    color: white;
    font-size: 14px;
    border: 2px solid #b71c1c;
    font-weight: bold;
    transition: background 0.1s, box-shadow 0.1s, transform 0.1s;
}
.end-turn-btn:hover {
    background: #b71c1c;
    box-shadow: 2px 2px 0 #999;
    transform: translate(2px, 2px);
}
.end-turn-btn:active {
    background: #a31515;
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #999;
}

/* Reset Button */
.reset-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 12px 20px;
    background: #333;
    color: white;
    border: 3px solid #333;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    box-shadow: 6px 6px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.reset-btn:hover {
    background: #555;
    box-shadow: 4px 4px 0 #999;
    transform: translate(2px, 2px);
}
.reset-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #999;
}

.reset-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.reset-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .player-setup, .game-area {
        padding: 20px;
    }
    
    .player-input {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .player-input label {
        margin-bottom: 8px;
        width: auto;
    }
    
    .player-input input {
        width: 100%;
        min-width: auto;
    }
    
    .button-group {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .car-btn, .van-btn, .bike-btn, .end-turn-btn {
        height: 50px;
        font-size: 14px;
    }
    
    .end-turn-btn {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .button-group {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .top-row-btns {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 6px;
    }
    .top-row-btns .vehicle-btn {
        width: 32vw;
        min-width: 90px;
        max-width: 120px;
        font-size: 1em;
        padding: 10px 0;
        margin: 0 2vw 0 0;
        height: 48px;
        border-radius: 8px;
    }
    .top-row-btns .vehicle-btn:last-child {
        margin-right: 0;
    }
    .button-group .jimny-btn,
    .button-group .special-btn,
    .button-group .end-turn-btn {
        width: 100%;
        min-width: 0;
        font-size: 1.2em;
        height: 60px;
        margin: 0;
        border-radius: 10px;
    }
    .button-group {
        flex-wrap: wrap;
        align-items: stretch;
    }
}

/* Mobile Player Turn View */
@media (max-width: 768px) {
    .player-card {
        margin-bottom: 20px;
    }
    
    .player-card.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        z-index: 100;
        border: 4px solid #333;
        box-shadow: 0 0 0 0 #999;
        background: white;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .player-card.active::before {
        display: none;
    }
    
    .player-card.active h3 {
        flex-shrink: 0;
        background: #f8f9fa;
        padding: 15px;
        border-bottom: 2px solid #333;
        margin: 0;
    }
    
    .player-card.active .button-group {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .player-card.active .vehicle-btn,
    .player-card.active .end-turn-btn {
        height: 160px;
        font-size: 18px;
        margin: 10px;
        flex-grow: 1;
        width: 350px;
    }
    
    .game-area {
        position: relative;
        min-height: 300px;
    }
    
    .current-turn {
        display: none;
    }
    
    #playersContainer {
        display: block;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    .player-setup h2 {
        font-size: 1.5em;
    }
    
    .current-turn h2 {
        font-size: 1.5em;
    }
    
    .player-card h3 {
        font-size: 1.2em;
    }
    
    .button-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .car-btn, .van-btn, .bike-btn, .end-turn-btn {
        height: 45px;
        font-size: 16px;
    }
    
    .end-turn-btn {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Animations */
.player-card.active {
    border-color: #333;
    background: #fff;
    box-shadow: 4px 4px 0 #999;
}

.vehicle-btn.pressed {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Winner Animation */
@keyframes winnerPulse {
    0% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(255, 217, 0, 0.7); }
    50% { transform: scale(1.02) rotate(1deg); box-shadow: 0 0 0 15px rgba(255, 217, 0, 0); }
    100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(255, 217, 0, 0); }
}

.winner-card {
    animation: winnerPulse 1.5s infinite;
    border-color: #ffd700 !important;
    background: linear-gradient(135deg, #fff8dc, #fffacd) !important;
    transform: scale(1.02);
}

.winner-card h3 {
    color: #d4af37 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.winner-announcement {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    color: white;
    padding: 30px 40px;
    text-align: center;
    z-index: 1000;
    min-width: 300px;
    border: 4px solid #333;
    box-shadow: 8px 8px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.winner-announcement h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffcc00;
    text-shadow: 3px 3px 0 #999;
    letter-spacing: -2px;
}

.winner-announcement p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.winner-announcement .winner-name {
    font-size: 2em;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 3px 3px 0 #999;
    letter-spacing: -1px;
}

.winner-announcement button {
    background: #333;
    color: white;
    border: 3px solid #333;
    padding: 12px 25px;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.1s ease;
    box-shadow: 6px 6px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.winner-announcement button:hover {
    background: #555;
    box-shadow: 4px 4px 0 #999;
    transform: translate(2px, 2px);
}
.winner-announcement button:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #999;
}

/* Suzuki Jimny Button */
.jimny-btn {
    background: #4caf50 !important;
    color: #fff !important;
    font-weight: bold;
    border: 2px solid #388e3c !important;
    box-shadow: 2px 2px 0 #999;
}
.jimny-btn:hover {
    background: #388e3c !important;
    color: #fff !important;
}
.jimny-btn .vehicle-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

/* Info Modal Styles */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.info-modal > div {
    background: #fff;
    color: #222;
    padding: 30px 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 8px 32px #0008;
    font-family: inherit;
}
.info-modal h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
    text-align: center;
}
.info-modal ul {
    margin: 15px 0 0 0;
    padding-left: 1.2em;
    font-size: 1.1em;
}
.info-modal li {
    margin-bottom: 7px;
}
#closeInfoModal {
    margin-top: 15px;
    padding: 8px 18px;
    font-size: 1em;
    background: #333;
    color: #fff;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
#closeInfoModal:hover {
    background: #555;
}

.btn-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.info-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    background: #333;
    color: white;
    border: 3px solid #333;
    border-radius: 50%;
    font-size: 2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    box-shadow: 6px 6px 0 #999;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
}
.info-btn:hover {
    background: #555;
    box-shadow: 4px 4px 0 #999;
    transform: translate(2px, 2px);
}
.info-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #999;
}

.team-score-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 1.2em;
    background: #f3f6fa;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 2px 2px 0 #bbb;
}
.team-score {
    flex: 1;
    text-align: center;
}
.blue-team {
    color: #1976d2;
}
.red-team {
    color: #d32f2f;
}

.shared-score-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 1.2em;
    background: #fffbe6;
    border: 2px solid #fbc02d;
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 2px 2px 0 #bbb;
}
.shared-score {
    color: #fbc02d;
    font-size: 1.3em;
    text-align: center;
}
.shared-winner {
    color: #fbc02d;
    font-size: 1.5em;
    font-weight: bold;
    margin: 12px 0;
    text-align: center;
}

.challenge-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    background: #e3f2fd;
    border: 2px solid #1976d2;
    border-radius: 8px;
    padding: 14px 24px 10px 24px;
    box-shadow: 2px 2px 0 #bbb;
}
.draw-challenge-btn {
    background: #1976d2;
    color: #fff;
    border: 2px solid #1976d2;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 22px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
    box-shadow: 2px 2px 0 #999;
}
.draw-challenge-btn:hover {
    background: #1565c0;
    box-shadow: 1px 1px 0 #999;
    transform: translate(1px, 1px);
}
.challenge-card {
    background: #fff;
    color: #1976d2;
    border: 2px dashed #1976d2;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 1.1em;
    font-weight: bold;
    min-width: 220px;
    text-align: center;
    box-shadow: 1px 1px 0 #bbb;
}
