/* Jan Virgili Tenas Fan Site - Styles */

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

:root {
    --primary-red: #E20613;
    --secondary-yellow: #FFD700;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --accent-blue: #004494;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Skip to content (accessibility) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 2px solid var(--primary-red);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--primary-red);
}

.language-selector {
    position: relative;
}

#languageSelect {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(226, 6, 19, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

#languageSelect:hover {
    background: rgba(226, 6, 19, 0.2);
    border-color: var(--primary-red);
}

#languageSelect option {
    background: var(--dark-bg);
    color: var(--light-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(226, 6, 19, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    padding: 2rem;
    z-index: 1;
}

.ea-fc-card {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(226, 6, 19, 0.4));
    transition: transform 0.3s ease;
    animation: floatCard 3s ease-in-out infinite;
}

.ea-fc-card:hover {
    transform: translateY(-10px) scale(1.05);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-text) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.3;
    line-height: 1;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(226, 6, 19, 0.4);
}

/* Section Styling */
section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-red);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(226, 6, 19, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(226, 6, 19, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-note {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-red);
    margin-top: 0.5rem;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.story-text h3 {
    color: var(--light-text);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.story-text .quote-inline {
    margin-top: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(226, 6, 19, 0.1) 0%, rgba(0, 68, 148, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.highlight-box + .highlight-box {
    margin-top: 2rem;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-red);
}

.highlight-box p + p {
    margin-top: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-red);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(226, 6, 19, 0.2);
}

.timeline-date {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(226, 6, 19, 0.2);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-card-content {
    padding: 1.5rem;
}

.highlight-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.highlight-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Playing Style */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.skill-item h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.skill-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, rgba(226, 6, 19, 0.1) 0%, rgba(0, 68, 148, 0.1) 100%);
    padding: 4rem 5%;
    text-align: center;
    margin: 4rem 0;
}

.quote-section blockquote {
    font-size: 2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--light-text);
}

.quote-section cite {
    display: block;
    margin-top: 2rem;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-style: normal;
}

/* Latest News Section */
.news-section {
    padding: 2rem 5%;
    background: linear-gradient(135deg, rgba(226, 6, 19, 0.15) 0%, rgba(0, 68, 148, 0.1) 100%);
    margin-bottom: 0;
}

.news-section .section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.news-section h3 {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.news-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.news-card--gold {
    border-left: 4px solid #FFD700;
}

.news-card--green {
    border-left: 4px solid #00ff00;
}

.news-card--red {
    border-left: 4px solid var(--primary-red);
}

.news-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.news-badge--gold {
    background: #FFD700;
    color: #000;
}

.news-badge--green {
    background: #00ff00;
    color: #000;
}

.news-badge--red {
    background: var(--primary-red);
    color: #fff;
}

.news-card p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

.news-card--gold p {
    font-weight: 600;
}

/* Video Highlights Section */
.video-section {
    padding: 3rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.video-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-inner h2 {
    margin-bottom: 2rem;
}

.video-box {
    background: linear-gradient(135deg, rgba(226, 6, 19, 0.1) 0%, rgba(0, 68, 148, 0.1) 100%);
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(226, 6, 19, 0.3);
}

.video-box .play-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-box h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-box .video-desc {
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(226, 6, 19, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: rgba(226, 6, 19, 0.2);
}

.video-box .recent-highlights {
    margin-top: 2rem;
    color: var(--gray-text);
    font-size: 0.85rem;
    font-style: italic;
}

/* Coach's Perspective Section */
.coach-section {
    padding: 3rem 5%;
    background: rgba(226, 6, 19, 0.05);
    max-width: 100%;
}

.coach-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.coach-inner h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.coach-box {
    max-width: 900px;
    margin: 0 auto;
}

.coach-box + .coach-box {
    margin-top: 2rem;
}

.coach-blockquote {
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.dev-areas {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.dev-areas h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.dev-areas ul {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Style section helpers */
.style-quote-main {
    text-align: center;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 0.5rem;
    font-size: 1.1rem;
}

.style-quote-height {
    text-align: center;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 0.95rem;
    font-style: italic;
}

.style-threat {
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* World Cup 2026 Section */
.wc-section {
    background: linear-gradient(135deg, #000000 0%, #1a0505 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.wc-section .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23E20613" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.wc-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wc-header {
    text-align: center;
    margin-bottom: 60px;
}

.wc-status-badge {
    display: inline-block;
    background: rgba(226, 6, 19, 0.2);
    border: 2px solid #E20613;
    border-radius: 12px;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.wc-status-label {
    font-size: 14px;
    color: #E20613;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.wc-countdown {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.wc-countdown-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.wc-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.wc-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.wc-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(226, 6, 19, 0.3);
}

.wc-panel h3 {
    font-size: 28px;
    color: #E20613;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.wc-stat {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #E20613;
}

.wc-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wc-stat-value {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
}

.wc-stat-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

.wc-competition {
    background: rgba(226, 6, 19, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(226, 6, 19, 0.3);
}

.wc-competition-title {
    font-size: 14px;
    color: #E20613;
    font-weight: 700;
    margin-bottom: 10px;
}

.wc-competition-list {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
}

.wc-outsider {
    color: #E20613;
}

.wc-verdict {
    background: linear-gradient(135deg, rgba(226, 6, 19, 0.2) 0%, rgba(226, 6, 19, 0.05) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(226, 6, 19, 0.4);
}

.wc-verdict h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
}

.wc-verdict-question {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 600;
}

.wc-verdict-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.wc-verdict-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.wc-verdict-yes {
    font-size: 24px;
    color: #00ff00;
    font-weight: 900;
}

.wc-verdict-no {
    font-size: 24px;
    color: #E20613;
    font-weight: 900;
}

.wc-verdict-what {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.wc-real-target {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 25px;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.wc-real-target strong {
    color: #E20613;
}

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

.wc-footer-tracker {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.wc-footer-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.wc-footer-status {
    font-size: 16px;
    color: #E20613;
    font-weight: 700;
    margin-top: 10px;
}

/* Media & Interviews Section */
.media-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
    padding: 80px 20px;
    position: relative;
    max-width: 100%;
}

.media-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.media-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-header .label-badge {
    display: inline-block;
    background: rgba(226, 6, 19, 0.1);
    border: 1px solid rgba(226, 6, 19, 0.3);
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 15px;
}

.media-header .label-badge span {
    font-size: 12px;
    color: #E20613;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.media-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.media-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured video */
.featured-video {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(226, 6, 19, 0.3);
}

.featured-video-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.featured-video-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E20613 0%, #a00410 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.featured-video-header h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 800;
}

.featured-video-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0 0;
}

.video-player-placeholder {
    background: #000;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.video-player-placeholder .play-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.btn-youtube {
    display: inline-block;
    background: linear-gradient(135deg, #E20613 0%, #a00410 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-youtube:hover {
    transform: scale(1.05);
}

.featured-video-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.featured-video-desc strong {
    color: #E20613;
}

/* Social media grid */
.social-section-title {
    font-size: 28px;
    color: #E20613;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.social-card {
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s;
    display: block;
}

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

.social-card--instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(193, 53, 132, 0.2) 100%);
    border: 1px solid rgba(225, 48, 108, 0.4);
}

.social-card--youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(200, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.social-card .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.social-card .name {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.social-card .handle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-card .followers {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* Press quotes */
.press-quotes-title {
    font-size: 28px;
    color: #E20613;
    margin-bottom: 30px;
    font-weight: 800;
}

.press-quotes {
    display: grid;
    gap: 20px;
}

.press-quote-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #E20613;
    border-radius: 8px;
    padding: 25px;
}

.press-quote-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.press-quote-avatar {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E20613 0%, #a00410 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.press-quote-text {
    font-size: 16px;
    color: #fff;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.7;
}

.press-quote-author {
    font-size: 14px;
    color: #E20613;
    font-weight: 700;
}

.press-quote-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-subtitle {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 2px solid var(--primary-red);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-red);
}

.footer-disclaimer {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-updated {
    margin-top: 1.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.contact-info {
    color: var(--gray-text);
    margin-top: 2rem;
}

.stats-update-note {
    color: var(--gray-text);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

.stats-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-top: -2rem;
    margin-bottom: 2rem;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .ea-fc-card {
        width: 200px;
        order: -1;
    }

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

    .hero .number {
        font-size: 4rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
        margin-left: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .wc-title {
        font-size: 28px;
    }

    .wc-countdown {
        font-size: 36px;
    }

    .media-header h2 {
        font-size: 28px;
    }
}
