/* ============================================
   ARENA CSS — P2P Combat Arena Styles
   This is a NEW stylesheet, does NOT modify style.css
   ============================================ */

/* ── Arena Layout ─────────────────────────── */
.arena-main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Wallet Button ────────────────────────── */
.wallet-connect-btn {
    background: linear-gradient(135deg, #9945ff, #14f195);
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-connect-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.5);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 25px;
    padding: 6px 14px;
}

.wallet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39ff14;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.wallet-addr {
    font-family: monospace;
    font-size: 0.85rem;
    color: #39ff14;
}

.wallet-disconnect {
    background: none;
    border: none;
    color: #ff073a;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 4px;
}

/* ── Arena Stats Bar ──────────────────────── */
.arena-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.arena-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}

.create-fight-btn {
    background: linear-gradient(135deg, #ff073a, #ff6b35);
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.create-fight-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 7, 58, 0.5);
}

/* ── Filter Tabs ──────────────────────────── */
.arena-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: rgba(153, 69, 255, 0.2);
    border-color: rgba(153, 69, 255, 0.5);
    color: #fff;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── Fights List ──────────────────────────── */
.fights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-lobby {
    text-align: center;
    padding: 60px 20px;
    color: #555;
}

.empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.3;
}

/* ── Fight Card ───────────────────────────── */
.fight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease;
}

.fight-card:hover {
    border-color: rgba(153, 69, 255, 0.4);
    background: rgba(153, 69, 255, 0.05);
    transform: translateY(-2px);
}

