@font-face {
    font-family: 'Rabar';
    src: url('assets/fonts/Rabar.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rabar';
    src: url('assets/fonts/Rabar-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
    font-family: 'Rabar';
    font-size: 14px;
}

body {
    font-family: inherit;
    font-size: 1rem;
    background: #0d0e15; /* Deep dark premium background */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(20, 90, 200, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(200, 40, 100, 0.15), transparent 25%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
    padding: 16px;
    position: relative;
    color: #f0f0f5;
    overflow-x: hidden;
}

*, *::before, *::after {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    user-select: none; 
    font-family: 'Rabar' !important;
}

button, input, textarea, select, optgroup {
    font-family: 'Rabar' !important;
    font-weight: normal !important;
}

input, textarea { 
    -webkit-user-select: text; 
    -moz-user-select: text; 
    user-select: text; 
}

/* Animated background orbs */
body::before, body::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatOrb 10s infinite alternate ease-in-out;
}
body::before {
    top: -50px;
    left: -50px;
    background: rgba(0, 150, 255, 0.2);
}
body::after {
    bottom: -50px;
    right: -50px;
    background: rgba(255, 0, 128, 0.2);
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.game-container {
    width: 100%;
    max-width: 400px;
    background: rgba(20, 22, 35, 0.65) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 24px 18px;
    box-shadow: 
        0 16px 40px rgba(0,0,0,0.45), 
        inset 0 1px 1px rgba(255,255,255,0.1);
    position: relative;
    border: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 12px;
    z-index: 2;
}

/* Text styles */
h1 { 
    font-size: 2.4rem; 
    font-weight: bold; 
    text-align: center; 
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    text-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

h2 { 
    font-size: 1.8rem; 
    text-align: center; 
    margin-bottom: 24px; 
    color: #e0e0e0;
    position: relative; 
    padding-bottom: 12px; 
    font-weight: bold; 
}
h2::after { 
    content: ""; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 60px; 
    height: 3px; 
    background: linear-gradient(90deg, #ff416c, #ff4b2b); 
    border-radius: 3px; 
    box-shadow: 0 2px 10px rgba(255, 65, 108, 0.5);
}

/* Image */
.animated-icon { text-align: center; margin: 10px 0 30px 0; }
.game-icon { 
    width: 260px; 
    height: auto; 
    animation: floatIcon 4s infinite ease-in-out;
    filter: drop-shadow(0 15px 25px rgba(0, 210, 255, 0.2)); 
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    cursor: pointer; 
}
.game-icon:hover { 
    animation: none; 
    transform: scale(1.08) translateY(-5px); 
    filter: drop-shadow(0 20px 35px rgba(0, 210, 255, 0.4)); 
}
@keyframes floatIcon { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-12px); } 
}

/* Links */
.how-to-play-link { 
    text-align: center; 
    margin: 10px 0 20px 0; 
    font-size: 1.1rem; 
    color: #8c9eff;
    cursor: pointer; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    display: inline-block;
    width: 100%;
}
.how-to-play-link:hover { 
    color: #fff; 
    text-shadow: 0 0 10px rgba(140, 158, 255, 0.6); 
    transform: translateY(-1px);
}

/* Buttons */
.btn { 
    width: 100%; 
    padding: 14px 20px; 
    border: none !important; 
    border-radius: 18px; 
    font-size: 1rem;
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    margin: 10px 0;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    color: white !important;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}
.btn:hover::after { left: 150%; }

.btn-blue { 
    background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important; 
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3), inset 0 1px 1px rgba(255,255,255,0.2) !important; 
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 210, 255, 0.5) !important; }

.btn-red { 
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important; 
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.3), inset 0 1px 1px rgba(255,255,255,0.2) !important; 
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255, 65, 108, 0.5) !important; }

