/* COMPONENTS & INTERACTIVE UI STYLES */

/* NAVBAR HEADER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 19, 43, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo Container for Perfect Contrast */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.brand-logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #FFFFFF;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--primary-cyan);
  font-weight: 700;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 8 sekme: dar ekranlarda menuyu sikistir */
@media (max-width: 1280px) {
  .nav-menu { gap: 22px; }
  .nav-menu .nav-link { font-size: 0.88rem; }
}

@media (max-width: 1080px) {
  .nav-menu { gap: 16px; }
  .nav-menu .nav-link { font-size: 0.82rem; }
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.02em;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions & Clean Language Selector (Single Text) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-selector-dropdown {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 229, 255, 0.15);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 150px;
  background: rgba(14, 24, 48, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 1100;
}

.lang-dropdown-menu.show {
  display: flex;
  animation: fadeInDown 0.25s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.lang-option:hover, .lang-option.active {
  background: rgba(0, 229, 255, 0.2);
  color: var(--primary-cyan);
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(11, 19, 43, 0.98);
  backdrop-filter: blur(25px);
  border-left: 1px solid var(--glass-border);
  z-index: 2000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.drawer-link:hover {
  color: var(--primary-cyan);
}

/* HERO SECTION STYLES */
.hero-section {
  padding: 30px 0 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.hero-logo-box {
  margin-bottom: 24px;
}

.hero-brand-logo {
  height: 130px;
  width: auto;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.45));
  animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--glass-border);
  color: var(--primary-cyan);
  padding: 10px 26px;
  border-radius: 40px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card {
  padding: 26px 16px;
  text-align: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary-cyan);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.metric-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* LUXURY HERO SLIDER COMPONENT (NEWS & TOURNAMENTS) */
.news-slider-block {
  margin-top: 60px;
}

.slider-wrapper {
  position: relative;
  padding: 40px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(18, 30, 58, 0.75);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.slider-container {
  position: relative;
  min-height: 340px;
}

.slider-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-slide.active {
  display: block;
  opacity: 1;
}

.slide-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: #050B18;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
}

.slide-img-box {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.slide-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slider-slide:hover .slide-img-box img {
  transform: scale(1.05);
}

.slide-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.slide-date {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  color: var(--primary-cyan);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.slide-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.slide-actions {
  display: flex;
  gap: 16px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 19, 43, 0.85);
  border: 1px solid var(--glass-border);
  color: var(--primary-cyan);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 20;
}

.slider-arrow:hover {
  background: var(--primary-gradient);
  color: #050B18;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot:hover, .dot.active {
  background: var(--primary-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
  width: 28px;
  border-radius: 10px;
}

/* FEATURE GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 34px 26px;
  text-align: left;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--primary-cyan);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ABOUT PAGE COMPONENTS */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.about-text-content {
  padding: 40px;
}

.president-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.15);
  color: var(--primary-cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.18rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.65;
}

.about-text-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.about-image-card {
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.about-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.image-caption {
  font-size: 0.88rem;
  color: var(--primary-cyan);
  text-align: center;
  font-weight: 600;
  font-family: var(--font-accent);
}

/* Vision & Mission Cards */
.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  padding: 40px;
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: #050B18;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.vm-card h3 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.vm-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.vm-list {
  list-style: none;
}

.vm-list li {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vm-list i {
  color: var(--primary-cyan);
  margin-top: 4px;
}

/* SQUAD PAGE COMPONENTS */
.squad-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.squad-card {
  padding: 40px;
}

.squad-icon {
  font-size: 2.2rem;
  color: var(--primary-cyan);
  margin-bottom: 20px;
}

.squad-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.squad-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.staff-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.staff-pill i {
  color: var(--primary-cyan);
}

.academy-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.95), transparent);
  color: var(--primary-cyan);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* SHOP (JERSEYS) COMPONENTS */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-gradient);
  color: #050B18;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 10;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.product-img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* NEWS COMPONENTS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.news-card {
  display: flex;
  overflow: hidden;
}

.news-img-box {
  width: 40%;
  position: relative;
  min-height: 220px;
}

