/* Basic Reset & Body Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif; /* Default font */
    line-height: 1.6;
    color: #333; /* Dark text color for main content */
    background-color: #222; /* Dark fallback background */
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

/* --- Stunning Background --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('football-background.jpg') no-repeat center center fixed; /* <<<--- CHANGE THIS IMAGE! */
    background-size: cover;
    z-index: -2;
}

.background-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Darker overlay */
    z-index: -1;
}

/* Main Content Container */
.container {
    max-width: 1200px;
    width: 95%;
    margin: 20px auto;
    padding: 30px 40px;
    background-color: rgba(255, 255, 255, 0.97); /* Slightly more opaque white */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1;
    animation: fadeIn 1s ease-in-out;
}

/* Header Styling */
header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #E0C56E; /* Gold accent color - adjust hex code if needed */
}

header .logo {
    max-width: 120px; /* Adjust logo size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 100%;
}

header h1 {
    font-family: 'Anton', sans-serif; /* Switched to Anton for impact */
    font-size: 3em;
    color: #333; /* Dark color for heading on light background */
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2em;
    color: #B8860B; /* Darker Gold/Bronze */
    margin-bottom: 15px;
    line-height: 1;
}

header .subtitle {
    font-size: 1.1em;
    color: #555;
    font-weight: 400; /* Normal weight */
    line-height: 1.4;
}

/* Event Details Section */
.event-details {
    background-color: #f9f9f9; /* Light grey background for this section */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left; /* Align text left within this box */
}

.event-details h3 {
    text-align: center; /* Center the heading */
    margin-bottom: 15px;
    color: #B8860B; /* Dark Gold */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4em;
}

.event-details ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
}

.event-details li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
    border-left: 3px solid #E0C56E; /* Gold accent line */
    padding-left: 10px;
}

.event-details li strong {
    color: #333;
    margin-right: 5px;
}


/* Main Content & Konfhub Embed */
main h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.6em;
    font-weight: 700;
}

.instructions {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px; /* Space above embed */
}

.konfhub-embed-container {
    margin-top: 10px; /* Reduced top margin */
    margin-bottom: 20px;
    padding: 10px; /* Reduced padding */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.konfhub-embed-container iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    height: 65vh;
    max-height: 700px;
    border: none;
    border-radius: 4px;
}

/* Footer Styling */
footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #777;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container {
        padding: 25px 30px;
    }
    header h1 {
        font-size: 2.6em;
    }
    header h2 {
        font-size: 1.8em;
    }
    header .subtitle {
        font-size: 1em;
    }
    .event-details {
        padding: 15px;
    }
    .event-details h3 {
        font-size: 1.3em;
    }
    .event-details li {
        font-size: 0.95em;
    }
    main h3 {
        font-size: 1.4em;
    }
    .konfhub-embed-container iframe {
        min-height: 450px;
        height: 60vh;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px 0;
    }
    .container {
        padding: 20px 15px;
        width: 98%;
        margin-top: 10px;
    }
     header .logo {
        max-width: 100px;
    }
    header h1 {
        font-size: 2em;
    }
    header h2 {
        font-size: 1.5em;
    }
     header .subtitle {
        font-size: 0.9em;
    }
     .event-details h3 {
        font-size: 1.2em;
    }
     .event-details li {
        font-size: 0.9em;
    }
    main h3 {
        font-size: 1.3em;
    }
    .instructions {
        font-size: 1em;
    }
    .konfhub-embed-container {
        padding: 5px;
    }
    .konfhub-embed-container iframe {
        min-height: 400px;
        height: 55vh;
    }
}