* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #000000 0%, #232323 100%);
            color: white;
            overflow-x: hidden;
            min-height: 100vh;
        }
		
		html, body {
			height: 100%;
			margin: 0; /* Remove default browser margins */
			padding: 0; /* Remove default browser padding */
			
		}
		a {
			text-decoration: none;
			color: white;
		}

		body {
			/* Set the background image and specify its path */
			background-image: url("../images/bg.jpg"); 
			
			/* Center the image in the viewport */
			background-position: center; 
			
			/* Do not repeat the image */
			background-repeat: no-repeat; 
			
			/* Scale the image to cover the entire container (the body element) */
			background-size: cover; 
			
			/* Optional: Fix the background so it doesn't scroll with content */
			background-attachment: fixed;
			
			/* Optional: Set a background color in case the image fails to load */
			background-color: #000000;
		  }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 10;
        }
        
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 30px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .caf-logo, .betway-logo {
            height: 60px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
        }
        
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .hero-text {
            animation: fadeInUp 1s ease-out;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #ffffff, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            
            line-height: 1.1;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #009900;
        }
        
        .highlight {
            color: #00ff00;
            font-weight: bold;
        }
        
        .bonus-badge {
            display: inline-block;
            background: linear-gradient(90deg, #00ff00, #009900);
            color: #0a1a2d;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3rem;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(60, 255, 0, 0.4);
            animation: pulse 2s infinite;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, #009900, #03d703);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            padding: 20px 190px;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 20px;
            box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 200, 83, 0.5);
            background: linear-gradient(90deg, #03d703, #00C853);
        }
        
        .hero-image {
            position: relative;
            text-align: center;
            animation: float 3s ease-in-out infinite;
        }
        
        .soccer-ball {
            width: 300px;
            height: 300px;
            margin: 0 auto;
            position: relative;
        }
        
        .soccer-ball img {
            width: 100%;
            height: 100%;
            animation: spin 20s linear infinite;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 60px 0;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(60, 255, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature i {
            font-size: 2.5rem;
            color: #f8e825;
            margin-bottom: 15px;
        }
        
        .feature h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #ffffff;
        }
        
        .countdown {
            text-align: center;
            margin: 60px 0;
            padding: 30px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 2px solid #009900;
        }
        
        .countdown h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .countdown-item {
            background: rgba(60, 255, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            min-width: 100px;
        }
        
        .countdown-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: #009900;
        }
        
        .countdown-label {
            font-size: 1rem;
            margin-top: 5px;
            color: #ddd;
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid rgba(60, 255, 0, 0.1);
            margin-top: 40px;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .disclaimer {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            font-size: 0.8rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
            }
            50% {
                box-shadow: 0 5px 25px rgba(0, 102, 255, 0.8);
            }
            100% {
                box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes moveBg {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        /* Background elements */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            opacity: 0.1;
        }
        
        .bg-element-1 {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFD700" stroke-width="2"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23FFD700" stroke-width="2"/></svg>') no-repeat;
            animation: spin 40s linear infinite reverse;
        }
        
        .bg-element-2 {
            top: 70%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="%2300C853" stroke-width="2"/></svg>') no-repeat;
            animation: spin 30s linear infinite;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .features {
                grid-template-columns: 1fr;
            }
            
            .countdown-container {
                flex-wrap: wrap;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.0rem;
            }
            
            .cta-button {
                font-size: 1.2rem;
                padding: 15px 111px;
            }
			.caf-logo, .betway-logo {
				height: 38px;
			}
        }