.btn-yellow { 
    background: linear-gradient(135deg, #fceabb, #f8b500) !important; 
    color: #1a1a1a !important; 
    box-shadow: 0 8px 25px rgba(248, 181, 0, 0.3), inset 0 1px 1px rgba(255,255,255,0.5) !important; 
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(248, 181, 0, 0.5) !important; }

/* Counters */
.counter-container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 20px;
    margin: 24px 0; 
    background: rgba(255, 255, 255, 0.03); 
    padding: 16px; 
    border-radius: 24px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2); 
    border: 1px solid rgba(255, 255, 255, 0.05) !important; 
}
.counter-btn { 
    width: 50px; 
    height: 50px; 
    border-radius: 16px;
    background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 2rem; 
    font-weight: bold; 
    color: #fff; 
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.counter-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.counter-btn:active { transform: scale(0.92); }
.counter-value { font-size: 2.8rem; font-weight: bold; color: #fff; min-width: 70px; text-align: center; text-shadow: 0 0 15px rgba(255,255,255,0.3); }

/* Inputs */
.player-input { 
    width: 100%; 
    padding: 18px 22px; 
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
    border-radius: 20px; 
    background: rgba(0, 0, 0, 0.2) !important;
    font-size: 1.1rem; 
    text-align: right; 
    direction: rtl;
    color: #fff;
    font-family: 'Rabar';
    transition: all 0.3s ease; 
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3); 
}
.player-input:focus { 
    outline: none; 
    border-color: #00d2ff !important; 
    background: rgba(0, 210, 255, 0.05) !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2), inset 0 2px 5px rgba(0,0,0,0.3); 
}
.player-input::placeholder { color: rgba(255,255,255,0.3); }

/* Cards (Facedown) */
.card-facedown {
    position: relative;
    border-radius: 28px;
    padding: 0;
    margin: 24px 0;
    cursor: pointer;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #1f1c2c 0%, #928DAB 100%) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.4) !important;
    animation: cardHover 3s ease-in-out infinite alternate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: transform 0.3s;
}
@keyframes cardHover {
    0% { transform: translateY(0); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
    100% { transform: translateY(-10px); box-shadow: 0 25px 45px rgba(0,0,0,0.5); }
}
.card-facedown::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    border-radius: 28px;
}
.card-facedown::after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 20px;
    pointer-events: none;
}
.card-facedown-name {
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.card-facedown-hint {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.2);
    padding: 10px 24px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}
.card-facedown-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6));
}
.card-facedown:active { transform: scale(0.95) !important; animation: none !important; }

