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

:root {
    --primary: #000;
    --primary-dark: #333;
    --accent: #FFF;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #FFF;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--light);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-tickets {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-tickets:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    padding-top: 100px;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav-link {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px;
}

.mobile-nav-cta {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    color: var(--light);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title-line { display: block; }
.hero-title.accent { color: #888; }

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ccc;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.stats-bar {
    background: var(--primary);
    padding: 40px 0;
    border-bottom: 3px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item { color: var(--light); }

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.next-match {
    padding: 80px 0;
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.match-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 40px;
    border-top: 4px solid var(--primary);
}

.match-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.match-league {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.match-team { text-align: center; }
.team-crest { margin-bottom: 15px; }
.team-name { display: block; font-weight: 700; font-size: 1.1rem; color: var(--dark); }

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

.match-time {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.match-vs-text {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 15px;
}

.match-venue {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-tickets-match {
    background: var(--primary);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-tickets-match:hover { background: var(--primary-dark); }

.last-result {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.result-card {
    background: var(--light);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.result-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.result-team { font-weight: 600; font-size: 0.95rem; }

.result-score {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.result-win, .result-draw {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.result-win { background: #4caf50; color: white; }
.result-draw { background: #ff9800; color: white; }

.news {
    padding: 80px 0;
    background: var(--light);
}

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

.news-card {
    background: var(--gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.news-card.featured { grid-column: span 2; }

.news-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-img { height: 300px; }

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-img img { transform: scale(1.05); }

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-body { padding: 25px; }

.news-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card.featured .news-title { font-size: 1.5rem; }

.news-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-more {
    text-align: center;
    margin-top: 40px;
}

.squad {
    padding: 80px 0;
    background: var(--gray);
}

.squad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.player-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.player-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.player-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.player-card:hover .player-img img { transform: scale(1.05); }

.player-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.player-info { padding: 20px; text-align: center; }

.player-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.player-position {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.player-flag { font-size: 0.8rem; color: var(--text-light); }

.player-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    background: var(--dark);
    border-top: 3px solid var(--accent);
}

.pstat { text-align: center; }

.pstat-val {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.pstat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.stadium-preview {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.stadium-bg {
    position: absolute;
    inset: 0;
}

.stadium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stadium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.stadium-content {
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.section-header.light .section-tag {
    background: var(--accent);
    color: var(--primary);
}

.section-header.light .section-title { color: var(--light); }

.stadium-info { max-width: 700px; }

.stadium-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stadium-facts { display: flex; gap: 50px; flex-wrap: wrap; }

.fact { text-align: center; }

.fact-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.fact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.about {
    padding: 80px 0;
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.value-icon { font-size: 2rem; margin-bottom: 10px; }

.value h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.value p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

.about-visual { position: relative; }

.about-image-stack { position: relative; height: 500px; }

.about-img-1, .about-img-2 {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-img-1 {
    width: 70%;
    height: 70%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    width: 60%;
    height: 60%;
    object-fit: cover;
    bottom: 0;
    right: 0;
    border: 5px solid var(--light);
    z-index: 2;
}

.cta-section { padding: 80px 0; background: var(--primary); }

.cta-card {
    background: var(--accent);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    flex: 1;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 25px;
}

.cta-form { display: flex; gap: 10px; }

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: var(--dark);
}

.cta-form button { 
    background: var(--primary);
    color: var(--accent);
    white-space: nowrap; 
}

.cta-deco {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.1;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 15px 0;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--light);
    letter-spacing: 1px;
}

.footer-social { display: flex; gap: 10px; margin-top: 15px; }

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-links h4 {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 6px 0;
    transition: all 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom p:last-child {
    margin-top: 10px;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .squad-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; }
    .about-image-stack { height: 300px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav-overlay.active { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-column: span 1; }
    .squad-grid { grid-template-columns: 1fr; }
    .cta-card { flex-direction: column; text-align: center; padding: 40px 30px; }
    .cta-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { margin-bottom: 20px; }
    .footer-social { justify-content: center; }
    .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .match-card { padding: 25px; }
    .match-teams { flex-direction: column; gap: 30px; }
    .stadium-facts { flex-direction: column; gap: 30px; }
}