/* Complete styles.css for Numberfeud - Chat Widget Removed Version */

/* ===== BASE STYLES ===== */

/* Tile counter styles */
.tile-counter {
    margin: 10px 0;
}

.tile-counter .badge {
    font-size: 0.95rem;
    padding: 6px 12px;
}

/* Animation for when the tile count changes */
@keyframes tile-count-update {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.tile-count-changed {
    animation: tile-count-update 0.5s ease;
}

/* ===== BUTTON STYLES ===== */

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.btn-primary {
    background-color: #6B46C1;
    border-color: #6B46C1;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s ease-in-out;
}

.btn-primary:hover {
    background-color: #553C9A;
    border-color: #553C9A;
    text-decoration: none;
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: #6B46C1;
    color: #6B46C1;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #6B46C1;
    transition: all 0.15s ease-in-out;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
}

.btn-outline-primary:hover {
    background-color: #6B46C1;
    border-color: #6B46C1;
    color: white;
    text-decoration: none;
}

.btn-success {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.btn-success:hover {
    background-color: #388E3C;
    border-color: #388E3C;
}

/* UPDATED: Change red "Your Turn!" styling to muted green */
.btn-danger {
    background-color: #059669 !important; /* Muted green instead of red */
    border-color: #059669 !important;
    color: white !important;
}

.btn-danger:hover {
    background-color: #047857 !important; /* Darker green on hover */
    border-color: #047857 !important;
}

.btn-outline-danger {
    background-color: transparent;
    border-color: #F44336;
    color: #F44336;
}

.btn-outline-danger:hover {
    background-color: #F44336;
    border-color: #F44336;
    color: white;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    color: white;
}

.btn-info.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-warning {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #212529;
}

.btn-warning:hover {
    background-color: #FFB300;
    border-color: #FFB300;
}

/* ===== INDEX PAGE STYLES ===== */

/* Hero section - semi-transparent purple box at top only */
.hero-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8), rgba(147, 51, 234, 0.8));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hero-logo {
    max-height: 20px;
}

