* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #fef3e2 0%, #fde8c8 100%); color: #2d1b0e; line-height: 1.6; min-height: 100vh; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
header { background: linear-gradient(135deg, #f97316, #4a2c0a); padding: 16px 0; box-shadow: 0 8px 32px rgba(249,115,22,0.25); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.logo { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: 2px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.nav-links { display: flex; flex-wrap: wrap; gap: 12px; }
.nav-links a { color: #fff; text-decoration: none; padding: 8px 20px; border-radius: 40px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); transition: all 0.3s; font-weight: 500; font-size: 15px; border: 1px solid rgba(255,255,255,0.2); }
.nav-links a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(249,115,22,0.4); }
h1 { font-size: 42px; font-weight: 900; color: #4a2c0a; text-align: center; padding: 40px 0 16px; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; }
h2 { font-size: 32px; font-weight: 700; color: #4a2c0a; margin-bottom: 24px; text-align: center; position: relative; }
h2::after { content: ''; display: block; width: 80px; height: 4px; background: linear-gradient(90deg, #f97316, #4a2c0a); margin: 12px auto 0; border-radius: 4px; }
.card { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 24px; padding: 32px; margin: 24px 0; box-shadow: 0 8px 32px rgba(74,44,10,0.08); border: 1px solid rgba(249,115,22,0.15); transition: transform 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(249,115,22,0.18); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
img { width: 100%; border-radius: 16px; object-fit: cover; max-height: 240px; margin: 12px 0; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.btn { display: inline-block; padding: 14px 36px; background: linear-gradient(135deg, #f97316, #e05d0a); color: #fff; border-radius: 40px; text-decoration: none; font-weight: 700; font-size: 18px; transition: all 0.3s; box-shadow: 0 6px 20px rgba(249,115,22,0.35); border: none; cursor: pointer; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(249,115,22,0.5); }
footer { background: #4a2c0a; color: #fef3e2; padding: 40px 0 24px; margin-top: 48px; }
footer a { color: #fbd38d; text-decoration: none; }
footer a:hover { color: #f97316; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; text-align: center; font-size: 14px; }
.friend-links { margin: 16px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.friend-links a { color: #fbd38d; }
.news-item { border-bottom: 1px solid rgba(74,44,10,0.1); padding: 16px 0; }
.news-item:last-child { border-bottom: none; }
.news-date { color: #f97316; font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.news-title { font-size: 20px; font-weight: 700; color: #4a2c0a; margin-bottom: 8px; }
.news-summary { color: #5a3e22; font-size: 15px; }
.faq-q { font-weight: 700; font-size: 18px; color: #4a2c0a; margin-bottom: 8px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.faq-q::before { content: '⚽'; }
.faq-a { color: #5a3e22; padding-left: 28px; margin-bottom: 24px; font-size: 15px; line-height: 1.8; }
.stats-number { font-size: 48px; font-weight: 900; color: #f97316; }
.stats-label { color: #4a2c0a; font-weight: 500; }
.hero-section { text-align: center; padding: 60px 0 20px; }
.hero-section p { font-size: 20px; color: #5a3e22; max-width: 800px; margin: 16px auto 32px; }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 28px; } .header-inner { flex-direction: column; align-items: stretch; } .nav-links { justify-content: center; } }