/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 25px 20px;
    margin-top: 10px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 120px;
    height: auto;
    max-height: 140px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    color: var(--primary-green);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-text h1 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    font-style: italic;
    text-transform: uppercase;
}

.hero-text .highlight {
    color: var(--accent-yellow);
    display: block;
}

.hero-text .btn {
    margin-top: 5px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-text .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4);
}

/* Ticker */
.ticker-wrap {
    background: linear-gradient(135deg, #0a2e1a 0%, #0d4025 100%);
    color: #00e676;
    margin: 15px 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 230, 118, 0.2);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.ticker-icon {
    font-size: 16px;
    margin-right: 8px;
    flex-shrink: 0;
}

.ticker-wrap marquee {
    flex: 1;
    font-weight: 500;
    color: #ffffff;
}

.ticker-btn {
    background: var(--primary-green);
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 8px;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s;
}

.ticker-btn:hover {
    background: var(--accent-yellow);
}

/* Category Nav */
.cat-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 5px;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s;
    flex: 1;
}

.cat-item:hover {
    transform: translateY(-3px);
}

.cat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.cat-item:hover .cat-icon {
    transform: scale(1.1);
}

.bg-red {
    background: linear-gradient(135deg, #ff5252, #b71c1c);
}

.bg-blue {
    background: linear-gradient(135deg, #448aff, #1565c0);
}

.bg-purple {
    background: linear-gradient(135deg, #e040fb, #7b1fa2);
}

.bg-gold {
    background: linear-gradient(135deg, #ffd740, #ff6f00);
}

.cat-item span {
    font-size: 11px;
    color: #ccc;
    text-align: center;
    font-weight: 500;
}


.section-title
Specificity: (0,1,0)
 {
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8ab310;
    font-weight: 800;
}

.section-title span {
    color: var(--primary-green);
    font-weight: 900;
    font-size: 16px;
}

.section-sub {
    font-size: 12px;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
}

/* Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    text-decoration: none;
    color: inherit;
}

.game-img {
    width: 100%;
    height: 85px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.game-info {
    padding: 0 5px;
}

.game-info h4 {
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--text-white);
    font-weight: 600;
}

.badge {
    font-size: 9px;
    background: var(--primary-green);
    color: #000;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid #222;
}

.stat-card .stat-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Access */
.quick-access-title {
    font-size: 16px;
    margin-bottom: 18px;
    margin-top: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.quick-access-title::before {
    content: '⚡';
    color: var(--accent-yellow);
    font-size: 18px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 18px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    border: 1.5px solid rgba(0, 230, 118, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.quick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.1), transparent);
    transition: left 0.5s;
}

.quick-item:hover::before {
    left: 100%;
}

.quick-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.3);
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.quick-item:active {
    transform: translateY(-2px) scale(1);
}

.quick-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(0, 230, 118, 0.05) 100%);
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 10px;
    border: 1.5px solid rgba(0, 230, 118, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-item:hover .quick-icon {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.25) 0%, rgba(0, 230, 118, 0.15) 100%);
    border-color: var(--primary-green);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4);
}

.quick-item span {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-item:hover span {
    color: var(--primary-green);
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .quick-access-title {
        font-size: 14px;
        margin-bottom: 16px;
        margin-top: 25px;
    }
    
    .quick-grid {
        margin-bottom: 25px;
    }
    
    .quick-grid {
        gap: 10px;
    }
    
    .quick-item {
        padding: 16px 10px;
        min-height: 95px;
        border-radius: 10px;
    }
    
    .quick-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .quick-item span {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .quick-item {
        padding: 14px 8px;
        min-height: 90px;
    }
    
    .quick-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .quick-item span {
        font-size: 10px;
    }
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    transition: color 0.2s;
    text-decoration: none;
    color: inherit;
}

.link-item:last-child {
    border-bottom: none;
}

.link-item:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.link-item span {
    font-size: 13px;
    color: var(--text-gray);
}

.link-item:hover span {
    color: var(--primary-green);
}

.link-item .arrow {
    color: var(--primary-green);
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .hero-img {
        width: 100px;
        max-height: 120px;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .seo-links-section {
        display: none !important;
    }
}