.news-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 19, 43, 0.88);
  border: 1px solid var(--glass-border);
  color: var(--primary-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  font-family: var(--font-accent);
}

.news-body {
  width: 60%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-body h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 800;
}

.news-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* CONTACT & FORM COMPONENTS */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
}

.contact-info-card, .contact-form-card {
  padding: 40px;
}

.contact-info-card h3, .contact-form-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--primary-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-accent);
}

.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Form inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-cyan);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}

.form-group select option {
  background: #0B132B;
  color: #FFFFFF;
}

/* MODAL WINDOWS & NEWS IMAGE FULL FIT FIX */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 10, 22, 0.88);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
  animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-content {
  width: 100%;
  max-width: 800px;
  position: relative;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary-gradient);
  color: #050B18;
}

.jersey-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}

.jersey-modal-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.modal-tag {
  color: var(--primary-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.size-selector {
  margin: 20px 0;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.size-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.size-btn:hover, .size-btn.active {
  background: var(--primary-gradient);
  color: #050B18;
  border-color: transparent;
}

.news-modal-content {
  max-width: 850px;
}

/* FIX: Full Fit Uncropped News Detail Image */
.news-detail-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.news-modal-heading {
  font-size: 1.8rem;
  margin: 10px 0 20px 0;
}

.news-modal-fulltext p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ==========================================================================
   BRAND CREST, ATMOSPHERE & INTERACTION LAYER
   ========================================================================== */

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: radial-gradient(circle at 50% 40%, #152238 0%, #0B132B 55%, #05080F 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  /* CSS fallback: the overlay clears itself even if the script never runs */
  animation: preloaderFallback 0.5s ease 2.2s forwards;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderFallback {
  to { opacity: 0; visibility: hidden; }
}

.preloader-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.45));
  animation: crestPulse 1.6s ease-in-out infinite alternate;
}

@keyframes crestPulse {
  0% { transform: scale(0.94); opacity: 0.75; }
  100% { transform: scale(1.03); opacity: 1; }
}

.preloader-bar {
  width: 180px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--brand-red));
  animation: loadSweep 1.1s ease-in-out infinite;
}

@keyframes loadSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* --- Scroll progress indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1500;
  background: linear-gradient(90deg, var(--primary-cyan), var(--brand-red));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.6);
  transition: width 0.1s linear;
}

/* --- Ambient aurora glow behind the 3D canvas --- */
.aurora-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.4;
}

.aurora-cyan {
  width: 620px;
  height: 620px;
  top: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.55) 0%, transparent 70%);
  animation: auroraDriftA 22s ease-in-out infinite alternate;
}

.aurora-red {
  width: 560px;
  height: 560px;
  bottom: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.5) 0%, transparent 70%);
  animation: auroraDriftB 26s ease-in-out infinite alternate;
}

@keyframes auroraDriftA {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, 90px) scale(1.15); }
}

@keyframes auroraDriftB {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-110px, -80px) scale(1); }
}

/* --- Official crest presentation (PNG shield, portrait ratio) --- */
.brand-logo-img {
  height: 46px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

.brand-logo {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.7));
}

.hero-logo-box {
  margin-bottom: 30px;
}

.hero-brand-logo {
  /* Crest source is 133x150 — kept at native height so it stays sharp */
  height: 150px;
  width: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  filter: drop-shadow(0 0 34px rgba(0, 229, 255, 0.35)) drop-shadow(0 12px 26px rgba(0, 0, 0, 0.6));
}

/* --- Hero badge picks up the crest red --- */
.hero-badge {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(200, 16, 46, 0.16));
  border-color: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.hero-badge i {
  color: var(--primary-cyan);
}

/* --- Metric cards --- */
.metric-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.28);
}

.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.metric-card:hover::after {
  opacity: 1;
}

/* --- Feature cards: numbered + accent bar --- */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--brand-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.feature-card:hover .feature-icon {
  background: var(--primary-gradient);
  color: #050B18;
  border-color: transparent;
  transform: translateY(-3px);
}

.feature-icon {
  transition: var(--transition-smooth);
}

