/* Как достать соседа - Современный дизайн V4.0 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF8C00;
    --secondary-color: #FFA500;
    --accent-color: #E74C3C;
    --dark-color: #2C3E50;
    --light-bg: #FFF5E1;
    --white: #FFFFFF;
    --yellow: #FFEB3B;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFFAF0 100%);
    color: var(--dark-color);
    line-height: 1.7;
    min-height: 100vh;
    background-attachment: fixed;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    position: relative;
    z-index: 1000;
    margin-bottom: 30px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.8rem;
    color: var(--yellow);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.main-nav > a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    display: none;
}

.dropdown:hover::after {
    display: block;
}

.dropbtn {
    color: var(--white);
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.dropbtn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.dropbtn i.fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1001;
    padding: 5px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown:hover,
.dropdown:focus-within {
    z-index: 1002;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding-left: 25px;
}

.dropdown-content a i {
    font-size: 1rem;
    width: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-badge {
    background: rgba(255, 255, 255, 0.98);
    color: var(--accent-color);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 3px solid var(--yellow);
    white-space: nowrap;
    animation: pulse-border 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(255, 235, 59, 0.4);
}

.header-badge i {
    margin-right: 6px;
    font-size: 1rem;
    animation: shake 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--yellow);
        box-shadow: 0 4px 12px rgba(255, 235, 59, 0.4);
    }
    50% {
        border-color: var(--accent-color);
        box-shadow: 0 4px 16px rgba(231, 76, 60, 0.5);
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-5deg); }
    20%, 40% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
}

/* Fan Site Notice Banner */
.fan-site-notice {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    border-bottom: 3px solid #FFC107;
    border-top: 3px solid #FFC107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    animation: slideDown 0.5s ease;
    margin-bottom: 20px;
}

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

.notice-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #856404;
    font-size: 1rem;
    text-align: center;
}

.notice-container i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.notice-container strong {
    color: var(--accent-color);
    text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, #FFF8E7 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.2), 0 0 0 1px rgba(255, 140, 0, 0.1);
    border: 3px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-section h1 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.hero-section .hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #C0392B 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.6);
    border-color: var(--yellow);
}

.btn-primary i,
.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary i {
    font-size: 1.4rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* ===== GAME CARDS ===== */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.game-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 3px solid #FFE4B5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.25);
    border-color: var(--primary-color);
}

.game-card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.game-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.game-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-card-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

/* ===== FEATURE BOXES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.feature-box {
    background: linear-gradient(135deg, var(--white) 0%, #FFF8E7 100%);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #FFE4B5;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s infinite;
}

.feature-box h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== MAIN CONTENT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.game-header {
    background: linear-gradient(135deg, var(--white) 0%, #FFF8E7 100%);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.2);
}

.game-header h1 {
    color: var(--accent-color);
    font-size: 2.3rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, #F39C12 0%, #F1C40F 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(243, 156, 18, 0.3);
}

.badge i {
    margin-right: 6px;
}

.introduction {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEBCD 100%);
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.15);
}

.introduction i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.game-content {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    line-height: 1.8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #FFE4B5;
    animation: fadeIn 0.6s ease;
}

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

.game-content h2 {
    color: var(--primary-color);
    margin: 35px 0 20px;
    font-size: 2rem;
    border-bottom: 3px solid #FFE4B5;
    padding-bottom: 10px;
}

.game-content h2:first-child {
    margin-top: 0;
}

.game-content h3 {
    color: #E67E22;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.game-content p {
    margin-bottom: 18px;
    color: #555;
    font-size: 1.05rem;
}

.game-content ul, 
.game-content ol {
    margin: 20px 0;
    padding-left: 35px;
}

.game-content li {
    margin: 12px 0;
    color: #555;
    font-size: 1.05rem;
}

.game-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #FFE4B5;
    transition: all 0.3s ease;
}

.game-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #C0392B 100%);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    margin: 15px 15px 15px 0;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.6);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
    border-top: 4px solid var(--primary-color);
    padding: 50px 0 0;
    margin-top: 60px;
    color: var(--white);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    color: var(--yellow);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-col ul li a i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 18px;
}

.footer-disclaimer {
    background: rgba(255, 235, 59, 0.1);
    border: 2px solid var(--yellow);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.footer-disclaimer i {
    color: var(--yellow);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-credits i {
    color: var(--accent-color);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .main-nav {
        gap: 3px;
    }
    
    .main-nav > a,
    .dropbtn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .header-badge {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 10px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav > a {
        background: rgba(255, 255, 255, 0.15);
        margin: 0;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropbtn {
        width: 100%;
        text-align: left;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero-section {
        padding: 35px 25px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .game-content {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 1.05rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */

