/* --- Design System and Global Variables --- */
:root {
    --bg-dark: #0f0f1b;
    --bg-card: rgba(25, 25, 45, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    
    --primary: #ff758f;
    --primary-glow: rgba(255, 117, 143, 0.35);
    --secondary: #4ea8de;
    --secondary-glow: rgba(78, 168, 222, 0.35);
    
    --board-border: #1a1a2e;
    --square-dark: #222533; /* Dark grey for playable squares */
    --square-red: #721c24;  /* Crimson red for non-playable squares */
    
    --cat-blonde: #f3c65f;
    --cat-grey: #8a99ad;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* --- High-end Background Aesthetics --- */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(99, 50, 150, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 117, 143, 0.12) 0%, transparent 45%);
    z-index: -2;
    pointer-events: none;
}

.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.5), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 150px 100px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 200px 150px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 300px 80px, #ffffff, rgba(0,0,0,0));
    background-size: 550px 550px;
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

/* --- Header Styling --- */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(15, 15, 27, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.app-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

/* --- Button Styling --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff4d6d 100%);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 117, 143, 0.5);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* --- Game Container & Layout --- */
.game-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    max-width: 1300px;
    width: 100%;
    margin: 2rem auto;
    padding: 0 1.5rem;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .game-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1rem auto;
    }
}

/* --- Left Section: Board & Controls --- */
.board-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.turn-bar {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.8s infinite;
}

.pulse-indicator.ai-turn {
    background-color: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

/* --- The Checkers Board Grid --- */
.board-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1 / 1;
}

.board-outer-ring {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2b2e40, #14151f);
    padding: 18px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    background-color: var(--board-border);
}

/* Board Squares */
.square {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.square.dark {
    background-color: var(--square-dark);
}

.square.red {
    background-color: var(--square-red);
}

/* Cat Face Silhouette on Red Squares */
.cat-silhouette {
    width: 60%;
    height: 60%;
    opacity: 0.12;
    color: #ff9f1c; /* Golden silhouette on red squares */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.square.red:hover .cat-silhouette {
    opacity: 0.18;
}

/* --- Checker Pieces --- */
.piece {
    width: 82%;
    height: 82%;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.2s ease;
    z-index: 2;
    touch-action: none;
}

.piece:hover {
    transform: scale(1.08);
}

.piece.selected {
    transform: scale(1.08);
    box-shadow: 0 0 0 3px #fff, 0 8px 20px rgba(0,0,0,0.6) !important;
}

/* Blonde (Player) Checker Styles */
.piece.blonde-piece {
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--cat-blonde) 30%, #b8860b 100%);
    box-shadow: 0 6px 12px rgba(0,0,0,0.45),
                inset 0 -4px 6px rgba(0,0,0,0.3),
                inset 0 4px 6px rgba(255,255,255,0.4);
}

.piece.blonde-piece.selected {
    box-shadow: 0 0 0 3px #fff, 0 0 20px var(--cat-blonde);
}

/* Grey (AI) Checker Styles */
.piece.grey-piece {
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--cat-grey) 35%, #3e4854 100%);
    box-shadow: 0 6px 12px rgba(0,0,0,0.45),
                inset 0 -4px 6px rgba(0,0,0,0.35),
                inset 0 4px 6px rgba(255,255,255,0.25);
}

.piece.grey-piece.selected {
    box-shadow: 0 0 0 3px #fff, 0 0 20px var(--cat-grey);
}

/* Cat Face Details inside Checker Pieces */
.piece-cat-face {
    width: 72%;
    height: 72%;
    pointer-events: none;
}

/* Crown styles for Kings */
.king-crown {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 50%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    pointer-events: none;
    z-index: 5;
    animation: floatCrown 2s ease-in-out infinite alternate;
}

@keyframes floatCrown {
    0% { transform: translate(-50%, 0); }
    100% { transform: translate(-50%, -3px); }
}

/* Valid Move Highlights */
.square.valid-move::after {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(78, 168, 222, 0.7);
    box-shadow: 0 0 10px var(--secondary);
    position: absolute;
    pointer-events: none;
    animation: pulseMove 1.5s infinite;
}

.square.valid-capture::after {
    background-color: rgba(255, 117, 143, 0.7);
    box-shadow: 0 0 10px var(--primary);
}

@keyframes pulseMove {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* --- Game Stats Section --- */
.game-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 580px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.stat-avatar-placeholder {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--border-color);
}

