        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #1a1a1a;
            color: #fff;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: #2a2a2a;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #333;
        }

        .hamburger {
            background: none;
            border: none;
            color: #ffa500;
            font-size: 20px;
            cursor: pointer;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-toggle {
            width: 60px;
            height: 30px;
            background: #ffa500;
            border-radius: 15px;
            position: relative;
            cursor: pointer;
        }

        .logo-toggle::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 26px;
            background: #fff;
            border-radius: 50%;
            top: 2px;
            right: 2px;
            transition: 0.3s;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: 0.3s;
        }

        .btn-login {
            background: transparent;
            color: #fff;
            border: 1px solid #666;
        }

        .btn-register {
            background: #ffa500;
            color: #000;
        }

        .btn:hover {
            opacity: 0.8;
        }

        /* Navigation */
        .nav {
            background: #333;
            padding: 10px 20px;
            display: flex;
            gap: 30px;
        }

        .nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .nav a:hover {
            color: #ffa500;
        }

        /* Main Container */
        .container {
            display: flex;
            min-height: calc(100vh - 120px);
            position: relative;
        }

        /* Sidebar */
        .sidebar {
            width: 300px;
            background: #2a2a2a;
            border-right: 1px solid #333;
            overflow-y: auto;
            flex-shrink: 0;
        }

        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #333;
        }

        .search-box {
            width: 100%;
            padding: 10px;
            background: #3a3a3a;
            border: none;
            border-radius: 4px;
            color: #fff;
            margin-bottom: 20px;
        }

        .search-box::placeholder {
            color: #999;
        }

        .live-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .live-section h3 {
            color: #fff;
            font-size: 16px;
        }

        .live-count {
            background: #ffa500;
            color: #000;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: bold;
        }

        .events-section {
            background: #ffa500;
            color: #000;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .menu-item {
            padding: 12px 20px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-item:hover {
            background: #3a3a3a;
        }

        .menu-item.active {
            background: #ffa500;
            color: #000;
        }

        .menu-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .sport-count {
            margin-left: auto;
            color: #999;
            font-size: 12px;
        }

        .submenu {
            background: #3a3a3a;
            padding-left: 40px;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }

        .hero-banner {
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-size: 48px;
            font-weight: bold;
            color: #000;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 48px;
            font-weight: bold;
            color: #000;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-image {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .trophy {
            width: 150px;
            height: 150px;
            background: linear-gradient(145deg, #d4af37, #b8860b);
            border-radius: 10px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .trophy::before {
            content: '🏆';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
        }

        .number-2025 {
            font-size: 120px;
            font-weight: bold;
            color: #d4af37;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }

        .soccer-ball {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #fff;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .soccer-ball::before {
            content: '⚽';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
        }

        /* Betting Section */
        .betting-section {
            background: #2a2a2a;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .section-title {
            color: #ffa500;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .betting-table {
            width: 100%;
            border-collapse: collapse;
        }

        .betting-table th,
        .betting-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #333;
        }

        .betting-table th {
            background: #3a3a3a;
            color: #ccc;
            font-size: 12px;
            text-transform: uppercase;
        }

        .betting-table td {
            color: #fff;
        }

        .odds-button {
            background: #3a3a3a;
            border: 1px solid #555;
            color: #fff;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
            min-width: 60px;
            text-align: center;
        }

        .odds-button:hover {
            background: #ffa500;
            color: #000;
        }

        /* Right Sidebar - ИСПРАВЛЕНО */
        .right-sidebar {
            width: 300px;
            background: #2a2a2a;
            border-left: 1px solid #333;
            padding: 20px;
            flex-shrink: 0;
        }

        .promo-card {
            background: linear-gradient(135deg, #ff4444, #cc0000);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: 0.3s;
        }

        .promo-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
        }

        .promo-title {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
        }

        .promo-card-2 {
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            color: #000;
            cursor: pointer;
            transition: 0.3s;
        }

        .promo-card-2:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
        }

        .promo-card-3 {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            border-radius: 10px;
            padding: 20px;
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
        }

        .promo-card-3:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            padding: 60px 20px 40px;
            border-top: 1px solid #333;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-section a:hover {
            color: #ffa500;
        }

        .apps-section {
            text-align: center;
            margin: 40px 0;
        }

        .apps-section h3 {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .app-button {
            background: #2a2a2a;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 8px 16px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
            font-size: 12px;
        }

        .app-button:hover {
            background: #3a3a3a;
            border-color: #ffa500;
        }

        .app-icon {
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }

        .partners-section {
            text-align: center;
            margin: 40px 0;
        }

        .partners-section h3 {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .partner-logo {
            background: #2a2a2a;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 10px 20px;
            color: #999;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-partners-section {
            margin: 40px 0;
        }

        .info-partners-section h3 {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: center;
        }

        .info-partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .info-partner-logo {
            background: #2a2a2a;
            border: 1px solid #444;
            border-radius: 6px;
            padding: 8px 16px;
            color: #888;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-contacts {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .footer-contacts span {
            color: #999;
            font-size: 14px;
        }

        .footer-contacts a {
            color: #ffa500;
            text-decoration: none;
            font-weight: bold;
        }

        .footer-legal {
            color: #666;
            font-size: 11px;
            line-height: 1.4;
            max-width: 600px;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #ffa500;
            border: none;
            border-radius: 50%;
            color: #000;
            font-size: 20px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            z-index: 1000;
        }

        .scroll-top:hover {
            background: #ff8c00;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #2a2a2a;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb {
            background: #ffa500;
            border-radius: 4px;
            border: 1px solid #333;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ff8c00;
        }

        ::-webkit-scrollbar-corner {
            background: #2a2a2a;
        }

        /* Firefox scrollbar */
        * {
            scrollbar-width: thin;
            scrollbar-color: #ffa500 #2a2a2a;
        }

        /* Content sections */
        .content-section {
            background: #2a2a2a;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .content-section h2 {
            color: #ffa500;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .content-section h3 {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        .content-section p {
            color: #ccc;
            margin-bottom: 15px;
            text-align: justify;
        }

        .content-section ul {
            color: #ccc;
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .content-section li {
            margin-bottom: 8px;
        }

        .highlight-box {
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            color: #000;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            font-weight: bold;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .feature-item {
            background: #3a3a3a;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ffa500;
        }

        .feature-item h4 {
            color: #ffa500;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .feature-item p {
            color: #ccc;
            font-size: 14px;
        }

        .bet-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .bet-type {
            background: #3a3a3a;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #555;
        }

        .bet-type h4 {
            color: #ffa500;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .sports-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin: 20px 0;
        }

        .sport-item {
            background: #3a3a3a;
            padding: 10px 15px;
            border-radius: 6px;
            color: #ccc;
            font-size: 14px;
            text-align: center;
        }

        .faq-item {
            background: #3a3a3a;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            background: #4a4a4a;
            padding: 15px 20px;
            color: #ffa500;
            font-weight: bold;
            cursor: pointer;
            border-bottom: 1px solid #555;
        }

        .faq-answer {
            padding: 15px 20px;
            color: #ccc;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
        }

        .sidebar-overlay.active {
            display: block;
        }

        /* Table styles for characteristics */
        .characteristics-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #3a3a3a;
            border-radius: 8px;
            overflow: hidden;
        }

        .characteristics-table th,
        .characteristics-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #555;
        }

        .characteristics-table th {
            background: #ffa500;
            color: #000;
            font-weight: bold;
        }

        .characteristics-table td:first-child {
            background: #4a4a4a;
            font-weight: bold;
            color: #ffa500;
        }

        .characteristics-table td:last-child {
            color: #fff;
        }

        /* Responsive table wrapper */
        .table-wrapper {
            overflow-x: auto;
            margin: 20px 0;
        }

        /* Pros and cons styles */
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }

        .pros, .cons {
            background: #3a3a3a;
            padding: 20px;
            border-radius: 8px;
        }

        .pros {
            border-left: 4px solid #4CAF50;
        }

        .cons {
            border-left: 4px solid #f44336;
        }

        .pros h4 {
            color: #4CAF50;
            margin-bottom: 15px;
        }

        .cons h4 {
            color: #f44336;
            margin-bottom: 15px;
        }

        .pros ul, .cons ul {
            list-style: none;
            padding: 0;
        }

        .pros li::before {
            content: "✓ ";
            color: #4CAF50;
            font-weight: bold;
        }

        .cons li::before {
            content: "✗ ";
            color: #f44336;
            font-weight: bold;
        }

        /* Button styles */
        .cta-button {
            background: linear-gradient(135deg, #ffa500, #ff8c00);
            color: #000;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 10px 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
        }

        .center-content {
            text-align: center;
            margin: 20px 0;
        }

        /* Mobile responsive styles */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
            }
            
            .sidebar {
                order: 1;
            }

            .main-content {
                order: 2;
            }

            .right-sidebar {
                order: 3;
                width: 100%;
                border-left: none;
                border-top: 1px solid #333;
            }

            .pros-cons {
                grid-template-columns: 1fr;
            }

            .table-wrapper {
                margin: 10px -20px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 10px 15px;
                flex-wrap: wrap;
            }

            .logo-text {
                font-size: 20px;
            }

            .nav {
                padding: 8px 15px;
                overflow-x: auto;
                white-space: nowrap;
                gap: 20px;
            }

            .nav::-webkit-scrollbar {
                height: 4px;
            }

            .nav::-webkit-scrollbar-track {
                background: #333;
                border-radius: 2px;
            }

            .nav::-webkit-scrollbar-thumb {
                background: #ffa500;
                border-radius: 2px;
            }

            .container {
                flex-direction: column;
                min-height: auto;
            }
            
            .sidebar {
                position: fixed;
                left: -100%;
                top: 0;
                width: 85%;
                max-width: 320px;
                height: 100vh;
                z-index: 1000;
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .sidebar.active {
                left: 0;
            }
            
            .main-content {
                width: 100%;
                padding: 15px;
                margin-top: 0;
            }

            .right-sidebar {
                width: 100%;
                padding: 15px;
                border-left: none;
                border-top: 1px solid #333;
            }
            
            .hero-banner {
                padding: 20px;
                margin-bottom: 20px;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .hero-title,
            .hero-subtitle {
                font-size: 28px;
            }
            
            .hero-image {
                flex-direction: column;
                gap: 15px;
            }
            
            .number-2025 {
                font-size: 60px;
            }

            .trophy {
                width: 100px;
                height: 100px;
            }

            .trophy::before {
                font-size: 40px;
            }

            .soccer-ball {
                width: 40px;
                height: 40px;
            }

            .soccer-ball::before {
                font-size: 25px;
            }

            .betting-section {
                padding: 15px;
                margin-bottom: 15px;
            }

            .betting-table {
                font-size: 12px;
            }

            .betting-table th,
            .betting-table td {
                padding: 8px 4px;
            }

            .odds-button {
                padding: 6px 8px;
                font-size: 11px;
                min-width: 45px;
            }

            .promo-card,
            .promo-card-2,
            .promo-card-3 {
                padding: 15px;
                margin-bottom: 15px;
            }

            .promo-title {
                font-size: 18px;
            }

            .footer {
                padding: 40px 15px 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: left;
            }

            .footer-section h3 {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .footer-section a {
                font-size: 13px;
            }

            .apps-section h3 {
                font-size: 14px;
            }

            .app-buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .app-button {
                width: 200px;
                justify-content: center;
            }

            .partners-section h3,
            .info-partners-section h3 {
                font-size: 14px;
            }

            .partners-logos,
            .info-partners-logos {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .partner-logo,
            .info-partner-logo {
                text-align: center;
                font-size: 10px;
                padding: 8px 12px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-contacts {
                flex-direction: column;
                gap: 10px;
            }

            .footer-legal {
                font-size: 10px;
                text-align: center;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .content-section {
                padding: 20px 15px;
            }

            .content-section h2 {
                font-size: 20px;
            }

            .content-section h3 {
                font-size: 16px;
            }

            .features-grid,
            .bet-types,
            .sports-list {
                grid-template-columns: 1fr;
            }

            .feature-item,
            .bet-type {
                padding: 15px;
            }

            .characteristics-table th,
            .characteristics-table td {
                padding: 10px 8px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 8px 10px;
            }

            .auth-buttons {
                gap: 5px;
            }

            .btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .logo-text {
                font-size: 18px;
            }

            .nav {
                padding: 6px 10px;
                gap: 15px;
            }

            .nav a {
                font-size: 12px;
            }

            .main-content {
                padding: 10px;
            }

            .hero-banner {
                padding: 15px;
            }

            .hero-title,
            .hero-subtitle {
                font-size: 24px;
            }

            .number-2025 {
                font-size: 50px;
            }

            .betting-section {
                padding: 10px;
            }

            .section-title {
                font-size: 14px;
            }

            .betting-table {
                font-size: 11px;
            }

            .betting-table th,
            .betting-table td {
                padding: 6px 2px;
            }

            .odds-button {
                padding: 4px 6px;
                font-size: 10px;
                min-width: 35px;
            }

            .right-sidebar {
                padding: 10px;
            }

            .promo-card,
            .promo-card-2,
            .promo-card-3 {
                padding: 12px;
            }

            .promo-title {
                font-size: 16px;
            }

            .footer {
                padding: 30px 10px 20px;
            }

            .app-button {
                width: 180px;
                padding: 6px 12px;
            }

            .partner-logo,
            .info-partner-logo {
                font-size: 9px;
                padding: 6px 10px;
            }

            .footer-legal {
                font-size: 9px;
            }

            .characteristics-table th,
            .characteristics-table td {
                padding: 8px 5px;
                font-size: 12px;
            }
        }

        /* Landscape phone orientation */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-content {
                flex-direction: row;
                text-align: left;
            }

            .hero-image {
                flex-direction: row;
                gap: 10px;
            }

            .number-2025 {
                font-size: 40px;
            }

            .trophy {
                width: 80px;
                height: 80px;
            }

            .trophy::before {
                font-size: 30px;
            }
        }