/* --- Shop: show the full jersey instead of cropping it --- */
.product-img-wrapper {
  background: radial-gradient(circle at 50% 40%, rgba(0, 229, 255, 0.09), rgba(5, 10, 22, 0.6));
  padding: 14px;
}

.product-img-wrapper img {
  object-fit: contain;
}

.product-badge {
  background: var(--brand-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--brand-red-glow);
}

/* --- Image slots keep their shape while the photo is still loading --- */
.news-img-box,
.slide-img-box,
.gallery-item,
.about-image-card .about-img {
  background-color: rgba(20, 32, 60, 0.55);
  background-image: radial-gradient(circle at 50% 45%, rgba(0, 229, 255, 0.1), transparent 65%);
}

/* --- News: even card heights --- */
.news-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-img-box img {
  transition: transform 0.6s ease;
}

.news-card:hover .news-img-box img {
  transform: scale(1.06);
}

.news-img-box {
  overflow: hidden;
}

/* --- Navigation active state gets the crest accent --- */
.nav-link.active::after {
  background: linear-gradient(90deg, var(--primary-cyan), var(--brand-red));
}

/* --- Mobile drawer: backdrop, language row & CTA --- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: rgba(4, 7, 16, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.drawer-langs {
  margin-top: auto;
  padding-top: 26px;
}

.drawer-langs-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.drawer-lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-lang {
  flex: 1 1 auto;
  min-width: 48px;
  padding: 8px 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.drawer-lang:hover,
.drawer-lang.active {
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.drawer-cta {
  margin-top: 20px;
}

/* --- Floating action buttons --- */
.fab {
  position: fixed;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  z-index: 1400;
  transition: var(--transition-smooth);
}

.fab-whatsapp {
  bottom: 24px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4);
  animation: fabPulse 2.8s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.09); }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: rgba(11, 19, 43, 0.96);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.fab-top {
  bottom: 90px;
  background: rgba(11, 19, 43, 0.9);
  border: 1px solid var(--glass-border);
  color: var(--primary-cyan);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

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

.fab-top:hover {
  background: var(--primary-gradient);
  color: #050B18;
  border-color: transparent;
}

/* --- Slider polish --- */
.slider-wrapper::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.28), transparent 70%);
  pointer-events: none;
}

.slide-badge {
  background: var(--brand-gradient);
  color: #FFFFFF;
}

/* --- Footer crest watermark --- */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: url('../images/logo.png') center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}


/* RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .hero-metrics, .features-grid, .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid, .contact-grid, .about-hero-grid, .vm-container, .squad-intro-grid, .academy-gallery, .slide-content {
    grid-template-columns: 1fr;
  }
  .news-card {
    flex-direction: column;
  }
  .news-img-box, .news-body {
    width: 100%;
  }
  .slider-arrow {
    display: none;
  }
}

@media (max-width: 850px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .jersey-modal-body {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   FULL-BLEED HERO SLIDER (top of the home page, managed from the panel)
   ========================================================================== */

.hero-slider {
  /* Sits inside the page container, directly under the header */
  position: relative;
  margin: 0 0 58px 0;
  height: 545px;
  border-radius: 24px;
  overflow: hidden;
  background: #070C1B;
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.hero-slider.is-empty {
  display: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
  display: flex;
  flex-direction: column;
}

/* Picture area — the caption never covers it.
   Fixed height keeps the arrows and dots aligned to the image edge. */
.hero-slide-media {
  position: relative;
  flex: 0 0 380px;
  height: 380px;
  overflow: hidden;
}

/* Slides with no text let the artwork use the whole card */
.hero-slide.no-caption .hero-slide-media {
  flex: 1 1 auto;
  height: 100%;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Blurred fill behind the artwork — lets square posters sit in a wide frame */
.hero-slide-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  filter: blur(30px) brightness(0.45) saturate(1.2);
}

/* The artwork itself is never cropped */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Caption bar under the picture */
.hero-slide-inner {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  padding: 20px 28px;
  background: linear-gradient(180deg, rgba(13, 22, 46, 0.96), rgba(9, 15, 34, 0.98));
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  text-align: left;
}

.hero-slide-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.14);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--primary-cyan);
  padding: 5px 15px;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.hero-slide-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-slide-btn {
  flex-shrink: 0;
  padding: 13px 28px;
  font-size: 0.85rem;
}