.fight-card.fight-active {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

.fight-card.fight-own {
    border-color: rgba(57, 255, 20, 0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fight-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fight-token-badge {
    background: linear-gradient(135deg, #9945ff, #14f195);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.fight-amount {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.fight-status-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.status-waiting {
    background: rgba(255, 170, 0, 0.15);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.status-active {
    background: rgba(255, 7, 58, 0.15);
    color: #ff073a;
    border: 1px solid rgba(255, 7, 58, 0.3);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 7, 58, 0.2); }
    50% { box-shadow: 0 0 15px rgba(255, 7, 58, 0.5); }
}

.fight-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.fight-creator, .fight-challenger {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.fight-challenger {
    justify-content: flex-end;
    text-align: right;
}

.fight-fighter-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fight-fighter-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.fight-wallet {
    font-size: 0.7rem;
    color: #666;
    font-family: monospace;
}

.fight-vs {
    font-weight: 900;
    font-size: 1.4rem;
    color: #ff073a;
    text-shadow: 0 0 10px rgba(255, 7, 58, 0.5);
    flex-shrink: 0;
}

.challenger-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #444;
}

.fight-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fight-time {
    font-size: 0.7rem;
    color: #555;
}

.join-fight-btn {
    background: linear-gradient(135deg, #39ff14, #14f195);
    border: none;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.join-fight-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.cancel-fight-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.watch-fight-btn {
    background: rgba(153, 69, 255, 0.15);
    border: 1px solid rgba(153, 69, 255, 0.3);
    color: #9945ff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
}

/* ── Create Fight Modal ───────────────────── */
.arena-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.arena-modal-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.arena-modal {
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-close-btn:hover {
    background: rgba(255, 7, 58, 0.3);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff073a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ── Fighter Grid (Modal) ─────────────────── */
.arena-fighter-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.arena-fighter-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn-sm {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn-sm:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-sm {
    font-size: 0.75rem;
    color: #666;
}

.arena-fighter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.arena-fighter-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arena-fighter-card:hover {
    border-color: rgba(153, 69, 255, 0.5);
    transform: scale(1.05);
}

.arena-fighter-card.selected {
    border-color: #39ff14;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
    background: rgba(57, 255, 20, 0.05);
}

.arena-fighter-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 4px;
}

.af-name {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.af-id {
    font-size: 0.55rem;
    color: #555;
}

.fighter-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    min-height: 50px;
}

.fighter-preview .preview-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

/* ── Token & Bet Inputs ───────────────────── */
.token-input-row, .bet-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arena-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s;
    flex: 1;
}

.arena-input:focus {
    border-color: rgba(153, 69, 255, 0.5);
}

.token-input {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bet-token-tag {
    background: linear-gradient(135deg, #9945ff, #14f195);
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.8rem;
}

.popular-tokens {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.pop-label {
    font-size: 0.7rem;
    color: #555;
}

.token-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.token-chip:hover {
    background: rgba(153, 69, 255, 0.2);
    color: #fff;
    border-color: rgba(153, 69, 255, 0.4);
}

.fee-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: #888;
}

.join-match-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    color: #ccc;
    padding: 15px;
    background: rgba(153, 69, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(153, 69, 255, 0.2);
}

.create-confirm-btn {
    width: 100%;
    margin-top: 10px;
}

/* ── P2P Fight Page ───────────────────────── */
.p2p-bet-bar {
    text-align: center;
    padding: 10px 20px;
    margin: 10px 20px;
    font-size: 0.85rem;
    color: #aaa;
    border-radius: 12px;
}

.p2p-battle-stage {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 70vh;
}

.p2p-fighter-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.15s ease;
}

.p2p-fighter-label {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 4px 14px;
    border-radius: 6px;
}

.you-label {
    background: rgba(57, 255, 20, 0.15);
    color: #39ff14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.opp-label {
    background: rgba(255, 7, 58, 0.15);
    color: #ff073a;
    border: 1px solid rgba(255, 7, 58, 0.3);
}

.p2p-fighter-card {
    text-align: center;
}

.p2p-fighter-img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.p2p-fighter-name {
    margin: 8px 0 0;
    font-size: 1rem;
    font-weight: 900;
}

.p2p-hp-container {
    width: 100%;
    max-width: 180px;
}

.p2p-hp-label {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 4px;
    text-align: center;
}

.p2p-hp-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.p2p-hp-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease, background 0.5s ease;
}

/* ── VS Center ────────────────────────────── */
.p2p-vs-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 0.8;
}

.p2p-vs-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff073a;
    text-shadow: 0 0 30px rgba(255, 7, 58, 0.6), 0 0 60px rgba(255, 7, 58, 0.3);
    animation: vs-glow 2s infinite;
}

@keyframes vs-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 7, 58, 0.6); }
    50% { text-shadow: 0 0 50px rgba(255, 7, 58, 0.8), 0 0 80px rgba(255, 7, 58, 0.4); }
}

/* ── Dice (P2P) ───────────────────────────── */
.p2p-dice-wrapper {
    perspective: 300px;
    width: 70px;
    height: 70px;
}

.p2p-dice {
    width: 70px;
    height: 70px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.p2p-dice .face {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 12px;
    background: rgba(10, 10, 30, 0.95);
    border: 2px solid rgba(153, 69, 255, 0.5);
    color: #fff;
}

.p2p-dice .front  { transform: translateZ(35px); }
.p2p-dice .back   { transform: rotateY(180deg) translateZ(35px); }
.p2p-dice .right  { transform: rotateY(90deg) translateZ(35px); }
.p2p-dice .left   { transform: rotateY(-90deg) translateZ(35px); }
.p2p-dice .top    { transform: rotateX(90deg) translateZ(35px); }
.p2p-dice .bottom { transform: rotateX(-90deg) translateZ(35px); }

.p2p-dice.rolling {
    animation: dice-spin 0.6s ease;
}

@keyframes dice-spin {
    0% { transform: rotateX(0) rotateY(0); }
    100% { transform: rotateX(720deg) rotateY(720deg); }
}

.p2p-dice.show-1 { transform: rotateY(0deg); }
.p2p-dice.show-2 { transform: rotateX(-90deg); }
.p2p-dice.show-3 { transform: rotateY(-90deg); }
.p2p-dice.show-4 { transform: rotateY(90deg); }
.p2p-dice.show-5 { transform: rotateX(90deg); }
.p2p-dice.show-6 { transform: rotateY(180deg); }

/* ── P2P Controls ─────────────────────────── */
.p2p-controls {
    text-align: center;
}

.p2p-predict-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.p2p-btn-group {
    display: flex;
    gap: 10px;
}

.p2p-battle-log {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #aaa;
    min-height: 24px;
    padding: 8px;
}

.p2p-seeds {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 260px;
}

.p2p-seed-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.p2p-seed-row label {
    font-size: 0.6rem;
    color: #555;
    white-space: nowrap;
    min-width: 75px;
}

.p2p-seed-row .seed-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #666;
    font-family: monospace;
    font-size: 0.6rem;
    padding: 4px 8px;
    border-radius: 6px;
}

/* ── Turn Indicator ───────────────────────── */
.turn-indicator {
    font-size: 0.8rem;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.turn-indicator.your-turn {
    background: rgba(57, 255, 20, 0.15);
    color: #39ff14;
    border: 1px solid rgba(57, 255, 20, 0.3);
    animation: pulse-turn 1s infinite;
}

.turn-indicator.their-turn {
    background: rgba(255, 170, 0, 0.15);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

@keyframes pulse-turn {
    0%, 100% { box-shadow: 0 0 5px rgba(57, 255, 20, 0.2); }
    50% { box-shadow: 0 0 15px rgba(57, 255, 20, 0.5); }
}

.round-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9945ff;
    background: rgba(153, 69, 255, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(153, 69, 255, 0.2);
}

/* ── Result Overlay ───────────────────────── */
.p2p-result-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.p2p-result-overlay.hidden {
    display: none;
}

.p2p-result-box {
    text-align: center;
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 400px;
}

.p2p-result-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.p2p-result-msg {
    font-size: 1rem;
    color: #aaa;
}

/* ── Toast Notifications ──────────────────── */
.arena-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(20, 20, 40, 0.95);
    border: 1px solid rgba(153, 69, 255, 0.3);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 12px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.arena-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.arena-toast.toast-success {
    border-color: rgba(57, 255, 20, 0.4);
}

.arena-toast.toast-info {
    border-color: rgba(153, 69, 255, 0.4);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 768px) {
    .p2p-battle-stage {
        flex-direction: column;
        align-items: center;
    }

    .p2p-fighter-side {
        flex-direction: row;
        gap: 15px;
    }

    .p2p-fighter-img {
        width: 100px;
        height: 100px;
    }

    .arena-stats-bar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .arena-fighter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fight-card-body {
        flex-direction: column;
        gap: 8px;
    }

    .fight-challenger {
        justify-content: flex-start;
    }
}

/* ── Turn Timer ───────────────────────────── */
.turn-timer {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffaa00;
    margin-left: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.turn-timer.pulse-fast {
    animation: timer-panic 0.5s infinite alternate;
}

@keyframes timer-panic {
    0% { transform: scale(1); text-shadow: 0 0 5px #ff073a; }
    100% { transform: scale(1.1); text-shadow: 0 0 15px #ff073a; }
}

.turn-timer.hidden {
    display: none;
}
