:root {
    --arsenal-red: #DB0007;
    --arsenal-dark-red: #9C0006;
    --arsenal-navy: #063672;
    --arsenal-gold: #EFB920;
    --text-dark: #1C1C1C;
    --text-light: #666666;
    --bg-light: #F8F8F8;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success: #4CAF50;
    --warning: #FF9800;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 3px solid var(--arsenal-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--arsenal-red);
}

.nav-menu .active a {
    color: var(--arsenal-red);
}

.nav-menu .active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--arsenal-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--arsenal-red) 0%, var(--arsenal-dark-red) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Links Grid */
.quick-links {
    padding: 60px 0;
    background: var(--bg-light);
}

.quick-links h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--arsenal-navy);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.card h3 {
    color: var(--arsenal-red);
    margin-bottom: 10px;
    font-size: 20px;
}

/* News Section */
.latest-news {
    padding: 60px 0;
}

.latest-news h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--arsenal-navy);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.news-item h3 {
    color: var(--arsenal-navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.read-more {
    color: var(--arsenal-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Match Center */
.match-center {
    background: var(--arsenal-navy);
    color: var(--white);
    padding: 60px 0;
}

.match-center h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.next-match {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.vs {
    color: var(--arsenal-gold);
    font-size: 20px;
}

.match-details {
    margin-bottom: 30px;
    font-size: 18px;
}

.match-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--arsenal-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--arsenal-dark-red);
}

.btn-secondary {
    background: var(--white);
    color: var(--arsenal-navy);
}

.btn-secondary:hover {
    background: var(--bg-light);
}

.btn-outline {
    border: 2px solid var(--arsenal-red);
    color: var(--arsenal-red);
    background: transparent;
}

.btn-outline:hover {
    background: var(--arsenal-red);
    color: var(--white);
}

/* Content Sections */
.content-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--arsenal-red);
}

.quick-info-box {
    background: var(--bg-light);
    border: 2px solid var(--arsenal-red);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.quick-info-box h2 {
    color: var(--arsenal-navy);
    margin-bottom: 20px;
}

.quick-info-box ul {
    list-style: none;
}

.quick-info-box li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th {
    background: var(--arsenal-navy);
    color: var(--white);
    padding: 15px;
    text-align: left;
}

table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

table tr:hover {
    background: var(--bg-light);
}

/* Player Cards */
.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.player-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: all 0.3s;
}

.player-card:hover {
    border-color: var(--arsenal-red);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.player-card.featured {
    border-color: var(--arsenal-gold);
    background: linear-gradient(135deg, rgba(239,185,32,0.05) 0%, rgba(219,0,7,0.05) 100%);
}

.player-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: bold;
    color: var(--arsenal-red);
    opacity: 0.3;
}

.player-card h3 {
    font-size: 24px;
    color: var(--arsenal-navy);
    margin-bottom: 15px;
}

.captain-badge {
    display: inline-block;
    background: var(--arsenal-gold);
    color: var(--arsenal-navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.player-info {
    margin-bottom: 20px;
}

.player-info p {
    margin: 5px 0;
}

.player-stats {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.player-stats h4 {
    color: var(--arsenal-red);
    margin-bottom: 10px;
}

.player-stats ul {
    list-style: none;
}

.player-stats li {
    padding: 3px 0;
}

.player-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Warning & Info Boxes */
.warning-box {
    background: #FFF3E0;
    border: 2px solid var(--warning);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.warning-box h3 {
    color: var(--warning);
    margin-bottom: 15px;
}

.info-box {
    background: #E3F2FD;
    border: 2px solid #2196F3;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

/* Live Indicator */
.live-alert {
    background: linear-gradient(135deg, var(--arsenal-red) 0%, var(--arsenal-dark-red) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Provider Cards */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.provider-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.provider-card h4 {
    color: var(--arsenal-navy);
    margin-bottom: 15px;
    font-size: 22px;
}

.btn-provider {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--arsenal-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-provider:hover {
    background: var(--arsenal-dark-red);
}

/* Footer */
footer {
    background: var(--arsenal-navy);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--arsenal-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--arsenal-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--arsenal-red);
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-section h3 {
    color: var(--arsenal-navy);
    margin: 30px 0 15px;
    font-size: 20px;
}

.faq-section p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .lead {
        font-size: 16px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .match-actions {
        flex-direction: column;
    }
    
    .player-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    header, footer, .match-actions, .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}