/* ============================================
   AC米兰中文官网 - 样式表
   红黑军团主题 | 响应式设计 | SEO友好
   ============================================ */

/* ---------- CSS变量 ---------- */
:root {
    --red: #E30613;
    --red-dark: #B8050F;
    --black: #1A1A1A;
    --black-light: #2D2D2D;
    --gold: #D4A843;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --font: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: var(--transition);
}

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

ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-full { width: 100%; }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 900;
    display: block;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.7rem;
    opacity: 0.6;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-fill-color: initial;
    color: var(--gray-400);
}

.nav {
    display: flex;
    gap: 0.25rem;
}

.nav a {
    color: var(--gray-300);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover, .nav a.active {
    color: var(--white);
    background: rgba(227, 6, 19, 0.15);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0000 0%, #3d0000 25%, var(--red-dark) 50%, #1a0000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(0,0,0,0.15) 80px,
            rgba(0,0,0,0.15) 160px
        );
    animation: heroStripes 30s linear infinite;
}

@keyframes heroStripes {
    from { transform: translateX(0); }
    to { transform: translateX(160px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.3rem;
    display: block;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    opacity: 0.6;
    text-align: center;
    font-size: 0.8rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---------- Ticker Bar ---------- */
.ticker-bar {
    display: flex;
    align-items: center;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    border-bottom: 2px solid var(--red);
}

.ticker-label {
    padding: 0.75rem 1.5rem;
    background: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    overflow: hidden;
    flex: 1;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    padding: 0.75rem 0;
}

.ticker-track span {
    font-size: 0.9rem;
    flex-shrink: 0;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- About Section ---------- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-card-wide {
    grid-column: span 2;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.about-card p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--red);
}

.timeline li {
    padding: 0.6rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -1.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
}

/* Legends Grid */
.legends-grid {
    display: grid;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.legend-name {
    font-weight: 700;
    color: var(--black);
    font-size: 0.95rem;
}

.legend-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Tables */
.honor-table, .info-table {
    width: 100%;
    border-collapse: collapse;
}

.honor-table td, .info-table td, .info-table th {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.info-table th {
    text-align: left;
    color: var(--gray-500);
    font-weight: 500;
    white-space: nowrap;
    width: 35%;
}

.honor-count {
    font-weight: 700;
    color: var(--red);
    text-align: right;
}

/* ---------- Season Highlight ---------- */
.season-highlight {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.season-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.season-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.season-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.season-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.season-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ---------- News Section ---------- */
.news {
    background: var(--white);
}

.news-update-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.update-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.news-card-img {
    height: 180px;
    background: linear-gradient(135deg, #2D2D2D, var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.news-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.news-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    line-height: 1.5;
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    flex: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.news-read-more:hover {
    gap: 0.6rem;
}

.news-loading {
    text-align: center;
    padding: 3rem;
    color: var(--gray-400);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Squad Section ---------- */
.squad {
    background: var(--gray-50);
}

.formation-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.squad-positions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.position-group h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.player-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.player-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.player-card.new-signing {
    border-color: var(--gold);
    background: linear-gradient(135deg, #FFFDF5, #FFF8E1);
}

.player-card.star-player {
    border-color: var(--red);
    background: linear-gradient(135deg, #FFF5F5, #FFE5E5);
}

.new-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.player-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.player-name {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    color: var(--black);
}

.player-meta {
    font-size: 0.78rem;
    color: var(--gray-500);
    display: block;
    margin-top: 0.15rem;
}

/* ---------- FAQ Section ---------- */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--red);
    box-shadow: 0 2px 12px rgba(227, 6, 19, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    font-family: var(--font);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--red);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray-500);
}

.faq-item.active .faq-toggle {
    background: var(--red);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner, .faq-answer > * {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-answer li {
    list-style: disc;
    color: var(--gray-600);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--black);
    color: var(--white);
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact > .container > .contact-grid > .contact-info > p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.15);
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.contact-item p {
    color: var(--white);
    font-weight: 500;
}

.official-links h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.official-links a {
    display: block;
    color: var(--gray-300);
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.official-links a:hover {
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--black-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--red);
    background: rgba(227, 6, 19, 0.05);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--gray-500);
}

/* ---------- Footer ---------- */
.footer {
    background: #111;
    color: var(--gray-400);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-card-wide {
        grid-column: span 1;
    }
    .season-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 2px solid var(--red);
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav a {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .player-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ticker-label {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
}

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

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

/* Print */
@media print {
    .header, .hero, .ticker-bar, .back-to-top, .hero-scroll { display: none; }
    .section { padding: 1rem 0; }
}