/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #cc0000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav a:hover {
    color: #ffffff;
    background: rgba(255, 68, 68, 0.2);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

/* Banner Styles */
.banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

/* Typography */
h1 {
    color: #ff4444;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #cc0000);
    border-radius: 2px;
}

h2 {
    color: #ff6666;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid #ff4444;
    background: rgba(255, 68, 68, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.2);
}

h3 {
    color: #ff8888;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
    padding: 0 10px;
}



/* Lists */
ul, ol {
    margin: 0 0;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    padding: 5px 0;
}

ul li::marker {
    color: #ff4444;
}

/* Links */
a {
    color: #ff6666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #ff4444;
    border-bottom: 1px solid #ff4444;
    text-shadow: 0 0 5px rgba(255, 68, 68, 0.3);
}

a:active {
    color: #cc0000;
}

/* Author Photo */
.author-info {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 68, 68, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ff4444;
}

.author-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4444;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.author-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.4);
}

.author-info p {
    flex: 1;
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Table Container */
.table-container {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.9);
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6666, #ff4444);
}

/* Tables */
table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.9);
}

th {
    background: linear-gradient(135deg, #cc0000, #ff4444);
    color: #ffffff;
    padding: 15px;
    font-weight: bold;
    text-align: left;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
    transition: background-color 0.3s ease;
}

tr:hover td {
    background: rgba(255, 68, 68, 0.1);
}

/* Definition Lists */
dl {
    margin: 30px 0;
}

dt {
    color: #ff4444;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
    padding: 10px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

dd {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border-left: 3px solid #ff6666;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    border-top: 3px solid #cc0000;
    margin-top: 60px;
    padding: 40px 0 20px 0;
    box-shadow: 0 -4px 20px rgba(255, 0, 0, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    text-align: center;
}

.footer-section span {
    color: #ff4444;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    font-weight: 700;
    display: block;
}

.footer-section p,
.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff4444;
    text-shadow: 0 0 5px rgba(255, 68, 68, 0.5);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 68, 68, 0.3);
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px 20px;
        min-height: auto;
    }
    
    .logo {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }
    
    .nav a {
        padding: 12px 20px;
        border-radius: 10px;
        background: rgba(255, 68, 68, 0.1);
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .main-content {
        margin: 10px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
        padding: 12px 15px;
    }
    
    p {
        font-size: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    
    .main-content {
        margin: 5px;
        padding: 15px 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
        padding: 10px 12px;
    }
    
    .banner {
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .scroll-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .scroll-to-top.active {
        bottom: 140px;
    }
    
    /* Author photo responsive */
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 15px;
    }
    
    .author-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    /* Table responsive */
    .table-container {
        margin: 20px 0;
        border-radius: 10px;
    }
    
    table {
        min-width: 500px;
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px 10px;
        white-space: nowrap;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    animation: fadeInUp 0.8s ease-out;
}

.section {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff6666, #ff4444);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top.active {
    bottom: 100px;
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* ========================================
   BOTTOM BONUS BANNER
   ======================================== */

.bonus-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    border-top: 3px solid #ffd700;
    box-shadow: 0 -4px 30px rgba(255, 215, 0, 0.4);
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, visibility 0.5s ease;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
}

.bonus-banner.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.bonus-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bonus-banner-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.bonus-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bonusPulse 2s infinite;
}

.bonus-icon svg {
    width: 28px;
    height: 28px;
    fill: #1a0000;
}

@keyframes bonusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.bonus-text-content h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-text-content p {
    margin: 3px 0 0 0;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.bonus-banner-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a0000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
}

.bonus-banner-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.bonus-banner-button:active {
    transform: translateY(0);
}

/* Responsive Design for Bonus Banner */
@media screen and (max-width: 768px) {
    .bonus-banner {
        padding: 10px 12px;
    }

    .bonus-banner-content {
        gap: 12px;
    }

    .bonus-banner-text {
        gap: 12px;
    }

    .bonus-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .bonus-icon svg {
        width: 22px;
        height: 22px;
    }

    .bonus-text-content h4 {
        font-size: 0.95rem;
    }

    .bonus-text-content p {
        font-size: 0.75rem;
        margin-top: 2px;
    }

    .bonus-banner-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .scroll-to-top.active {
        bottom: 110px;
    }
}

@media screen and (max-width: 480px) {
    .bonus-banner {
        padding: 8px 10px;
    }

    .bonus-banner-content {
        gap: 10px;
    }

    .bonus-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .bonus-icon svg {
        width: 20px;
        height: 20px;
    }

    .bonus-text-content h4 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .bonus-text-content p {
        font-size: 0.7rem;
        display: none;
    }

    .bonus-banner-button {
        padding: 7px 18px;
        font-size: 0.85rem;
    }

    .scroll-to-top.active {
        bottom: 100px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6666, #ff4444);
}

/* ========================================
   LIVE STATS COUNTER SECTION
   ======================================== */

.live-stats-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Stats Grid */
.live-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.live-stat-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.live-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4444, #ff8844, #ff4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.live-stat-item:hover::before {
    transform: scaleX(1);
}

.live-stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 68, 68, 0.6);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.live-stat-item.highlight {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(204, 0, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.live-stat-item.highlight:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

/* Stat Icon */
.stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.stat-icon.trophy {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.live-stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Stat Content */
.stat-content {
    flex: 1;
}

.stat-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value .counter {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.stat-value .counter.big {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.currency-symbol {
    font-size: 1.6rem;
    color: #4ade80;
    font-weight: 600;
}

.currency-symbol.gold {
    color: #ffd700;
    font-size: 1.8rem;
}

.plus-sign {
    font-size: 1.4rem;
    color: #4ade80;
}

.stat-label {
    font-size: 0.95rem;
    color: #a0a0a0;
    font-weight: 500;
    text-transform: none;
}

.stat-sublabel {
    font-size: 0.8rem;
    color: #808080;
    margin-top: 4px;
    font-style: italic;
}

/* Live Indicator */
.live-indicator {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: livePulse 2s infinite;
}

.live-indicator::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: liveRipple 2s infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes liveRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Live Feed Section */
.live-feed {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 20px;
    max-height: 320px;
    overflow: hidden;
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 10px;
}

.feed-items::-webkit-scrollbar {
    width: 6px;
}

.feed-items::-webkit-scrollbar-thumb {
    background: rgba(255, 68, 68, 0.5);
    border-radius: 3px;
}

.feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 68, 68, 0.05);
    border-left: 3px solid #ff4444;
    border-radius: 8px;
    animation: slideInFeed 0.5s ease;
    transition: all 0.3s ease;
}

.feed-item:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateX(5px);
}

@keyframes slideInFeed {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feed-player {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.player-info {
    flex: 1;
}

.player-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.player-game {
    font-size: 0.8rem;
    color: #808080;
}

.feed-win {
    text-align: right;
}

.win-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: #4ade80;
    font-family: 'Courier New', monospace;
}

.win-time {
    font-size: 0.75rem;
    color: #606060;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media screen and (max-width: 1024px) {
    .live-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .live-stats-container {
        margin: 30px auto;
        padding: 0 15px;
    }

    .live-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .live-stat-item {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-value .counter.big {
        font-size: 1.8rem;
    }

    .currency-symbol {
        font-size: 1.4rem;
    }

    .currency-symbol.gold {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .live-feed {
        padding: 15px;
        max-height: 280px;
    }

    .feed-header {
        font-size: 1rem;
    }

    .player-name {
        font-size: 0.9rem;
    }

    .win-amount {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .live-stats-container {
        margin: 20px auto;
    }

    .live-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-value {
        justify-content: center;
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .feed-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .feed-player {
        flex-direction: column;
        text-align: center;
    }

    .feed-win {
        text-align: center;
    }
}
