:root {
    /* Color System */
    --bg-main: #0e1114;
    --bg-sec: #151a1f;
    --bg-card: #1c2228;
    --border: #2a323a;
    
    /* Accents */
    --field-green: #22c55e;
    --jersey-blue: #3b82f6;
    --match-yellow: #facc15;
    
    /* Text */
    --text-pri: #f3f4f6;
    --text-sec: #9ca3af;

    /* Layout Spacing (Mobile First) */
    --spacing-section: 50px;
    --container-width: 1250px;
}

@media (min-width: 768px) {
    :root {
        --spacing-section: 70px;
    }
}

@media (min-width: 1024px) {
    :root {
        --spacing-section: 100px;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-pri);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--jersey-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--field-green);
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-pri);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    color: var(--text-sec);
    margin-bottom: 1rem;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-accent-yellow {
    color: var(--match-yellow);
}

.divider {
    height: 1px;
    background-color: var(--border);
    margin: 20px 0;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--field-green);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #1ea951; /* Slight darken */
    transform: translateY(-2px);
    color: #ffffff;
}

/* Header & Nav */
.site-header {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-pri);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 32px;
    width: 32px;
}

.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-pri);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--field-green);
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
}

/* Hero Section (Stadium) */
.hero {
    position: relative;
    padding: var(--spacing-section) 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10,10,15,0.75), rgba(10,10,15,0.9)), url('images/football-stadium-night-match-background.jpg') center/cover no-repeat;
    border-bottom: 4px solid var(--field-green);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-pri);
}

.disclaimer-badge {
    display: inline-block;
    border: 2px solid var(--match-yellow);
    background-color: rgba(28, 34, 40, 0.8);
    color: var(--match-yellow);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Game Section (Match Center) */
.section-game {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-sec);
}

.match-center-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

@media (min-width: 768px) {
    .match-center-container {
        padding: 40px;
    }
}

.match-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.match-header img {
    width: 32px;
    height: 32px;
}

.match-header h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

.match-scoreboard-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--field-green) 0%, var(--bg-card) 100%);
    margin: 20px 0 30px 0;
}

.game-iframe-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 9;
    min-height: 400px;
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Features Section */
.section-features {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--field-green);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    background-color: var(--bg-sec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

/* Internal Pages Styling */
.page-header {
    padding: var(--spacing-section) 0;
    background: linear-gradient(rgba(10,10,15,0.75), rgba(10,10,15,0.9)), url('images/football-stadium-night-match-background.jpg') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-content {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-main);
}

.content-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2, .content-box h3 {
    margin-top: 30px;
    color: var(--jersey-blue);
}

.content-box ul {
    margin-bottom: 20px;
    margin-left: 20px;
    color: var(--text-sec);
}

.content-box li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-pri);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-sec);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-pri);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--field-green);
}

.contact-form .btn {
    align-self: flex-start;
}

/* Footer */
.site-footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about h3 {
    color: var(--field-green);
}

.company-address {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-sec);
    font-style: normal;
    line-height: 1.6;
}

.company-address strong {
    color: var(--text-pri);
    display: block;
    margin-bottom: 4px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--text-pri);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-sec);
}

.footer-links a:hover {
    color: var(--field-green);
}

.footer-legal-notice {
    background-color: var(--bg-sec);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
    text-align: center;
}

.footer-legal-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-sec);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    color: var(--text-sec);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom.no-border {
    border: none;
}