* {
    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: #333;
    background: #f5f5f5;
}

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

.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2c3e50 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(199, 199, 199, 0.1) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.tagline {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c8c8c8;
    margin-top: 20px;
}

section {
    background: white;
    margin: 40px 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
    border-bottom: 4px solid #000;
    padding-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #000 0%, #2c3e50 100%);
    color: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.awards {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: bold;
    margin-top: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
}

.stats-table thead {
    background: #000;
    color: white;
}

.stats-table th {
    padding: 15px 10px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.stats-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0e0e0;
}

.stats-table tbody tr {
    transition: background-color 0.2s ease;
}

.stats-table tbody tr:hover {
    background-color: #f5f5f5;
}

.stats-table tbody tr:last-child td {
    border-bottom: none;
}

.stats-table .win {
    color: #22c55e;
    font-weight: bold;
}

.stats-table .loss {
    color: #ef4444;
    font-weight: bold;
}

.stats-table th:first-child,
.stats-table td:first-child {
    padding-left: 20px;
}

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

.highlight-card {
    padding: 25px;
    background: #f9f9f9;
    border-left: 5px solid #000;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateX(10px);
    background: #f0f0f0;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #555;
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #000;
}

.timeline-item {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 8px;
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item h3 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

blockquote {
    margin: 30px 0;
    padding: 30px;
    background: #f9f9f9;
    border-left: 5px solid #000;
    font-style: italic;
}

.european-legacy {
    background: linear-gradient(135deg, #002395 0%, #ED2939 100%);
    color: white;
}

.european-legacy h2 {
    color: white;
    border-bottom: 4px solid white;
}

.europe-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.europe-content .highlight-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.europe-content .highlight-card h3 {
    color: #002395;
}

.europe-stats {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.europe-stats h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.europe-stats ul {
    list-style: none;
    padding: 0;
}

.europe-stats li {
    padding: 15px 20px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.15);
    border-left: 5px solid white;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.europe-stats li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.25);
}

blockquote p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

cite {
    display: block;
    text-align: right;
    font-size: 1.1rem;
    color: #666;
    font-style: normal;
}

.fun-facts ul {
    list-style: none;
    padding: 0;
}

.fun-facts li {
    padding: 15px 20px;
    margin: 15px 0;
    background: #f9f9f9;
    border-left: 5px solid #000;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.fun-facts li:hover {
    transform: translateX(10px);
    background: #f0f0f0;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

footer p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-image {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 25px;
        margin: 20px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 40px;
    }

    blockquote p {
        font-size: 1.1rem;
    }

    .stats-table {
        font-size: 0.8rem;
    }

    .stats-table th,
    .stats-table td {
        padding: 8px 5px;
    }

    .stats-table th:first-child,
    .stats-table td:first-child {
        padding-left: 10px;
    }
}