/* Revealed Cards */
.card-reveal-anim { animation: revealPop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes revealPop {
    0% { opacity:0; transform: scale(0.8) translateY(20px) rotate(-5deg); }
    100% { opacity:1; transform: scale(1) translateY(0) rotate(0deg); }
}

.card-spy-revealed {
    background: linear-gradient(135deg, rgba(255, 65, 108, 0.15), rgba(255, 75, 43, 0.15)) !important;
    border: 1px solid rgba(255, 65, 108, 0.4) !important;
    box-shadow: 0 15px 40px rgba(255, 65, 108, 0.2), inset 0 0 30px rgba(255, 65, 108, 0.1) !important;
    cursor: default; padding: 40px 20px; border-radius: 32px; text-align: center;
    backdrop-filter: blur(10px);
}
.card-civilian-revealed {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(58, 123, 213, 0.15)) !important;
    border: 1px solid rgba(0, 210, 255, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.2), inset 0 0 30px rgba(0, 210, 255, 0.1) !important;
    cursor: default; padding: 40px 20px; border-radius: 32px; text-align: center;
    backdrop-filter: blur(10px);
}
.card-white-revealed {
    background: rgba(255,255,255,0.05) !important; color: #fff !important; 
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
    cursor: default; padding: 40px 20px; border-radius: 32px; text-align: center;
    backdrop-filter: blur(10px);
}
.card-white-revealed .word-display { background: rgba(255,255,255,0.1) !important; color: #fff !important; border: 1px solid rgba(255,255,255,0.3) !important; }

/* Role text fixes for dark mode */
.card-spy-revealed div, .card-civilian-revealed div { color: #fff !important; }

/* Co-spy box */
.cospy-box {
    margin-top: 20px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,65,108,0.3);
    border-radius: 20px;
    padding: 16px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}
.cospy-label { font-size: 1rem; color: #ff8a8a; margin-bottom: 8px; }
.cospy-name { font-size: 1.5rem; font-weight: bold; color: #fff; margin: 4px 0; }

/* Progress & Generic Info */
.progress { 
    background: rgba(255,255,255,0.05) !important; 
    padding: 14px; 
    border-radius: 20px !important; 
    text-align: center;
    margin: 20px 0; 
    font-size: 1.1rem; 
    color: #fff !important; 
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.1) !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important; 
}

.word-display { 
    font-size: 3.2rem; 
    font-weight: bold; 
    padding: 24px 36px; 
    border-radius: 24px;
    display: inline-block; 
    margin: 20px 0; 
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.2);
}

.starter-box { 
    background: linear-gradient(135deg, rgba(248,181,0,0.15), rgba(252,234,187,0.15)) !important; 
    color: #fff !important;
    padding: 30px; 
    border-radius: 32px; 
    margin: 24px 0; 
    text-align: center;
    border: 1px solid rgba(248,181,0,0.4) !important; 
    box-shadow: 0 15px 30px rgba(248,181,0,0.15) !important;
    backdrop-filter: blur(10px);
}
.starter-name { font-size: 2.8rem; font-weight: bold; margin: 12px 0; color: #f8b500 !important; text-shadow: 0 0 15px rgba(248,181,0,0.3); }

/* Reveal Card Container */
.reveal-card { 
    background: rgba(20,22,35,0.8) !important; 
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 32px; 
    padding: 35px 24px; 
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important; 
    margin: 24px 0; 
    backdrop-filter: blur(20px);
}
.person-name { font-size: 2.5rem; margin: 20px 0; font-weight: bold; color: #fff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.reveal-card div[style*="background:#333"] {
    background: rgba(0,0,0,0.3) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3) !important;
}

/* Results */
.results-container { 
    background: transparent !important; 
    border-radius: 0 !important; 
    padding: 0 !important; 
    margin: 24px 0;
    border: none !important; 
}
.player-result { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 16px 20px; 
    margin: 10px 0; 
    background: rgba(255,255,255,0.05) !important; 
    border-radius: 20px;
    font-size: 1.2rem; 
    border: 1px solid rgba(255,255,255,0.08) !important; 
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.spy-badge, .different-badge { background: linear-gradient(135deg, #ff416c, #ff4b2b) !important; color: white !important; padding: 8px 20px; border-radius: 20px; font-weight: bold; }
.civilian-badge, .normal-badge { background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important; color: white !important; padding: 8px 20px; border-radius: 20px; font-weight: bold; }

.word-box { 
    background: rgba(255,255,255,0.05) !important; 
    border: 1px solid rgba(255,255,255,0.1) !important; 
    border-radius: 24px;
    padding: 24px; 
    margin: 20px 0; 
    text-align: center; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}
.word-label { color: rgba(255,255,255,0.7) !important; font-size: 1.2rem; }
.word-value { color: #fff !important; font-size: 2.8rem; font-weight: bold; text-shadow: 0 0 15px rgba(255,255,255,0.2); }
.word-value-different { color: #ff416c !important; font-size: 2.8rem; font-weight: bold; text-shadow: 0 0 15px rgba(255,65,108,0.3); }

/* Modals */
.game-modal, .how-to-play-modal { 
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.75) !important; 
    backdrop-filter: blur(15px); 
    z-index: 10000;
    display: flex; justify-content: center; align-items: center; padding: 20px; 
}
.game-modal-content, .how-to-play-content { 
    background: rgba(20,22,35,0.9) !important; 
    border-radius: 34px !important; 
    padding: 30px 24px;
    max-width: 420px; width: 100%; text-align: center;
    box-shadow: 0 24px 48px rgba(0,0,0,0.55), inset 0 1px 1px rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    color: #fff;
}
@keyframes modalPop { 
    from { opacity: 0; transform: scale(0.9) translateY(20px); } 
    to { opacity: 1; transform: scale(1) translateY(0); } 
}
.game-modal-title { font-size: 2.2rem; font-weight: bold; margin-bottom: 24px; color: #fff !important; }
.game-modal-text { 
    font-size: 1.3rem; 
    line-height: 1.7; 
    color: rgba(255,255,255,0.9) !important; 
    margin: 24px 0;
    padding: 20px; 
    background: rgba(0,0,0,0.3) !important; 
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05) !important; 
    text-align: right; 
}
.game-modal-btn.confirm { background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important; color: white !important; }
.game-modal-btn.cancel { background: rgba(255,255,255,0.1) !important; color: white !important; border: 1px solid rgba(255,255,255,0.2) !important; }

/* Utilities */
.hidden { display: none !important; }
.welcome-text { color: rgba(255,255,255,0.7) !important; text-align: center; margin: 15px 0 30px 0; font-size: 1.2rem; line-height: 1.6; }
hr { background: rgba(255,255,255,0.1) !important; }

/* Notifications */
.welcome-notification {
    position: fixed !important;
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20000 !important;
    max-width: 80% !important;
    font-size: 0.9rem !important;
    background: rgba(20,22,35,0.85) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    animation: slideDown 0.45s ease, fadeOut 0.45s ease 4.5s forwards !important;
}

@keyframes slideDown {
    from { top: -60px; opacity: 0; transform: translateX(-50%) scale(0.95); }
    to { top: 15px; opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(-50%) translateY(-10px); visibility: hidden; }
}

/* Custom override for headings in instructions */
.how-to-play-content h2 { color: #fff !important; }
.how-to-play-content h2::after { display: none; }

/* Missing Buttons Base */
.game-modal-buttons { 
    display: flex; 
    gap: 15px; 
    margin-top: 24px; 
}
.game-modal-btn { 
    flex: 1; 
    padding: 18px; 
    border: none; 
    border-radius: 20px; 
    font-size: 1.25rem;
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Rabar' !important;
    color: white !important;
}
.game-modal-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important; }


/* Missing Buttons */
.reveal-btn, .how-to-play-option, .how-to-play-close {
    width: 100%; 
    padding: 16px 24px; 
    border: none !important; 
    border-radius: 20px; 
    font-size: 1.25rem;
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    margin: 10px 0;
    font-family: 'Rabar' !important;
    color: white !important;
}

.reveal-btn {
    background: linear-gradient(135deg, #fceabb, #f8b500) !important;
    color: #1a1a1a !important;
    box-shadow: 0 8px 25px rgba(248, 181, 0, 0.3), inset 0 1px 1px rgba(255,255,255,0.5) !important; 
    font-size: 1.4rem;
}
.reveal-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(248, 181, 0, 0.5) !important; }

.how-to-play-option.blue {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5) !important;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3), inset 0 1px 1px rgba(255,255,255,0.2) !important; 
}
.how-to-play-option.red {
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important;
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.3), inset 0 1px 1px rgba(255,255,255,0.2) !important; 
}
.how-to-play-option:hover { transform: translateY(-3px); }

.how-to-play-close {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    margin-top: 20px;
}
.how-to-play-close:hover { background: rgba(255,255,255,0.2) !important; }

@media (max-width: 520px) {
    .game-container {
        padding: 22px 16px;
        border-radius: 24px;
    }
    .game-icon {
        width: min(220px, 72vw);
    }
    .welcome-text,
    .card-facedown-name,
    .card-facedown-hint,
    .player-result,
    .word-value,
    .word-value-different,
    .word-label,
    .counter-value,
    .how-to-play-link,
    .player-input,
    .btn,
    .game-modal-title,
    .game-modal-text,
    .game-modal-btn,
    .reveal-btn,
    .how-to-play-option,
    .how-to-play-close {
        font-size: 1rem;
    }
    .btn {
        padding: 14px 16px;
    }
    .counter-container {
        gap: 12px;
        padding: 14px;
    }
    .counter-value {
        font-size: 2rem;
        min-width: 55px;
    }
    .card-facedown {
        height: auto;
        padding: 24px 18px;
    }
    .word-display,
    .starter-box,
    .reveal-card {
        padding: 20px;
    }
    .word-display {
        font-size: 2rem;
    }
    .player-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .game-modal-content,
    .how-to-play-content {
        padding: 28px 20px;
        max-width: 100%;
    }
}
