:root {
  --accent: #4CAF50;
  --accent-light: #66BB6A;
  --accent-dark: #388E3C;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --border-color: #222;
  --text-primary: #ffffff;
  --text-secondary: #aaa;
}

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  margin: 0;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

/* Navbar */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  transition: all 0.3s;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
}

/* Buttons */
.btn-accent {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: all 0.3s;
}
.btn-accent:hover {
  background: var(--accent-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}
.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #000;
}
.bg-accent { background-color: var(--accent) !important; }
.text-accent { color: var(--accent) !important; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d2e0d 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%234CAF50" stroke-width="0.3" opacity="0.1"/></svg>') repeat;
  background-size: 200px;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-logo {
  max-width: 180px;
  filter: drop-shadow(0 10px 30px rgba(76, 175, 80, 0.3));
  animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Next Match Bar */
.next-match-bar {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}
.vs-badge {
  background: rgba(0,0,0,0.3);
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.match-info-pill {
  background: rgba(0,0,0,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

/* Section Styling */
.section-padding { padding: 5rem 0; }
.bg-dark-custom { background: var(--bg-dark); }
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.title-line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Page Header */
.page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, #0a0a0a, #111, #0d2e0d);
  border-bottom: 1px solid var(--border-color);
}
.page-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.breadcrumb { margin-bottom: 0; }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: var(--text-secondary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-secondary); }

/* News Cards */
.news-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  height: 100%;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.15);
}
.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #222);
  font-size: 3rem;
  color: var(--accent);
}
.news-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.news-card-body { padding: 1.5rem; }
.news-date {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.news-card-title a {
  color: var(--text-primary);
  font-weight: 700;
  transition: color 0.3s;
}
.news-card-title a:hover { color: var(--accent); }
.news-card-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Player Cards */
.player-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  text-align: center;
}
.player-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.15);
}
.player-card-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.player-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  position: relative;
}
.player-placeholder-img i {
  font-size: 5rem;
  color: #333;
}
.player-number-overlay {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(76, 175, 80, 0.2);
  font-family: 'Montserrat', sans-serif;
}
.player-card-body { padding: 1.5rem; }
.player-number {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
}
.player-name {
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}
.player-position {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.player-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}
.player-stats .stat { text-align: center; }
.stat-value {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Team Cards */
.team-gender-section { margin-bottom: 2rem; }
.gender-header { position: relative; }
.gender-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.title-line-left {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.5rem;
}
.team-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.15);
}
.team-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #222);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
}
.team-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #000;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.team-gender-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.team-gender-badge.erkek { background: #2196F3; color: #fff; }
.team-gender-badge.kiz { background: #E91E63; color: #fff; }
.team-card-body { padding: 1.5rem; }
.team-card-name {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.team-card-category {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.team-coach {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}
.team-coach strong { color: var(--text-primary); }

/* Match Cards */
.match-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s;
}
.match-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1);
}
.match-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-color);
}
.match-league { color: var(--text-secondary); font-size: 0.8rem; }
.match-date { color: var(--text-secondary); font-size: 0.8rem; }
.match-card-body { padding: 1.5rem; }
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  flex: 1;
}
.match-team-logo { width: 40px; height: 40px; object-fit: contain; }
.opponent-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #666;
}
.match-score { text-align: center; flex-shrink: 0; padding: 0 1rem; }
.match-team-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.match-team-label.erkek {
  background: rgba(33, 150, 243, 0.15);
  color: #64B5F6;
}
.match-team-label.kiz {
  background: rgba(233, 30, 99, 0.15);
  color: #F48FB1;
}
.match-team-lg .match-team-label,
.match-team .match-team-label {
  margin-top: 0.35rem;
}
.match-venue-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.match-venue-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.next-match-bar .match-venue-link {
  color: rgba(255, 255, 255, 0.95);
}
.next-match-bar .match-venue-link:hover {
  color: #fff;
}
.match-table .match-venue-link,
.match-card-footer .match-venue-link {
  color: var(--text-secondary);
}
.match-card-footer .match-venue-link:hover,
.match-table .match-venue-link:hover {
  color: var(--accent);
}
.score {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}
.score.win { color: var(--accent); }
.score.loss { color: #e74c3c; }
.score-separator {
  margin: 0 0.5rem;
  color: var(--text-secondary);
  font-size: 1.2rem;
}
.match-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border-color);
}
.upcoming-match { border-color: rgba(76, 175, 80, 0.3); }
.match-teams-large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.match-team-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  text-align: center;
}
.match-team-logo-lg { width: 60px; height: 60px; object-fit: contain; }
.opponent-logo-placeholder-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: #666;
}
.match-vs { text-align: center; flex-shrink: 0; }
.vs-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  margin: 0 auto 0.75rem;
}
.match-datetime {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.match-table th { font-weight: 600; font-size: 0.85rem; border-color: var(--border-color); }
.match-table td { border-color: var(--border-color); vertical-align: middle; }

/* About Page */
.about-logo { max-width: 200px; filter: drop-shadow(0 5px 20px rgba(76, 175, 80, 0.2)); }
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}
.about-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.about-card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.about-card h4 { font-weight: 700; margin-bottom: 0.75rem; }
.about-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* Article Detail */
.article-detail { line-height: 1.8; }
.article-content { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; }
.article-image img { border-radius: 12px; width: 100%; }

