 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Poppins:wght@400;600&display=swap');

        :root {
            --primary-text: #FFFFFF;
            --secondary-text: #ffffff;
            --accent-purple: #ec5b0d;
            --accent-blue: #ec5b0d;
            --overlay-color: rgb(255, 38, 0); /* Orange overlay */
            --timer-bg: rgba(0, 0, 0, 0.4);
            --social-icon-color: #FFFFFF;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #000; /* Fallback background for the image */
            color: var(--primary-text);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("boxing-ring.jpg"); /* Boxing ring image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.4; /* Adjust opacity for the background image */
            z-index: -2; /* Place behind the overlay */
        }

        body::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #000000b7, #00000071,#000000);
            opacity: 0.6; /* Adjust opacity for the overlay */
            z-index: -1; /* Place between background image and content */
        }

        .container {
            position: relative;
            z-index: 1;
            padding: 2rem;
            max-width: 90%;
        }

        .logo {
            margin-bottom: 1rem;
        }

        .logo img {
            max-width: 110px; /* Adjust as needed */
            height: auto;
        }
.REPRESENTS{
            font-size: 2.2rem;
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            font-weight: 700;
            color: white;
             text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 
                   0 0 30px rgb(255, 255, 255),
                   0 0 45px rgb(255, 255, 255);
}
        h1 {
            font-size: 2.2rem;
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            margin-bottom: 0.5rem;
            font-weight: 700;
            line-height: 0.8;
            color: #ff7a1f;
             text-shadow: 0 0 5px #ff7a1f, 
                   0 0 40px #ff974f, 
                   0 0 60px #ffb37f;
        }

        h2 {
            font-size: 1.2rem;
            color: var(--secondary-text);
            margin-top: 0;
            margin: 10px 10px;
            font-weight: 400;
        }

        .timer-display {
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--timer-bg);
            border-radius: 10px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .timer-colon {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: var(--accent-purple);
            margin: 0 5px;
        }

        .timer-segment {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 10px;
        }

        .timer-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-blue);
            line-height: 1;
        }

        .timer-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--secondary-text);
            margin-top: 5px;
            letter-spacing: 1px;
        }

        .social-icons {
            margin-top: 2rem;
            margin-bottom: 2.5rem;
        }

        .social-icons a {
            color: var(--social-icon-color);
            font-size: 1.8rem;
            margin: 0 10px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--accent-purple);
        }

        .btn-notify {
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
            border: none;
            color: var(--primary-text);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-notify:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1rem;
            }
            .timer-value {
                font-size: 2rem;
            }
            .timer-colon {
                font-size: 2rem;
            }
            .timer-display {
                padding: 1rem 1.5rem;
            }
            .social-icons a {
                font-size: 1.5rem;
                margin: 0 8px;
            }
            .btn-notify {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                max-width: 110px;
            }
            h1 {
                font-size: 1.5rem;
                line-height: 40px;
            }
            h2 {
                font-size: 0.9rem;
            }
            .timer-value {
                font-size: 1.5rem;
            }
            .timer-colon {
                font-size: 1.5rem;
            }
            .timer-segment {
                margin: 0 5px;
            }
            .timer-label {
                font-size: 0.7rem;
            }
            .social-icons a {
                font-size: 1.3rem;
                margin: 0 6px;
            }
            .btn-notify {
                padding: 0.7rem 1.8rem;
                font-size: 0.9rem;
            }
        }