.blonde-avatar {
    background: radial-gradient(circle, #fff3d1, #f3c65f);
    box-shadow: 0 0 10px rgba(243, 198, 95, 0.2);
}

.grey-avatar {
    background: radial-gradient(circle, #e2e8f0, #8a99ad);
    box-shadow: 0 0 10px rgba(138, 153, 173, 0.2);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-count-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stat-kings {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.king-icon {
    font-size: 0.9rem;
}

/* --- Right Section: AI Profile & Chat Area --- */
.ai-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: calc(100% - 1.5rem);
}

.opponent-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(10px);
}

.avatar-container {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
}

.ai-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #1c1d30;
}

.status-dot.online {
    background-color: #10b981;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.opponent-info {
    display: flex;
    flex-direction: column;
}

.opponent-name {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.opponent-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

.chat-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    overflow: hidden;
    height: 500px;
}

.chat-messages {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    animation: messageSlideIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes messageSlideIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Archimedes chat bubble styling */
.message.archimedes-msg {
    align-self: flex-start;
}

.message.archimedes-msg .msg-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-radius: 4px 20px 20px 20px;
    padding: 0.95rem 1.25rem;
    font-size: 1.02rem;
    line-height: 1.45;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.message.system-msg {
    align-self: center;
    max-width: 100%;
}

.message.system-msg .msg-content {
    background: rgba(78, 168, 222, 0.08);
    border: 1px solid rgba(78, 168, 222, 0.15);
    color: var(--secondary);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

/* Chat bubble styling for Typing Indicator */
.typing-indicator {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px 16px 16px 16px;
    padding: 0.8rem 1.2rem;
    display: none; /* Controlled by JS */
    gap: 0.35rem;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.typing-indicator .dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    animation: bounceDot 1.4s infinite ease-in-out both;
}

.typing-indicator .dot:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounceDot {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    display: none; /* Controlled by JS */
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #171827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
}

.modal-header h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.btn-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.btn-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.75rem;
    max-height: 65vh;
    overflow-y: auto;
}

.rules-section {
    margin-bottom: 1.5rem;
}

.rules-section:last-child {
    margin-bottom: 0;
}

.rules-section h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rules-section ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

.rules-section li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
    line-height: 1.5;
}

.rules-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.01);
}

/* --- Game Over Modal Specifics --- */
.text-center {
    text-align: center;
}

.gameover-crown {
    font-size: 4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

#gameover-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff4d6d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#gameover-message {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.gameover-actions {
    margin-bottom: 2.25rem;
    display: flex;
    justify-content: center;
}

/* --- Footer --- */
.app-footer-info {
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    background: rgba(10, 10, 20, 0.4);
    margin-top: auto;
}

.app-footer-info a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.app-footer-info a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- More Cat Games Modal --- */
.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cat-games-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for the Games list */
.cat-games-list::-webkit-scrollbar {
    width: 6px;
}
.cat-games-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}
.cat-games-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.cat-games-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cat-games-list li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.cat-games-list li a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-favicon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    background-color: rgba(255, 255, 255, 0.08);
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.game-name {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.25px;
    color: var(--text-primary);
}

.game-domain {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: monospace;
}

/* --- Animations --- */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* --- Mobile Screen Optimization --- */
@media (max-width: 600px) {
    .app-header {
        padding: 0.85rem 1rem;
    }
    
    .app-title {
        font-size: 1.25rem;
    }
    
    .header-logo {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .game-container {
        padding: 0 0.5rem;
        margin: 0.5rem auto 1.5rem auto;
        gap: 1rem;
    }
    
    .turn-bar {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .board-outer-ring {
        padding: 8px;
        border-radius: 18px;
    }
    
    .game-stats {
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 12px;
    }
    
    .stat-avatar-placeholder {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .opponent-card {
        padding: 0.85rem;
        gap: 0.85rem;
        border-radius: 14px;
    }
    
    .avatar-container {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .chat-container {
        height: 175px;
        border-radius: 14px;
    }
    
    .chat-messages {
        padding: 1rem;
        gap: 1rem;
    }
    
    .message.archimedes-msg .msg-content {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .modal-content {
        border-radius: 18px;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
    
    .cat-games-list li a {
        padding: 0.65rem 1rem;
        gap: 0.85rem;
        border-radius: 10px;
    }
    
    .game-favicon {
        width: 30px;
        height: 30px;
        border-radius: 6px;
    }
    
    .game-name {
        font-size: 0.95rem;
    }
    
    .game-domain {
        font-size: 0.75rem;
    }
}