/* FAQ Page */
.faq-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  transition: all 0.3s;
}
.faq-accordion .accordion-button:hover {
  background: var(--bg-card-hover);
  color: var(--accent);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card-hover);
  color: var(--accent);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-accordion .accordion-button::after {
  filter: invert(1) grayscale(1);
  transition: transform 0.3s;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
}
.faq-accordion .accordion-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}
.faq-cta {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.03));
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
.faq-cta h4 { font-weight: 800; margin-bottom: 0.75rem; }
.faq-cta p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* Contact Page */
.bg-dark-custom .text-muted {
  color: var(--text-secondary) !important;
}
.bg-dark-custom h3,
.bg-dark-custom h4 {
  color: var(--text-primary);
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-item h6 { margin-bottom: 0.25rem; font-weight: 600; }
.contact-info-item p { color: var(--text-secondary); margin-bottom: 0; font-size: 0.9rem; }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  background: #1a1a1a;
  border-color: #333;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
}
.contact-form-card .form-control:focus {
  background: #1a1a1a;
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.15);
}
.contact-form-card .form-label { color: var(--text-secondary); font-size: 0.9rem; }

/* Social Links */
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}
.social-links a:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  color: #000;
}
.cta-section h2 { font-weight: 900; color: #000; }
.cta-section p { color: rgba(0,0,0,0.7); }
.cta-section .btn-accent {
  background: #000;
  color: var(--accent);
}
.cta-section .btn-accent:hover {
  background: #111;
  color: var(--accent-light);
}

/* Footer */
.site-footer {
  background: #0d0d0d;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}
.site-footer h5 {
  color: var(--text-primary);
}
.site-footer .text-muted,
.site-footer small,
.site-footer p {
  color: var(--text-secondary) !important;
}
.footer-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.footer-whatsapp-link {
  color: #25D366;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-whatsapp-link:hover { color: #1ebe57; }
.contact-whatsapp-link {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}
.contact-whatsapp-link:hover { color: #1ebe57; }
.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.12) !important;
  color: #25D366 !important;
}
.social-links a .bi-whatsapp:hover,
.social-links a:hover .bi-whatsapp {
  color: #25D366;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: auto;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.whatsapp-float:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
  font-size: 1.35rem;
  line-height: 1;
}
.whatsapp-float-label {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-logo { max-width: 120px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section-padding { padding: 3rem 0; }
  .page-header { padding: 6rem 0 2rem; }
  .match-teams-large { flex-direction: column; gap: 1.5rem; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-float i { font-size: 1.25rem; }
}