.hero-arrow {
  position: absolute;
  /* Centred on the picture, not on the whole card */
  top: 190px;
  transform: translateY(-50%);
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(7, 12, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.hero-arrow:hover {
  background: var(--primary-gradient);
  color: #050B18;
  border-color: transparent;
}

.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

.hero-dots {
  position: absolute;
  right: 22px;
  /* Bottom edge of the picture area */
  top: 350px;
  z-index: 6;
  display: flex;
  gap: 7px;
}

.hero-dot {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-dot.active {
  background: var(--primary-gradient);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
  width: 34px;
}

/* The metrics bar sits directly under the slider now */
.hero-section {
  padding: 0 0 60px 0;
}

/* ==========================================================================
   ANNOUNCEMENT BOARD (upcoming trials, tournaments and camps)
   ========================================================================== */

.board-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.board-card {
  display: grid;
  grid-template-columns: 96px 1fr 200px;
  gap: 26px;
  padding: 22px 26px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Colour spine tells the three kinds apart at a glance */
.board-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
}

.board-card.kind-tournament::before { background: var(--brand-gradient); }
.board-card.kind-camp::before { background: linear-gradient(180deg, #F5A623, #E8890C); }
.board-card.kind-notice::before { background: linear-gradient(180deg, #A0B4D0, #5C7292); }

.board-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 14px 8px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.board-day {
  font-family: var(--font-heading);
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
}

.board-month {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-cyan);
}

.board-year {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.board-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}

.board-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.board-kind {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--glass-border);
  color: var(--primary-cyan);
}

.board-countdown {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.board-countdown.is-soon {
  background: rgba(0, 229, 255, 0.14);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.board-countdown.is-live {
  background: var(--brand-gradient);
  color: #FFFFFF;
  animation: pulseCyanGlow 2.4s infinite alternate;
}

.board-countdown.is-past {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.board-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.3;
}

.board-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.board-info i {
  color: var(--primary-cyan);
  margin-right: 2px;
}

.board-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board-btn {
  margin-top: 4px;
}

.board-thumb {
  width: 200px;
  height: 118px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.board-thumb img {
  width: 100%;
  height: 100%;
  /* Tournament posters are usually square — show them whole, not cropped */
  object-fit: contain;
  background: rgba(0, 0, 0, 0.35);
  transition: transform 0.6s ease;
}

.board-card:hover .board-thumb img {
  transform: scale(1.07);
}

.board-empty {
  text-align: center;
  padding: 54px 24px;
  color: var(--text-muted);
}

.board-empty i {
  font-size: 2.4rem;
  color: var(--primary-cyan);
  opacity: 0.55;
  margin-bottom: 14px;
  display: block;
}

.board-empty.is-hidden {
  display: none;
}

/* ==========================================================================
   HOW TO JOIN — numbered step cards
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  padding: 32px 24px 26px 24px;
  overflow: hidden;
}

/* Big ghost number in the corner */
.step-card::after {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  right: 10px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* Connecting line between the steps on wide screens */
.step-card::before {
  content: '';
  position: absolute;
  top: 52px;
  right: -22px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-cyan), transparent);
}

.steps-grid .step-card:last-child::before {
  display: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #050B18;
  background: var(--primary-gradient);
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 229, 255, 0.28);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   WHO IS IT FOR — audience cards
   ========================================================================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}

.audience-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.audience-card:hover .audience-icon {
  background: var(--brand-gradient);
  border-color: transparent;
  color: #FFFFFF;
}

.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.audience-card > p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.audience-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

.audience-list i {
  color: var(--primary-cyan);
  font-size: 0.78rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ — native disclosure list
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus / minus indicator */
.faq-item summary::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--primary-cyan);
  transition: var(--transition-smooth);
}

.faq-item[open] summary::after {
  content: '\f068';
}

.faq-item summary:hover {
  color: var(--primary-cyan);
}

.faq-item p {
  padding: 0 24px 22px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item[open] {
  border-color: var(--glass-border-hover);
}

/* ==========================================================================
   CLOSING CALL TO ACTION
   ========================================================================== */

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px 46px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 229, 255, 0.1), rgba(200, 16, 46, 0.12)),
    var(--glass-bg);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: url('../images/logo.png') center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.cta-text h2 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   SPONSORS STRIP (just above the footer)
   ========================================================================== */

.sponsors-section {
  border-top: 1px solid var(--glass-border);
  background: rgba(9, 15, 34, 0.6);
  backdrop-filter: blur(10px);
  padding: 38px 24px;
}

.sponsors-section.is-empty {
  display: none;
}

.sponsors-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sponsors-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sponsors-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 46px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: var(--transition-smooth);
}

.sponsor-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-cyan);
  transform: translateY(-3px);
}

.sponsor-item img {
  max-height: 46px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Logos read as one set until hovered */
  filter: grayscale(100%) brightness(1.7);
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.sponsor-item:hover img {
  filter: none;
  opacity: 1;
}

.sponsor-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ==========================================================================
   GALLERY (photos, self-hosted clips and YouTube/Vimeo embeds)
   ========================================================================== */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.gallery-filter {
  padding: 9px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-filter:hover {
  color: #FFFFFF;
  border-color: var(--primary-cyan);
}

.gallery-filter.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #050B18;
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-grid .gallery-item {
  position: relative;
  height: 260px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}

.gallery-grid .gallery-item img,
.gallery-grid .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-grid .gallery-item:hover img,
.gallery-grid .gallery-item:hover video {
  transform: scale(1.07);
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  background: var(--brand-gradient);
  box-shadow: 0 8px 26px rgba(200, 16, 46, 0.5);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-play {
  transform: translate(-50%, -50%) scale(1.12);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(to top, rgba(6, 11, 24, 0.96) 15%, rgba(6, 11, 24, 0.6) 55%, transparent);
  pointer-events: none;
}

.gallery-cat {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-cyan);
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.gallery-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gallery-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.gallery-empty i {
  font-size: 2.6rem;
  color: var(--primary-cyan);
  opacity: 0.55;
  margin-bottom: 16px;
  display: block;
}

.gallery-empty.is-hidden {
  display: none;
}

/* --- Lightbox --- */
.gallery-lightbox {
  padding: 0;
}

.lightbox-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lightbox-stage {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img,
.lightbox-stage video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.lightbox-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.lightbox-caption span {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--primary-cyan);
  letter-spacing: 0.05em;
}

.lightbox-counter {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 19, 43, 0.88);
  border: 1px solid var(--glass-border);
  color: var(--primary-cyan);
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.lightbox-nav:hover {
  background: var(--primary-gradient);
  color: #050B18;
  border-color: transparent;
}

.lightbox-nav.prev { left: 22px; }
.lightbox-nav.next { right: 22px; }

/* --- Responsive tweaks for the new layer --- */
@media (max-width: 1100px) {
  .hero-brand-logo {
    height: 132px;
  }
  .hero-slide-title {
    font-size: 1.6rem;
  }
  .hero-slider {
    height: 500px;
  }
  .hero-slide-media { flex-basis: 340px; height: 340px; }
  .hero-arrow { top: 170px; }
  .hero-dots { top: 310px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
}

@media (max-width: 850px) {
  .hero-brand-logo {
    height: 114px;
  }
  /* The apply CTA lives inside the drawer on small screens, so the bar fits */
  #btn-apply-hero {
    display: none;
  }
  .nav-actions {
    gap: 10px;
  }
  .navbar-container {
    padding: 0 16px;
  }
  .fab {
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .fab-whatsapp {
    bottom: 18px;
  }
  .fab-top {
    bottom: 78px;
  }
  .fab-tooltip {
    display: none;
  }
  .feature-card::after {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    gap: 9px;
    padding: 5px 10px;
  }
  .brand-logo-img {
    height: 36px;
  }
  .logo-title {
    font-size: 0.95rem;
  }
  .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.16em;
  }
  .lang-btn {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 9px 16px;
    letter-spacing: 0.04em;
  }
  .hero-brand-logo {
    height: 96px;
  }
  .hero-metrics,
  .features-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .about-text-content,
  .vm-card,
  .squad-card,
  .contact-info-card,
  .contact-form-card {
    padding: 26px 20px;
  }
  .slider-wrapper {
    padding: 22px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 28px 20px;
  }
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid .step-card:nth-child(2n)::before {
    display: none;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }
}

@media (max-width: 980px) {
  .board-card {
    grid-template-columns: 76px 1fr;
    gap: 18px;
    padding: 18px;
  }
  .board-thumb {
    display: none;
  }
  .board-day {
    font-size: 1.7rem;
  }
}

@media (max-width: 850px) {
  .hero-arrow {
    display: none;
  }
  .hero-slide-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    min-height: 0;
  }
  .hero-slider {
    height: 540px;
  }
  .hero-slide-media { flex-basis: 300px; height: 300px; }
  .hero-dots { top: 270px; }
}

@media (max-width: 560px) {
  .hero-slider {
    height: 470px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
  .hero-slide-title {
    font-size: 1.25rem;
  }
  .hero-slide-sub {
    font-size: 0.88rem;
  }
  .hero-slide-inner {
    padding: 15px 17px;
    gap: 11px;
  }
  .hero-slide-btn {
    width: 100%;
  }
  .hero-slide-media { flex-basis: 250px; height: 250px; }
  .hero-dots {
    right: 14px;
    top: 220px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card::before {
    display: none;
  }
  .cta-text h2 {
    font-size: 1.4rem;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    flex: 1 1 100%;
  }
  .faq-item summary {
    font-size: 0.95rem;
    padding: 17px 48px 17px 18px;
  }
  .faq-item p {
    padding: 0 18px 18px 18px;
  }
  .sponsors-track {
    gap: 14px 20px;
  }
  .sponsor-item {
    height: 56px;
    padding: 8px 12px;
  }
  .sponsor-item img {
    max-height: 38px;
    max-width: 120px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-grid .gallery-item {
    height: 220px;
  }
  .gallery-filter {
    padding: 7px 15px;
    font-size: 0.78rem;
  }
  .lightbox-inner {
    padding: 14px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .lightbox-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 400px) {
  .logo-text {
    display: none;
  }
}

/* ============================================================
   PDF MAGAZIN ENTEGRASYONU — kadro, yonetim, tesis, tarihce
   ============================================================ */

/* --- Kisi kartlari (teknik kadro & yonetim kurulu) --- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 210px));
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 14px 20px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.person-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), var(--cyan-glow);
}

.person-photo {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-cyan);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
  background: #fff;
}

.person-card.is-board .person-photo {
  border-color: var(--brand-red-light);
  box-shadow: 0 0 18px var(--brand-red-glow);
}

.person-name {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
}

.person-role {
  margin-top: 5px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.person-card.is-lead .person-role {
  color: var(--text-cyan);
  font-weight: 600;
}

/* --- Genis grup fotografi --- */
.team-photo-wide {
  margin-top: 40px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.team-photo-wide img {
  display: block;
  width: 100%;
  height: auto;
}

.team-photo-wide .image-caption {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Tesis / NLZ bolumu --- */
.facility-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: center;
}

.facility-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.facility-media img {
  display: block;
  width: 100%;
  height: auto;
}

.facility-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.facility-stat {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid var(--glass-border);
}

.facility-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-cyan);
  line-height: 1.1;
}

.facility-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- DFI mezunlari --- */
.alumni-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.alumni-pill {
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(200, 16, 46, 0.16);
  border: 1px solid rgba(230, 57, 70, 0.42);
}

.alumni-pill small {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* DFI ortakliginin ETFA oyunculari icin ne anlama geldigi */
.facility-bridge {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 14px;
  border-left: 3px solid var(--primary-cyan);
  background: rgba(0, 229, 255, 0.06);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* "Bu yapi DFI'ye aittir, planlama asamasindadir" uyarisi */
.facility-disclaimer {
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed var(--glass-border);
}

.facility-stat.is-highlight {
  background: rgba(231, 197, 102, 0.10);
  border-color: rgba(231, 197, 102, 0.38);
}

.facility-stat.is-highlight strong {
  color: var(--gold, #E7C566);
}

/* --- Tarihce zaman cizelgesi --- */
.timeline {
  position: relative;
  margin-top: 34px;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-cyan), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 26px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-cyan);
  box-shadow: 0 0 12px var(--primary-cyan);
}

.timeline-year {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--text-cyan);
  font-size: 0.92rem;
  letter-spacing: 1px;
}

.timeline-item h4 {
  margin: 3px 0 6px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Secme takimlari & lokasyonlar --- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-band {
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.team-band .band-age {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text-cyan);
}

.team-band h4 {
  margin: 6px 0 8px;
  font-size: 1rem;
}

.team-band p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.location-pill {
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
}

.location-pill i {
  color: var(--text-cyan);
  margin-right: 6px;
}

/* Ana sayfadaki standortlar — 4'lu 2 sira, kucuk yazi */
.loc-heading {
  margin-top: 42px;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.loc-lead {
  margin-top: 6px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.loc-item {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  line-height: 1.35;
  transition: var(--transition-smooth);
}

.loc-item:hover {
  border-color: var(--glass-border-hover);
  background: rgba(0, 229, 255, 0.06);
}

.loc-item i {
  color: var(--text-cyan);
  font-size: 0.72rem;
  margin-right: 6px;
}

.loc-item strong {
  font-weight: 700;
}

.loc-item small {
  display: block;
  margin-top: 2px;
  padding-left: 18px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .loc-grid { grid-template-columns: 1fr; }
}

/* Ana sayfadaki yas gruplari (U8 ... U14) */
.age-pills {
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.age-pills .location-pill {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-cyan);
  padding: 11px 22px;
  background: rgba(0, 229, 255, 0.07);
}

/* --- Uyelik modelleri --- */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.member-card {
  padding: 26px 22px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
}

.member-card.featured {
  border-color: var(--brand-red-light);
  background: linear-gradient(160deg, rgba(200, 16, 46, 0.16), var(--glass-bg));
}

.member-tier {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.3;
}

.member-price {
  margin: 10px 0 4px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-cyan);
}

.member-card.featured .member-price {
  color: var(--brand-red-light);
}

.member-period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.member-desc {
  margin-top: 12px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.member-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.member-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.member-list i {
  color: var(--primary-cyan);
  margin-top: 4px;
  font-size: 0.78rem;
}

.member-note {
  margin-top: 22px;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Kapsayicilik (inklusion) --- */
.inclusion-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(0, 229, 255, 0.1), var(--glass-bg));
  border: 1px solid var(--glass-border);
  margin-top: 30px;
}

.inclusion-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  color: var(--bg-dark);
  background: var(--primary-gradient);
}

.inclusion-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.inclusion-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

/* --- Mobil --- */
@media (max-width: 900px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .people-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }

  .person-card {
    padding: 20px 10px 16px;
  }

  .person-photo {
    width: 88px;
    height: 88px;
  }

  .person-name {
    font-size: 0.92rem;
  }

  .person-role {
    font-size: 0.76rem;
  }

  .facility-stats {
    grid-template-columns: 1fr;
  }

  .inclusion-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 18px;
  }
}


/* --- Tamamlanmis duyuru / turnuva kartlari --- */
.board-card.is-past {
  opacity: 0.72;
  border-color: rgba(255, 255, 255, 0.12);
}

.board-card.is-past:hover {
  opacity: 1;
}

.board-card.is-past .board-date {
  filter: grayscale(0.55);
}

.board-done {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.board-done i {
  color: #4ade80;
}


/* --- Ayni sayfa icindeki alt bolumler arasi ayirici bosluk --- */
.section-split {
  margin-top: 96px;
}

.section-split .section-header {
  margin-bottom: 44px;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 8px auto;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-split {
    margin-top: 64px;
  }
}
