        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

        .header {
            background: rgba(26, 29, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00d4ff;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #00d4ff;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00d4ff;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-login {
            background: transparent;
            color: #ffffff;
            border: 2px solid #00d4ff;
        }

        .btn-login:hover {
            background: #00d4ff;
            color: #0a0e1a;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
        }

        .btn-signup {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: #ffffff;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }

        .hero {
            padding: 120px 2rem 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #ffffff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: -200% center; }
            50% { background-position: 200% center; }
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            padding: 1rem 2rem;
            font-size: 1.1rem;
            transform: scale(1);
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
        }

        .features {
            padding: 80px 2rem;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #00d4ff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(26, 29, 41, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: #00d4ff;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #00d4ff;
        }

        .sports-section {
            padding: 80px 2rem;
        }

        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .sport-card {
            background: rgba(26, 29, 41, 0.9);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }

        .sport-card:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: scale(1.05);
            border-color: #00d4ff;
        }

        .sport-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .live-betting {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
            padding: 80px 2rem;
            text-align: center;
        }

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 0, 0, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin-bottom: 2rem;
            border: 1px solid #ff0000;
        }

        .pulse {
            width: 10px;
            height: 10px;
            background: #ff0000;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .odds-table {
            background: rgba(26, 29, 41, 0.9);
            border-radius: 15px;
            overflow: hidden;
            margin: 2rem auto;
            max-width: 800px;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .odds-header {
            background: rgba(0, 212, 255, 0.2);
            padding: 1rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 1rem;
            font-weight: bold;
        }

        .odds-row {
            padding: 1rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }

        .odds-row:hover {
            background: rgba(0, 212, 255, 0.1);
        }

        .odds-btn {
            background: rgba(0, 212, 255, 0.2);
            border: 1px solid #00d4ff;
            color: #ffffff;
            padding: 0.5rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .odds-btn:hover {
            background: #00d4ff;
            color: #0a0e1a;
        }

        .footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        .mobile-menu {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 29, 41, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(0, 212, 255, 0.3);
                display: none;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .odds-header, .odds-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
        }

        .promotion-banner {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            padding: 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .promotion-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: slide 3s infinite;
        }

        @keyframes slide {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        
        .img{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.img img{
    width: 70px;
    padding-left: 15px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    padding: 5px;
    display: flex !important;
    justify-content: center;

}


.footer-links {
    display: flex;
    justify-content: center;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 100%);
            color: #ffffff;
            min-height: 100vh;
        }

        .header {
            background: rgba(26, 29, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00d4ff;
            text-decoration: none;
        }

        .breadcrumb {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .breadcrumb a {
            color: #00d4ff;
            text-decoration: none;
        }

        .breadcrumb span {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0.5rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .page-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #00d4ff;
            text-align: center;
        }

        .sports-filter {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            padding: 0.7rem 1.5rem;
            background: rgba(26, 29, 41, 0.8);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: #ffffff;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: #00d4ff;
            color: #0a0e1a;
        }

        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .sport-category {
            background: rgba(26, 29, 41, 0.9);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .sport-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sport-icon {
            font-size: 2rem;
        }

        .sport-title {
            font-size: 1.3rem;
            color: #00d4ff;
        }

        .matches-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .match-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            align-items: center;
            transition: all 0.3s ease;
        }

        .match-row:hover {
            background: rgba(0, 212, 255, 0.1);
        }

        .match-info {
            display: flex;
            flex-direction: column;
        }

        .match-teams {
            font-weight: bold;
            margin-bottom: 0.3rem;
        }

        .match-time {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .odds-btn {
            background: rgba(0, 212, 255, 0.2);
            border: 1px solid #00d4ff;
            color: #ffffff;
            padding: 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .odds-btn:hover {
            background: #00d4ff;
            color: #0a0e1a;
            transform: scale(1.05);
        }

        .live-indicator {
            background: #ff0000;
            color: white;
            padding: 0.3rem 0.7rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .popular-bets {
            background: rgba(26, 29, 41, 0.9);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .popular-title {
            font-size: 1.5rem;
            color: #00d4ff;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .bet-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .bet-type {
            background: rgba(0, 0, 0, 0.4);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .bet-type:hover {
            border-color: #00d4ff;
            background: rgba(0, 212, 255, 0.1);
        }

        @media (max-width: 768px) {
            .match-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
                text-align: center;
            }

            .sports-filter {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }

            .filter-btn {
                white-space: nowrap;
            }
        }

        .footer-links a {
    text-decoration: none;
    color: white;
    padding: 5px;
    display: flex !important;
    justify-content: center;

}