/* Action cards wrapper and styling */
.action-cards-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.action-cards-wrapper .action-card {
    background: rgba(255, 255, 255, 0.85) !important; /* Semi-transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(229, 231, 235, 0.8) !important;
    border-radius: 12px !important;
    padding: 2rem 1.5rem !important;
    height: 100% !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    position: relative !important;
}

.action-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.action-title {
    color: #1F2937 !important; /* Darker for better contrast on transparent bg */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.action-description {
    color: #4B5563 !important; /* Darker for better contrast on transparent bg */
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rating-display {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.rating-display .rating-label,
.rating-display .rating-number {
    color: #6B46C1; /* Both elements same color */
}

.matchmaking-status {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3B82F6;
    border-radius: 8px;
    padding: 1rem;
}

.matchmaking-status strong {
    color: #1E40AF;
}

.matchmaking-status .text-muted {
    color: #374151;
}

.waiting-animation {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.waiting-animation::before {
    content: "🔄";
    font-size: 16px;
    display: inline-block;
}

/* ===== GAME CARD STYLES ===== */

/* Also update the card headers for "Your Turn!" games */
.card.border-danger .card-header.bg-danger {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border-color: #059669 !important;
}

.card.border-danger {
    border-color: #059669 !important;
}

.game-card {
    transition: all 0.2s ease;
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mini-score-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.more-games-card {
    border: 2px dashed #e5e7eb;
    background: rgba(249, 250, 251, 0.8);
}

.more-games-card:hover {
    border-color: #6B46C1;
    background: rgba(107, 70, 193, 0.05);
}

.more-games-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Challenge actions */
.challenge-actions .btn {
    min-height: 36px;
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 5px;
}

/* Public Game actions */
.public-game-actions .btn {
    font-size: 12px;
    padding: 6px 12px;
    min-height: 32px;
}

.public-game-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

/* ===== ACTIVE GAMES SECTION ===== */

.active-games-section {
    margin-bottom: 2rem;
}

.turn-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.turn-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.your-turn::before {
    background-color: #4CAF50;
    animation: pulse 2s infinite;
}

.their-turn::before {
    background-color: #FFC107;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* ===== RESULT STATUS STYLES ===== */

.result-win {
    color: #4CAF50;
    font-weight: bold;
}

.result-loss {
    color: #F44336;
    font-weight: bold;
}

.result-draw {
    color: #FFC107;
    font-weight: bold;
}

/* Rating change indicators */
.rating-change-cell {
    font-weight: bold;
}

.rating-change-cell.positive {
    color: #4CAF50;
}

.rating-change-cell.negative {
    color: #F44336;
}

/* ===== SCORE COMPARISON STYLES ===== */

.score-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.score-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.score-graphic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.score-graphic.winning {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border-color: #22C55E;
    color: white;
    animation: winning-glow 2s ease-in-out infinite;
}

.score-graphic.losing {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    border-color: #EF4444;
    color: white;
}

.score-graphic.tied {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-color: #F59E0B;
    color: white;
}

@keyframes winning-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 25px rgba(34, 197, 94, 0.8); }
}

.vs-indicator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #9CA3AF;
    padding: 0.5rem;
}

.status-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid white;
}

.status-icon.winning {
    background: #22C55E;
    color: white;
}

.status-icon.losing {
    background: #EF4444;
    color: white;
}

.status-icon.tied {
    background: #F59E0B;
    color: white;
}

/* ===== TABLE STYLING ===== */

.table {
    margin: 0;
    color: #E5E7EB;
}

.table thead th {
    background: rgba(107, 70, 193, 0.3);
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table tbody td {
    border-color: rgba(107, 70, 193, 0.2);
    padding: 0.75rem 1rem;
}

/* ===== PROFILE PAGE STYLES ===== */

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-header {
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.section-title {
    color: #6B46C1;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== BADGE STYLES ===== */

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.bg-primary {
    background-color: #6B46C1;
    color: white;
}

.bg-success {
    background-color: #4CAF50;
    color: white;
}

.bg-warning {
    background-color: #FFC107;
    color: #212529;
}

.bg-danger {
    background-color: #F44336;
    color: white;
}

.bg-secondary {
    background-color: #6C757D;
    color: white;
}

.bg-info {
    background-color: #17a2b8;
    color: white;
}

/* ===== FORM STYLES ===== */

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group .btn {
    position: relative;
    z-index: 2;
}

/* ===== FEATURE CARDS ===== */

.feature-card {
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Auth actions styling */
.auth-actions {
    margin-bottom: 3rem;
}

.auth-actions .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Getting started section */
.getting-started {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(107, 70, 193, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(107, 70, 193, 0.2);
}

/* ===== UTILITY CLASSES ===== */

.text-center {
    text-align: center;
}

.text-muted {
    color: #6c757d;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */

@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .turn-indicator {
        gap: 0.25rem;
    }
    
    .turn-indicator::before {
        width: 6px;
        height: 6px;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 1.5rem 1rem;
    }
    
    .hero-logo {
        max-height: 60px;
    }
    
    /* Action cards mobile */
    .action-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
    }
    
    .action-cards-wrapper {
        padding: 1.5rem;
    }
    
    /* Score circles mobile */
    .mini-score-circle,
    .avatar-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* Game cards mobile */
    .game-card .card-header {
        padding: 12px 15px;
    }
    
    .game-card .card-body {
        padding: 15px;
    }
    
    .more-games-content {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    /* Fix game card buttons - ensure proper touch targets */
    .game-card .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        display: block;
        width: 100%;
        text-align: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        position: relative;
        z-index: 10;
    }

    /* Ensure game card buttons are clickable on mobile */
    .game-card .game-actions {
        position: relative;
        z-index: 10;
    }

    .game-card .game-actions .btn {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Fix primary action cards alignment and responsiveness */
    .primary-actions .row {
        margin: 0 -10px;
    }

    .primary-actions .col-md-4 {
        padding: 0 10px 20px 10px;
    }

    .action-card {
        height: auto;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .action-card .btn {
        margin-top: auto;
        min-height: 50px;
        font-size: 16px;
        font-weight: 600;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* Fix notification cards buttons */
    .notification-card .btn {
        min-height: 40px;
        font-size: 14px;
        padding: 10px 15px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    .challenge-actions .btn {
        min-height: 36px;
        font-size: 13px;
        padding: 8px 12px;
        margin-bottom: 5px;
    }
    
    /* Fix hero section on mobile */
    .hero-section {
        padding: 2rem 1rem;
        margin: 0 -15px 2rem -15px;
        border-radius: 0;
    }
    
    .hero-logo {
        max-height: 120px;
    }
    
    /* Fix container padding issues on mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ensure buttons don't get clipped */
    .card-body .row .col-5,
    .card-body .row .col-4 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Fix button positioning in game cards */
    .game-actions {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .game-actions .btn {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    /* Very small mobile hero and action cards */
    .hero-section {
        padding: 1.5rem 0.75rem;
    }
    
    .primary-actions {
        padding: 1rem 0.75rem;
    }
    
    .action-card {
        padding: 1.25rem;
        min-height: 260px;
    }
    
    .action-title {
        font-size: 1.1rem;
    }
    
    .action-description {
        font-size: 0.85rem;
    }
    
    .btn-primary-large,
    .btn-success-large,
    .btn-warning-large {
        font-size: 15px;
        padding: 12px 20px;
        min-width: 140px;
    }
    
    /* Stack game card content vertically on very small screens */
    .game-card .card-body .row {
        flex-direction: column;
    }
    
    .game-card .card-body .col-7,
    .game-card .card-body .col-5 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .game-card .card-body .col-5:last-child {
        margin-bottom: 0;
    }
}

/* Tablet-specific fixes (768px - 992px) */
@media (min-width: 769px) and (max-width: 991px) {
    .primary-actions .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    
    .primary-actions .col-md-4:nth-child(3) {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    
    .primary-actions .col-md-4:nth-child(3) .action-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ACTION CARD BUTTON ALIGNMENT FIX */

/* Ensure all action cards have consistent button positioning */
.action-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 320px !important;
}

/* Make all action card buttons consistent */
.action-card .btn {
    width: 100% !important;
    margin-top: auto !important;
    padding: 0.75rem 1rem !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

/* Remove any inline styles that might override this */
.action-card form {
    margin-top: auto !important;
}

.action-card form .btn {
    width: 100% !important;
}

/* HORIZONTAL BUTTON ALIGNMENT FIX */

/* Make all action cards the same height so buttons align horizontally */
.action-cards-wrapper .row {
    display: flex;
    align-items: stretch;
}

.action-cards-wrapper .col-md-4 {
    display: flex;
    flex-direction: column;
}

.action-card {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-height: 350px !important;
    justify-content: space-between !important;
}

/* Create consistent content areas */
.action-card-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* Push buttons to bottom */
.action-card-button {
    margin-top: auto !important;
    padding-top: 1rem !important;
}

/* Specific content area heights to create balance */
.action-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1 !important;
    height: 2.5rem !important;
}

.action-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    height: 1.5rem !important;
    line-height: 1.2 !important;
}

.action-description {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    height: 2.4rem !important;
    line-height: 1.4 !important;
    overflow: hidden !important;
}

/* Fixed height for the middle section (rating/badge area) */
.action-card .rating-display,
.action-card .friend-stats,
.action-card .share-stats {
    height: 2rem !important;
    margin-bottom: 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .action-card {
        min-height: 320px !important;
    }
    
    .action-icon {
        font-size: 2rem !important;
        height: 2rem !important;
    }
    
    .action-title {
        font-size: 1.1rem !important;
        height: 1.3rem !important;
    }
    
    .action-description {
        font-size: 0.85rem !important;
        height: 2.2rem !important;
    }
}

/* ===== ACHIEVEMENT STYLES ===== */

.achievements-section {
    margin-bottom: 2rem;
}

.achievement-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.achievement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3) !important;
    border-color: #ffc107;
}

.achievement-icon {
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.achievement-title {
    color: #ffc107;
    font-size: 1rem;
}

.achievement-desc {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
}

.more-achievements-card {
    border: 2px dashed #dee2e6;
    background: rgba(255, 193, 7, 0.05);
}

.more-achievements-card:hover {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.more-achievements-card .btn-outline-warning {
    border-color: #ffc107;
    color: #ffc107;
}

.more-achievements-card .btn-outline-warning:hover {
    background-color: #ffc107;
    color: #212529;
}

/* Mobile adjustments for achievements */
@media (max-width: 768px) {
    .achievement-card .card-body {
        padding: 1rem;
    }
    
    .achievement-icon {
        font-size: 2.5rem !important;
    }
    
    .achievement-title {
        font-size: 0.9rem;
    }
    
    .achievement-desc {
        font-size: 0.8rem;
    }
}

/* COLOR CONSISTENCY FIXES FOR NUMBERFEUD INTERFACE */

/* Fix white text on white background in search status */
.search-status-card {
    background: rgba(59, 130, 246, 0.08) !important;
    border: 1px solid rgba(59, 130, 246, 0.25) !important;
}

.waiting-message .status-text {
    color: #1F2937 !important;
}

.waiting-subtitle {
    color: #4B5563 !important;
}

/* ===== AVATAR DISPLAY STYLES ===== */

/* Navbar avatar display */
.user-avatar-display {
    background: linear-gradient(135deg, #6B46C1, #9333EA);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
    text-decoration: none;
}

.user-avatar-display:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.5);
    color: white;
    text-decoration: none;
}
/* ===== CALM COLOR GAME CARD VARIANTS ===== */

.game-card-compact.your-turn-calm {
    border-left-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.game-card-compact.their-turn-calm {
    border-left-color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
}

.game-card-compact.waiting-calm {
    border-left-color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}