/* Плавное появление элементов */
.badge {
    animation: fadeInUp 0.5s ease backwards;
}

.badge:nth-child(1) { animation-delay: 0.1s; }
.badge:nth-child(2) { animation-delay: 0.2s; }
.badge:nth-child(3) { animation-delay: 0.3s; }
.badge:nth-child(4) { animation-delay: 0.4s; }

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

/* Улучшенные списки */
.game-content ul li,
.game-content ol li {
    position: relative;
    padding-left: 10px;
    transition: all 0.2s ease;
}

.game-content ul li:hover,
.game-content ol li:hover {
    padding-left: 15px;
    color: var(--primary-color);
}

/* Красивые цитаты */
.game-content blockquote {
    position: relative;
    font-size: 1.1rem;
}

.game-content blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Плавное появление карточек */
.game-card {
    animation: fadeIn 0.6s ease backwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }

/* Анимация feature boxes */
.feature-box {
    animation: fadeIn 0.6s ease backwards;
}

.feature-box:nth-child(1) { animation-delay: 0.2s; }
.feature-box:nth-child(2) { animation-delay: 0.3s; }
.feature-box:nth-child(3) { animation-delay: 0.4s; }

/* Прокрутка для таблиц */
.game-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.game-content table th,
.game-content table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #FFE4B5;
}

.game-content table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.game-content table tr:hover {
    background: #FFF8DC;
}

/* Кастомный scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

/* ===== BANNER SYSTEM (Desktop Only) ===== */

/* Hero banner */
.wz-hero-banner {
    display: block;
    text-align: center;
    margin: 0 0 18px;
    position: relative;
    z-index: 2;
}

.wz-hero-banner a {
    display: inline-block;
    line-height: 0;
    border-radius: 0;
    transition: filter 0.3s ease, transform 0.2s ease;
}

.wz-hero-banner a:hover {
    filter: brightness(1.08);
    transform: scale(1.03);
}

.wz-hero-banner img {
    border-radius: 0;
    display: block;
}

.wz-hero-trust {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 0.88rem;
    color: #555;
}

.wz-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wz-hero-trust i {
    color: #27ae60;
    font-size: 0.95rem;
}

/* Inline banner */
.wz-inline-banner {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEBCD 100%);
    border: 2px solid #FFE4B5;
    border-radius: 10px;
    padding: 22px 20px;
    margin: 30px 0;
    text-align: center;
}

.wz-inline-banner a {
    display: inline-block;
    line-height: 0;
    border-radius: 0;
    transition: filter 0.3s ease, transform 0.2s ease;
    border-bottom: none;
}

.wz-inline-banner a:hover {
    filter: brightness(1.08);
    transform: scale(1.03);
    border-bottom: none;
}

.wz-inline-banner img {
    border-radius: 0;
    display: block;
}

.wz-inline-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

.wz-inline-social span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wz-inline-social i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Desktop: dim existing download buttons */
@media (min-width: 769px) {
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
        text-transform: none;
        opacity: 0.75;
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
    }
    .hero-buttons .btn-primary:hover,
    .hero-buttons .btn-secondary:hover {
        opacity: 1;
    }
    .game-content .download-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
        text-transform: none;
        opacity: 0.75;
    }
    .game-content .download-btn:hover {
        opacity: 1;
    }
}

/* Hide banners on mobile */
@media (max-width: 768px) {
    .wz-hero-banner,
    .wz-inline-banner {
        display: none !important;
    }
    /* Restore button sizes on mobile */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        opacity: 1;
    }
    .game-content .download-btn {
        opacity: 1;
    }
}
