/* PINCO Casino - Professional Design with Glassmorphism */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: rgba(26, 26, 26, 0.4);
    --color-primary: #e31e24;
    --color-primary-dark: #c71a1f;
    --color-accent: #ffd700;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(26, 26, 26, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: var(--color-text);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 26, 26, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: bgPulse 15s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    z-index: -1;
    opacity: 0.3;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 70px;
    width: 250px;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    overflow-y: auto;
    z-index: 90;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.sidebar-nav {
    padding: 10px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(227, 30, 36, 0.1);
    color: #ffffff;
    border-left-color: #e31e24;
}

.sidebar-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-label {
    flex: 1;
}

.sidebar-badge {
    background: #e31e24;
    color: white;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
}

.sidebar-footer {
    position: sticky;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 15px;
    display: flex;
    gap: 10px;
}

.sidebar-support,
.sidebar-lang {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.sidebar-support:hover,
.sidebar-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 42px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 4px;
    font-style: italic;
    text-transform: uppercase;
}

.logo-text {
    color: #e31e24;
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

.logo-o {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
}

.logo-o::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -8px;
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.header-actions {
    display: flex;
    gap: 12px;
} /* Header Navigation Menu - Red Glowing Style */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link-icon {
    font-size: 16px;
}

.glow-link {
    box-shadow: 
        0 0 5px rgba(227, 30, 36, 0.4),
        0 0 10px rgba(227, 30, 36, 0.2),
        inset 0 0 15px rgba(227, 30, 36, 0.1);
    animation: navGlow 2s ease-in-out infinite;
}

.glow-link:hover {
    background: rgba(227, 30, 36, 0.25);
    border-color: rgba(227, 30, 36, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 0 10px rgba(227, 30, 36, 0.6),
        0 0 20px rgba(227, 30, 36, 0.4),
        0 0 30px rgba(227, 30, 36, 0.2);
}

@keyframes navGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px rgba(227, 30, 36, 0.4),
            0 0 10px rgba(227, 30, 36, 0.2);
    }
    50% {
        box-shadow: 
            0 0 8px rgba(227, 30, 36, 0.6),
            0 0 15px rgba(227, 30, 36, 0.3),
            0 0 20px rgba(227, 30, 36, 0.15);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
}

/* Buttons */
.btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Glowing Registration Button */
.btn-glow {
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 50%, #ff3333 100%);
    color: #ffffff;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.3),
        0 0 40px rgba(255, 0, 0, 0.2);
    animation: glowPulse 1.5s ease-in-out infinite;
    border: 1px solid rgba(255, 100, 100, 0.5);
}

.btn-glow:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #ff4444 100%);
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.8),
        0 0 30px rgba(255, 0, 0, 0.6),
        0 0 45px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.02);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(255, 0, 0, 0.6),
            0 0 20px rgba(255, 0, 0, 0.4),
            0 0 30px rgba(255, 0, 0, 0.3),
            0 0 40px rgba(255, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(255, 0, 0, 0.8),
            0 0 30px rgba(255, 0, 0, 0.6),
            0 0 45px rgba(255, 0, 0, 0.4),
            0 0 60px rgba(255, 0, 0, 0.3);
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.btn-banner {
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 50%, #ff3333 100%);
    color: var(--color-text);
    padding: 12px 32px;
    font-size: 14px;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(255, 0, 0, 0.3);
    animation: glowPulse 1.5s ease-in-out infinite;
    border: 1px solid rgba(255, 100, 100, 0.5);
}

.btn-banner:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 50%, #ff4444 100%);
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.8),
        0 0 30px rgba(255, 0, 0, 0.6),
        0 0 45px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
}

/* Main */
.main {
    margin-left: 250px;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Hero Banners */
.hero-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.banner {
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    z-index: 0;
}

.banner-sport::before {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.6) 0%, rgba(74, 13, 13, 0.4) 100%);
}

.banner-casino::before {
    background: linear-gradient(135deg, rgba(107, 74, 26, 0.6) 0%, rgba(58, 42, 10, 0.4) 100%);
}

/* Banner Images - ПОЛНОЕ изображение девушки видно */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.9;
    z-index: 0;
}

.banner-sport .banner-image {
    background-position: right center;
}

.banner-casino .banner-image {
    background-position: right center;
}

/* Overlay для лучшей читаемости текста */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    z-index: 1;
}

/* Мобильная адаптация overlay */
@media (max-width: 768px) {
    .banner-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.9) 100%);
    }
}

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

.banner-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    opacity: 0.9;
}

.banner-label {
    font-size: 18px;
    margin-bottom: 8px;
}

.banner-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 12px;
    line-height: 1;
}

