* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0a1a;
            color: white;
            overflow-x: hidden;
            padding-bottom: 80px; /* Space for mobile bottom nav */
        }
        
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            padding: 1rem;
            text-align: center;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        
        .top-nav {
            background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
            display: flex;
            justify-content: center;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .top-nav a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1.2rem;
            margin: 0 0.5rem;
            border-radius: 20px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .top-nav a::before {
            font-family: 'Arial', sans-serif;
            font-size: 1.1rem;
        }
        
        .top-nav a[href*="home"]::before,
        .top-nav a:first-child::before {
            content: "🏠";
        }
        
        .top-nav a[href*="live"]::before,
        .top-nav a:nth-child(2)::before {
            content: "📺";
        }
        
        .top-nav a[href*="tournament"]::before,
        .top-nav a:nth-child(3)::before {
            content: "🏆";
        }
        
        .top-nav a[href*="result"]::before,
        .top-nav a:nth-child(4)::before {
            content: "📊";
        }
        
        .top-nav a[href*="premium"]::before,
        .top-nav a:nth-child(5)::before {
            content: "💎";
        }
        
        .top-nav a[href*="contact"]::before,
        .top-nav a:last-child::before {
            content: "📞";
        }
        
        .top-nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffcc00;
        }
        
        .marquee-container {
            background: #1a1a2e;
            padding: 0.5rem 0;
            overflow: hidden;
            position: relative;
        }
        
        .marquee {
            white-space: nowrap;
            animation: marquee 30s linear infinite;
            display: inline-block;
            padding-left: 100%;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        .marquee span {
            color: #ffcc00;
            margin-right: 3rem;
            font-weight: bold;
        }
        
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            padding: 1rem;
        }
        
        .category {
            background: linear-gradient(45deg, #273c75, #192a56);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .category:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .category h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #ffcc00;
        }
        
        .category p {
            color: #ddd;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .category-image {
            width: 100%;
            height: 120px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .category-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }
        
        .cat-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffcc00;
            color: #192a56;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 1;
        }
        
        .telegram-btn {
            display: inline-block;
            background: linear-gradient(45deg, #0088cc, #005f99);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 1rem;
            font-weight: bold;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .telegram-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
        }
        
        .slider-container {
            width: 100%;
            overflow: hidden;
            margin: 1rem 0;
        }
        
        .slider {
            display: flex;
            animation: slide 20s linear infinite;
            width: calc(200px * 10);
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 5)); }
        }
        
        .slide {
            width: 200px;
            height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(45deg, #303f9f, #1e3b70);
            margin: 0 10px;
            border-radius: 8px;
            flex-shrink: 0;
        }
        
        .slide h4 {
            color: #ffcc00;
            margin-bottom: 0.3rem;
        }
        
        .slide p {
            color: white;
            font-size: 0.8rem;
        }
        
        .last-winner {
            background: linear-gradient(45deg, #6d3b00, #a85c00);
            padding: 1rem;
            margin: 1rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .last-winner h3 {
            color: #ffcc00;
            margin-bottom: 0.5rem;
        }
        
        .last-winner .team {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            animation: shine 2s infinite;
        }
        
        @keyframes shine {
            0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); }
            50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
            100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); }
        }
        
        .otp-section {
            background: #1f1f3d;
            padding: 1rem;
            margin: 1rem;
            border-radius: 10px;
            text-align: center;
        }
        
        .otp-section h3 {
            color: #ffcc00;
            margin-bottom: 0.5rem;
        }
        
        .otp-input {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        
        .otp-input input {
            width: 40px;
            height: 40px;
            text-align: center;
            font-size: 1.2rem;
            border: 2px solid #4a4a8a;
            border-radius: 5px;
            background-color: #292959;
            color: white;
        }
        
        .verify-btn {
            background: linear-gradient(45deg, #009432, #006400);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .verify-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(0, 148, 50, 0.5);
        }
        
        .main-telegram {
            background: linear-gradient(45deg, #0088cc, #005f99);
            padding: 1.5rem;
            margin: 1rem;
            border-radius: 10px;
            text-align: center;
        }
        
        .main-telegram h2 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .main-telegram p {
            color: #ddd;
            margin-bottom: 1rem;
        }
        
        .big-telegram-btn {
            display: inline-block;
            background: #fff;
            color: #0088cc;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .big-telegram-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
        }
        
        .contact-section {
            background: linear-gradient(45deg, #3a6073, #16222a);
            padding: 2rem;
            margin: 1rem;
            border-radius: 10px;
        }
        
        .contact-section h2 {
            color: #ffcc00;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .contact-card {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }
        
        .contact-card h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        
        .contact-card p {
            color: #ddd;
            margin-bottom: 1rem;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
        }
        
        .stats-bar {
            display: flex;
            justify-content: space-around;
            padding: 1rem;
            background: #1a1a2e;
            margin: 1rem;
            border-radius: 10px;
            flex-wrap: wrap;
        }
        
        .stat {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ffcc00;
            margin-bottom: 0.3rem;
        }
        
        .stat-label {
            color: #ddd;
            font-size: 0.9rem;
        }
        
        footer {
            background: linear-gradient(to right, #141e30, #243b55);
            padding: 2rem 1rem;
            margin-top: 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: #ffcc00;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.8rem;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .social-icons a {
            color: #ddd;
            margin: 0 0.5rem;
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: #ffcc00;
        }

        /* Mobile Responsive Styles */
        @media screen and (max-width: 768px) {
            body {
                padding-bottom: 70px;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            /* Move top navigation to bottom on mobile */
            .top-nav {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                z-index: 1000;
                padding: 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: none;
                justify-content: space-around;
                background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            }
            
            .top-nav a {
                padding: 0.4rem 0.6rem;
                margin: 0 0.1rem;
                font-size: 0.75rem;
                border-radius: 15px;
                flex-direction: column;
                gap: 0.2rem;
            }
            
            .top-nav a::before {
                font-size: 1.2rem;
            }
            
            /* Adjust categories grid for mobile */
            .categories {
                grid-template-columns: 1fr;
                padding: 0.5rem;
                gap: 0.8rem;
            }
            
            .category {
                min-height: 250px;
                padding: 1rem;
            }
            
            .category h2 {
                font-size: 1.3rem;
            }
            
            .category p {
                font-size: 0.85rem;
            }
            
            /* Adjust marquee for mobile */
            .marquee span {
                margin-right: 2rem;
                font-size: 0.9rem;
            }
            
            /* Slider adjustments */
            .slide {
                width: 160px;
                height: 80px;
            }
            
            .slide h4 {
                font-size: 0.9rem;
            }
            
            .slide p {
                font-size: 0.7rem;
            }
            
            /* Stats bar mobile layout */
            .stats-bar {
                flex-direction: column;
                gap: 0.5rem;
                margin: 0.5rem;
                padding: 0.8rem;
            }
            
            .stat {
                padding: 0.5rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 0.8rem;
            }
            
            /* Contact section mobile */
            .contact-section {
                padding: 1rem;
                margin: 0.5rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .contact-card {
                padding: 1rem;
            }
            
            /* OTP section mobile */
            .otp-section {
                margin: 0.5rem;
                padding: 0.8rem;
            }
            
            .otp-input {
                gap: 0.3rem;
            }
            
            .otp-input input {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            /* Main telegram section */
            .main-telegram {
                margin: 0.5rem;
                padding: 1rem;
            }
            
            .big-telegram-btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            
            /* Last winner section */
            .last-winner {
                margin: 0.5rem;
                padding: 0.8rem;
            }
            
            .last-winner .team {
                font-size: 1rem;
            }
            
            /* Footer mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            footer {
                padding: 1rem;
            }
            
            .footer-section h3 {
                font-size: 1rem;
            }
            
            .social-icons a {
                font-size: 1rem;
                margin: 0 0.3rem;
            }
        }
        
        /* Extra small mobile devices */
        @media screen and (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            
            .top-nav a {
                padding: 0.3rem 0.4rem;
                font-size: 0.65rem;
                margin: 0 0.05rem;
                flex-direction: column;
                gap: 0.1rem;
            }
            
            .top-nav a::before {
                font-size: 1rem;
            }
            
            .category {
                min-height: 200px;
                padding: 0.8rem;
            }
            
            .category h2 {
                font-size: 1.1rem;
            }
            
            .category p {
                font-size: 0.8rem;
            }
            
            .category-image {
                height: 100px;
            }
            
            .slide {
                width: 140px;
                height: 70px;
            }
            
            .otp-input input {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            
            .telegram-btn,
            .whatsapp-btn,
            .verify-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            
            .big-telegram-btn {
                font-size: 0.9rem;
                padding: 0.7rem 1.2rem;
            }
            
            .stat-number {
                font-size: 1.3rem;
            }
        }
        
        /* Landscape mobile orientation */
        @media screen and (max-height: 500px) and (orientation: landscape) {
            .top-nav {
                padding: 0.3rem;
            }
            
            .top-nav a {
                padding: 0.2rem 0.4rem;
                font-size: 0.7rem;
                flex-direction: column;
                gap: 0.1rem;
            }
            
            .top-nav a::before {
                font-size: 0.9rem;
            }
            
            body {
                padding-bottom: 55px;
            }
            
            .category {
                min-height: 180px;
            }
        }