/* * BETZILLO V7.0 - TITAN THEME
 * Focus: Gamification, Live Interaction, "Stories" UX
 */
:root {
    --bg-body: #0d0415;
    --bg-surface: #180824;
    --bg-surface-light: #250d36;
    --bg-glass: rgba(24, 8, 36, 0.85);
    
    --brand-yellow: #ffe600; /* More vibrant neon */
    --brand-purple: #b026ff;
    --brand-green: #00ff94;
    --brand-red: #ff2a2a;
    
    --text-white: #ffffff;
    --text-muted: #8e8699;
    
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --glow-yellow: 0 0 20px rgba(255, 230, 0, 0.3);
    
    --nav-h: 64px;
    --bottom-nav-h: 80px;
    
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg-body);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: calc(var(--bottom-nav-h) + 20px);
    overflow-x: hidden;
}

h1, h2, h3, .heading-font { font-family: 'Kanit', sans-serif; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }

/* Links as buttons */
a.btn, a.market-btn, a.game-card, a.nav-item, a.nav-center {
    display: inline-block;
    text-decoration: none;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.hidden-desktop { display: none; }

/* --- HEADER (SMART STICKY) --- */
.site-header {
    height: var(--nav-h);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    border-bottom: var(--border-glass);
    transition: transform 0.3s var(--ease-out);
}
.site-header.hide { transform: translateY(-100%); }

.header-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.logo { font-family: 'Kanit', sans-serif; font-size: 26px; font-weight: 900; font-style: italic; letter-spacing: -0.5px; color: #fff; }
.logo span { color: var(--brand-yellow); }

.desktop-menu { display: flex; gap: 30px; }
.menu-link { font-weight: 700; text-transform: uppercase; color: var(--text-muted); font-size: 13px; transition: 0.2s; }
.menu-link:hover, .menu-link.active { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.header-actions { display: flex; gap: 12px; }
.btn {
    padding: 10px 24px; border-radius: 8px; font-weight: 800; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.5px; transition: 0.2s; position: relative; overflow: hidden;
}
.btn-login { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-login:hover { border-color: #fff; }

.btn-primary {
    background: var(--brand-yellow); color: #000;
    box-shadow: var(--glow-yellow);
}
.btn-primary:hover { transform: translateY(-2px); background: #fff; }

/* Shimmer Effect for Primary Button */
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 3s infinite;
}

/* --- STORIES BAR (Instagram Style) --- */
.stories-container {
    margin-top: calc(var(--nav-h) + 10px);
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.stories-container::-webkit-scrollbar { display: none; }

.stories-scroll { display: flex; gap: 16px; padding: 0 16px; width: max-content; }

.story-item { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; }
.story-ring {
    width: 68px; height: 68px; border-radius: 50%; padding: 3px;
    background: linear-gradient(45deg, var(--brand-yellow), #ff0055);
    position: relative;
}
.story-ring.seen { background: #333; }
.story-img {
    width: 100%; height: 100%; border-radius: 50%; border: 3px solid var(--bg-body);
    background-size: cover; background-position: center;
}
.story-label { font-size: 11px; font-weight: 600; color: #fff; }

/* --- HERO BANNER (3D Effect) --- */
.hero-wrap { padding: 20px 0; perspective: 1000px; margin-top: calc(var(--nav-h) + 20px); }
.hero-card {
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: var(--border-glass); 
    border-radius: 24px; 
    padding: 40px;
    position: relative; 
    overflow: hidden;
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.hero-content { 
    z-index: 2; 
    position: relative; 
}

.promo-tag {
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; color: var(--brand-yellow);
}

h1 { font-size: 48px; line-height: 1; margin-bottom: 20px; font-weight: 800; text-transform: uppercase; }
h1 span { color: transparent; -webkit-text-stroke: 1px #fff; }
h1 strong { color: var(--brand-yellow); }

.hero-stats { display: flex; gap: 20px; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-val { font-family: 'Kanit'; font-size: 20px; font-weight: 700; color: #fff; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

/* --- LIVE ODDS TICKER --- */
.odds-ticker {
    background: var(--bg-surface); border-top: var(--border-glass); border-bottom: var(--border-glass);
    padding: 12px 0; overflow: hidden; white-space: nowrap; margin-bottom: 30px;
}
.ticker-track { display: inline-block; animation: scroll 20s linear infinite; }
.ticker-item {
    display: inline-flex; align-items: center; gap: 8px; margin-right: 30px;
    font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.ticker-live { color: var(--brand-red); font-weight: 800; font-size: 10px; padding: 2px 4px; border: 1px solid var(--brand-red); border-radius: 4px; }
.ticker-odds { color: var(--brand-green); font-family: 'Kanit'; font-weight: 700; }

/* --- BETTING INTERFACE (Pro Style) --- */
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.head-title { font-family: 'Kanit'; font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.pulse-dot { width: 10px; height: 10px; background: var(--brand-red); border-radius: 50%; box-shadow: 0 0 10px var(--brand-red); animation: pulse 1s infinite; }

.sports-filter { display: flex; gap: 10px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.filter-chip {
    background: var(--bg-surface); border: var(--border-glass); padding: 10px 20px;
    border-radius: 30px; white-space: nowrap; font-weight: 700; font-size: 13px;
    color: var(--text-muted); cursor: pointer; transition: 0.2s;
}
.filter-chip.active { background: #fff; color: #000; border-color: #fff; }

.match-card {
    background: var(--bg-surface); border: var(--border-glass); border-radius: 16px;
    padding: 20px; margin-bottom: 16px; position: relative;
}
.match-header { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.match-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.team-name { font-size: 15px; font-weight: 600; color: #fff; }
.team-score { font-family: 'Kanit'; font-size: 18px; color: var(--brand-yellow); }

.market-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.market-btn {
    background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px;
    display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
    transition: 0.2s; position: relative; overflow: hidden;
}
.market-btn:active { transform: scale(0.95); background: rgba(255,255,255,0.1); }
.market-btn.up .market-val { color: var(--brand-green); animation: flashGreen 0.5s; }
.market-btn.down .market-val { color: var(--brand-red); animation: flashRed 0.5s; }

.market-label { font-size: 10px; color: var(--text-muted); font-weight: 700; }
.market-val { font-family: 'Kanit'; font-size: 14px; font-weight: 700; color: #fff; }

/* --- CASINO SLIDER --- */
.casino-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px;
}
.game-card {
    aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; position: relative;
    border: var(--border-glass); cursor: pointer; transition: 0.3s;
}
.game-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); border-color: var(--brand-yellow); }
.game-bg { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}
.game-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px;
    background: linear-gradient(to top, #000, transparent);
}
.game-name { font-weight: 700; font-size: 13px; line-height: 1.2; }

/* --- REGISTRATION MODAL (Overlay) --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.reg-modal {
    background: #180824; width: 90%; max-width: 400px; border-radius: 24px;
    padding: 30px; border: 1px solid var(--brand-yellow);
    transform: scale(0.9); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.modal-overlay.open .reg-modal { transform: scale(1); }

.close-modal { position: absolute; top: 15px; right: 20px; font-size: 24px; color: #fff; cursor: pointer; }

.progress-bar { width: 100%; height: 6px; background: #333; border-radius: 3px; margin: 20px 0; overflow: hidden; }
.progress-fill { width: 50%; height: 100%; background: var(--brand-yellow); }

.modal-input {
    width: 100%; background: #0d0415; border: 1px solid #333; padding: 15px;
    border-radius: 8px; color: #fff; margin-bottom: 12px; font-family: 'Inter';
}
.modal-input:focus { border-color: var(--brand-yellow); }

/* --- MOBILE BOTTOM NAV --- */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%; height: var(--bottom-nav-h);
    background: rgba(13, 4, 21, 0.95); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: var(--border-glass); 
    display: none; /* Hidden by default on desktop */
    justify-content: space-around;
    align-items: flex-start;
    padding: 8px 0 calc(env(safe-area-inset-bottom, 0px) + 8px) 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 4px; 
    color: var(--text-muted); 
    font-size: 10px; 
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 0;
}

.nav-item:active {
    transform: scale(0.95);
}

.nav-item.active { 
    color: var(--brand-yellow); 
}

.nav-item svg { 
    width: 24px; 
    height: 24px; 
    fill: currentColor;
    transition: transform 0.2s;
}

.nav-item.active svg {
    transform: scale(1.1);
}

/* Floating Central Button */
.nav-center {
    width: 56px; 
    height: 56px; 
    background: var(--brand-yellow); 
    border-radius: 50%;
    margin-top: -28px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 230, 0, 0.4), 0 0 0 4px var(--bg-body);
    border: none;
    color: #000; 
    font-weight: 900; 
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.nav-center:active {
    transform: scale(0.9);
}

/* --- GAMIFICATION WIDGET --- */
.daily-spin {
    position: fixed; bottom: 100px; right: 20px; width: 70px; height: 70px;
    z-index: 900; cursor: pointer; animation: float 3s ease-in-out infinite;
}
.spin-img { width: 100%; height: 100%; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5)); }

/* --- SEO CONTENT BLOCK --- */
.seo-content-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: var(--border-glass);
}

.seo-content-section h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.seo-content-wrapper {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.seo-content-wrapper p {
    margin-bottom: 20px;
}

.seo-content-wrapper h3 {
    color: #fff;
    font-size: 18px;
    margin: 25px 0 10px;
    font-weight: 700;
}

.seo-content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-content-wrapper li {
    margin-bottom: 8px;
}

/* --- FOOTER SEO --- */
.footer-seo {
    margin-top: 60px;
    padding-top: 40px;
    border-top: var(--border-glass);
    color: #666;
    font-size: 12px;
}

.footer-seo p {
    margin-bottom: 10px;
}

/* --- TABLES --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    border: var(--border-glass);
}

thead {
    background: rgba(255, 255, 255, 0.05);
}

thead th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--brand-yellow);
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 230, 0, 0.2);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-white);
    vertical-align: middle;
}

tbody td:first-child {
    font-weight: 600;
    color: #fff;
}

tbody td:not(:first-child) {
    color: var(--text-muted);
}

/* Table variants */
.table-striped tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.table-bordered {
    border: var(--border-glass);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-hover tbody tr:hover {
    background: rgba(255, 230, 0, 0.1);
    border-color: var(--brand-yellow);
}

/* Responsive table wrapper */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.table-wrapper table {
    min-width: 600px;
}

/* --- RESPONSIVE --- */

/* Tablet and below */
@media (max-width: 900px) {
    .desktop-menu, .header-actions { display: none; }
    .hidden-desktop { display: block; }
    .hero-card { grid-template-columns: 1fr; padding: 25px; text-align: center; }
    .hero-stats { justify-content: center; }
    .market-grid { gap: 6px; }
    .hero-content h1 { font-size: 36px; }
    .container { padding: 0 12px; }
    
    /* Show bottom nav on mobile */
    .bottom-nav {
        display: flex;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --nav-h: 56px;
    }
    
    body {
        font-size: 13px;
        padding-bottom: calc(var(--bottom-nav-h) + 10px);
    }
    
    .logo { font-size: 22px; }
    
    .hero-wrap { 
        padding: 15px 0; 
        margin-top: calc(var(--nav-h) + 10px);
    }
    
    .hero-card { 
        padding: 20px; 
        border-radius: 16px;
    }
    
    h1 { font-size: 32px; margin-bottom: 15px; }
    
    .promo-tag { 
        font-size: 11px; 
        padding: 5px 12px; 
        margin-bottom: 15px; 
    }
    
    .hero-stats { 
        gap: 15px; 
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .stat-val { font-size: 18px; }
    .stat-label { font-size: 10px; }
    
    .odds-ticker {
        padding: 10px 0;
        margin-bottom: 20px;
    }
    
    .ticker-item {
        font-size: 11px;
        margin-right: 20px;
    }
    
    .ticker-live { font-size: 9px; }
    .ticker-odds { font-size: 12px; }
    
    .section-head { 
        margin-bottom: 15px; 
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .head-title { 
        font-size: 20px; 
        gap: 8px;
    }
    
    .sports-filter { 
        gap: 8px; 
        margin-bottom: 15px;
        padding-bottom: 3px;
    }
    
    .filter-chip {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .match-card {
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .match-header { 
        font-size: 11px; 
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .team-name { font-size: 14px; }
    .team-score { font-size: 16px; }
    
    .market-grid { 
        gap: 6px; 
    }
    
    .market-btn {
        padding: 8px;
    }
    
    .market-label { font-size: 9px; }
    .market-val { font-size: 13px; }
    
    .casino-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .game-name { font-size: 12px; }
    
    .daily-spin {
        width: 60px;
        height: 60px;
        bottom: 90px;
        right: 15px;
    }
    
    .reg-modal {
        width: 95%;
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .modal-input {
        padding: 12px;
        font-size: 14px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    :root {
        --nav-h: 52px;
        --bottom-nav-h: 70px;
    }
    
    body {
        font-size: 12px;
    }
    
    .container { padding: 0 10px; }
    
    .logo { font-size: 20px; }
    
    .hero-wrap { 
        padding: 10px 0;
        margin-top: calc(var(--nav-h) + 5px);
    }
    
    .hero-card { 
        padding: 15px; 
        border-radius: 12px;
    }
    
    h1 { 
        font-size: 28px; 
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .promo-tag { 
        font-size: 10px; 
        padding: 4px 10px; 
        margin-bottom: 12px; 
    }
    
    .hero-stats { 
        gap: 12px; 
        margin-top: 15px;
    }
    
    .stat-val { font-size: 16px; }
    .stat-label { font-size: 9px; }
    
    .section-head { 
        margin-bottom: 12px; 
    }
    
    .head-title { 
        font-size: 18px; 
    }
    
    .filter-chip {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .match-card {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .match-header { 
        font-size: 10px; 
        margin-bottom: 10px;
    }
    
    .team-name { font-size: 13px; }
    .team-score { font-size: 15px; }
    
    .market-grid { 
        gap: 5px; 
    }
    
    .market-btn {
        padding: 7px 5px;
    }
    
    .market-label { font-size: 8px; }
    .market-val { font-size: 12px; }
    
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .game-info {
        padding: 10px;
    }
    
    .game-name { font-size: 11px; }
    
    .daily-spin {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 10px;
    }
    
    .reg-modal {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .modal-input {
        padding: 10px;
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 12px 24px !important;
        font-size: 13px !important;
    }
    
    .bottom-nav {
        padding: 6px 0 calc(env(safe-area-inset-bottom, 0px) + 6px) 0;
        height: calc(var(--bottom-nav-h) - 10px);
    }
    
    .nav-item {
        font-size: 9px;
        gap: 3px;
        padding: 3px 0;
    }
    
    .nav-item svg {
        width: 22px;
        height: 22px;
    }
    
    .nav-center {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-top: -25px;
        box-shadow: 0 3px 15px rgba(255, 230, 0, 0.4), 0 0 0 3px var(--bg-body);
    }
    
    /* Tables small mobile */
    table {
        font-size: 11px;
    }
    
    thead th {
        padding: 10px 8px;
        font-size: 10px;
    }
    
    td {
        padding: 8px;
        font-size: 11px;
    }
    
    .table-wrapper table {
        min-width: 400px;
    }
    
    /* SEO Content Block mobile styles */
    .seo-content-section {
        margin-top: 30px;
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .seo-content-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .seo-content-wrapper h3 {
        font-size: 16px;
        margin: 20px 0 8px;
    }
    
    .seo-content-wrapper {
        font-size: 13px;
    }
    
    .seo-content-wrapper p {
        margin-bottom: 15px;
    }
    
    .seo-content-wrapper ul {
        padding-left: 18px;
        margin-bottom: 15px;
    }
    
    .seo-content-wrapper li {
        margin-bottom: 6px;
    }
    
    .footer-seo {
        margin-top: 40px;
        padding-top: 30px;
        font-size: 11px;
    }
    
    .section-head[style*="margin-top"] {
        margin-top: 30px !important;
    }
    
    /* Tables mobile */
    table {
        font-size: 12px;
        border-radius: 8px;
    }
    
    thead th {
        padding: 12px 10px;
        font-size: 11px;
    }
    
    td {
        padding: 10px;
        font-size: 12px;
    }
    
    .table-wrapper {
        margin: 15px 0;
    }
    
    .table-wrapper table {
        min-width: 500px;
    }
    
    .hero-content p {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
}

/* --- ANIMATIONS --- */
@keyframes shimmer { 0% { left: -100%; } 100% { left: 100%; } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(255, 42, 42, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); } }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes flashGreen { 0% { background: rgba(0,255,148,0.5); } 100% { background: transparent; } }
@keyframes flashRed { 0% { background: rgba(255,42,42,0.5); } 100% { background: transparent; } }