.banner-fs {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.banner-desc {
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.85;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* Sports */
.sports-section {
    margin-bottom: 60px;
}

.sports-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sport-event {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-league {
    font-size: 12px;
    color: var(--color-text-muted);
}

.event-teams {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.team-flag {
    font-size: 20px;
}

.event-time {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
}

.event-odds {
    display: flex;
    gap: 12px;
}

.odd {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 70px;
    transition: all 0.3s;
}

.odd:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.odd-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.odd-value {
    font-size: 16px;
    font-weight: 700;
    color: #4ade80;
}

/* Casino Games */
.casino-section {
    margin-bottom: 60px;
}

.casino-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text);
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.game-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.4);
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.game-badge.hot {
    background-color: #ef4444;
    color: white;
}

.game-badge.new {
    background-color: #3b82f6;
    color: white;
}

.game-badge.jackpot {
    background-color: var(--color-accent);
    color: black;
}

.game-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-icon {
    font-size: 56px;
}

.game-info {
    padding: 16px;
}

.game-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.game-provider {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.game-rtp {
    display: inline-block;
    font-size: 11px;
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.game-jackpot {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
}

.load-more {
    text-align: center;
    margin-top: 32px;
}

/* Live Casino */
.live-casino-section {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.live-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.live-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.live-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.4);
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    background-color: rgba(239, 68, 68, 0.9);
    color: white;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.live-icon {
    font-size: 56px;
}

.live-dealer {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 10px;
    border-radius: 4px;
}

.live-info {
    padding: 16px;
}

.live-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.live-provider {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.live-players {
    font-size: 12px;
    color: #4ade80;
}

/* Mobile Section */
.mobile-section {
    margin-bottom: 60px;
}

/* About Casino Section */
.about-section {
    margin-bottom: 60px;
}

.about-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #e31e24 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.about-feature:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateY(-5px);
}

.about-feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.about-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.about-feature p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    text-align: justify;
}

.about-description strong {
    color: var(--color-accent);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(227, 30, 36, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

/* Tablet About Section */
@media (max-width: 1024px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about-box {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-intro {
        font-size: 16px;
        padding: 0;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-feature {
        padding: 20px;
    }
    
    .about-feature-icon {
        font-size: 32px;
    }
    
    .about-feature h4 {
        font-size: 16px;
    }
    
    .about-description {
        font-size: 14px;
        text-align: left;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .about-footer-text {
        font-size: 14px;
        padding: 16px;
    }
}

.mobile-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.mobile-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-accent);
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature {
    display: flex;
    align-items: start;
    gap: 12px;
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.feature p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 0 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

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

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.footer-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

/* Bottom Navigation (Mobile) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 8px 0;
    z-index: 100;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.bottom-nav {
    display: none;
    justify-content: space-around;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.nav-item.active,
.nav-item:hover {
    color: var(--color-primary);
}

.nav-icon {
    font-size: 22px;
}

.nav-label {
    font-size: 11px;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    /* Адаптация баннеров для планшетов */
    .banner {
        height: 400px;
    }
    
    .banner-image {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .casino-games {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }
    
    .main {
        margin-left: 0;
        padding: 20px 0 80px;
    }
    
    .logo {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .logo-o::after {
        width: 8px;
        height: 8px;
        top: -3px;
        right: -5px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero-section {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .banner {
        padding: 32px 24px;
    }
    
    /* Мобильная адаптация - полное фото */
    .banner-image {
        background-size: cover !important;
        background-position: center center !important;
        opacity: 0.85 !important;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-amount {
        font-size: 48px;
    }
    
    .banner-fs {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .sport-event {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .event-odds {
        width: 100%;
        justify-content: space-between;
    }
    
    .casino-games {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        padding: 0;
    }
    
    .game-image {
        height: 140px;
    }
    
    .game-icon {
        font-size: 40px;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .game-name {
        font-size: 13px;
    }
    
    .casino-categories {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .casino-categories::-webkit-scrollbar {
        display: none;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .live-casino-section {
        padding: 24px 16px;
    }
    
    .live-games {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .live-image {
        height: 160px;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer {
        padding-bottom: 80px;
    }
    
    /* Show bottom nav */
    .bottom-nav {
        display: flex;
    }
}

/* Mobile Menu Modal */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.mobile-menu-modal.active {
    display: flex;
}

.mobile-menu-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 350px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-menu-header .logo {
    font-size: 28px;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.mobile-menu-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
}

.mobile-menu-support {
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
}

/* Support Badge - Realistic */
.support-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
}

.support-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: supportPulse 2s ease-in-out infinite;
}

@keyframes supportPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.support-headset {
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.support-status {
    font-size: 13px;
    color: #22c55e;
    font-weight: 600;
}

/* Sidebar Support - New Style */
.sidebar-support-new {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-support-new:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.5);
}

.support-icon-mini {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.support-pulse-mini {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: supportPulse 2s ease-in-out infinite;
}

.support-text-mini {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-label {
    font-size: 11px;
    color: #b0b0b0;
}

.support-online {
    font-size: 12px;
    color: #22c55e;
    font-weight: 600;
}

/* PINCO Mini Logo */
.pinco-mini-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e31e24 0%, #ff4444 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    font-style: italic;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
}
