:root {
  --color-primary: #9B1B30;
  --color-primary-dark: #7A1625;
  --color-primary-light: #C72C41;
  --color-secondary: #1A1F2E;
  --color-secondary-dark: #0F131C;
  --color-accent: #D4AF37;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F7;
  --color-gray: #8E8E93;
  --color-dark-gray: #48484A;
  --color-text: #1D1D1F;
  --color-text-light: #6E6E73;
  --spacing-unit: 8px;
  --transition-speed: 0.3s;
  --border-radius: 4px;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 3);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition-speed);
}

.header.scrolled {
  box-shadow: var(--box-shadow);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--spacing-unit) * 2) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1.5);
  text-decoration: none;
  color: var(--color-text);
}

.logo-icon svg {
  color: var(--color-primary);
  transition: transform var(--transition-speed);
}

.logo:hover .logo-icon svg {
  transform: scale(1.05);
}

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

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-dark-gray);
  letter-spacing: 0.5px;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-secondary);
  transition: all var(--transition-speed);
}

.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 4);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.5);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
  position: relative;
}

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

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

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

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link-cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: calc(var(--spacing-unit) * 1.25) calc(var(--spacing-unit) * 2.5);
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 10);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, var(--color-white) 35px, var(--color-white) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--color-white) 35px, var(--color-white) 70px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 2);
  border-radius: 50px;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: calc(var(--spacing-unit) * 2);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: calc(var(--spacing-unit) * 3);
  opacity: 0.95;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: calc(var(--spacing-unit) * 5);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  padding: calc(var(--spacing-unit) * 1.75) calc(var(--spacing-unit) * 4);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all var(--transition-speed);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(155, 27, 48, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--color-light-gray);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.btn-full {
  width: 100%;
}

.quick-nav {
  padding: calc(var(--spacing-unit) * 8) 0;
  background-color: var(--color-light-gray);
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.quick-nav-card {
  background-color: var(--color-white);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--border-radius) * 2);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed);
  animation: fadeIn 0.6s ease-out;
}

.quick-nav-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
}

.quick-nav-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light-gray);
  border-radius: calc(var(--border-radius) * 2);
  color: var(--color-primary);
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  transition: all var(--transition-speed);
}

.quick-nav-card:hover .quick-nav-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.quick-nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  color: var(--color-text);
}

.quick-nav-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.section-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 0 auto;
}

.about-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-white);
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: calc(var(--spacing-unit) * 3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  margin-top: calc(var(--spacing-unit) * 6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: calc(var(--spacing-unit) * 3);
  background-color: var(--color-light-gray);
  border-radius: calc(var(--border-radius) * 2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.vision-mission {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.vm-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: calc(var(--spacing-unit) * 5);
  border-radius: calc(var(--border-radius) * 2);
}

.vm-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 2.5);
  color: var(--color-white);
}

.vm-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.vm-list {
  list-style: none;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.vm-list li {
  position: relative;
  padding-left: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: rgba(255, 255, 255, 0.9);
}

.vm-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-weight: 700;
}

.page-header {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 8);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: calc(var(--spacing-unit) * 2);
  animation: fadeInUp 0.6s ease-out;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.org-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-light-gray);
}

.org-leadership {
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.org-card {
  background-color: var(--color-white);
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
}

.org-card-primary {
  border-top: 4px solid var(--color-primary);
}

.org-card-header {
  background-color: var(--color-light-gray);
  padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 4);
}

.org-position {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.org-card-body {
  padding: calc(var(--spacing-unit) * 4);
  text-align: center;
}

.org-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.org-desc {
  font-size: 1rem;
  color: var(--color-text-light);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.departments-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-white);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.dept-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: calc(var(--border-radius) * 2);
  overflow: hidden;
  transition: all var(--transition-speed);
}

.dept-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--box-shadow-lg);
}

.dept-header {
  background-color: var(--color-light-gray);
  padding: calc(var(--spacing-unit) * 3);
}

.dept-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.dept-body {
  padding: calc(var(--spacing-unit) * 3);
}

.dept-member {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: calc(var(--spacing-unit) * 1.5) 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.dept-member:last-child {
  border-bottom: none;
}

.dept-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  min-width: 80px;
}

.dept-name {
  font-size: 0.9375rem;
  color: var(--color-text);
  flex: 1;
  text-align: right;
}

.regulations-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-white);
}

.reg-category {
  margin-bottom: calc(var(--spacing-unit) * 8);
}

.reg-category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 4);
  padding-bottom: calc(var(--spacing-unit) * 2);
  border-bottom: 3px solid var(--color-primary);
}

.reg-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-left: 4px solid var(--color-primary);
  padding: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 3);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.reg-item:hover {
  border-left-width: 8px;
  box-shadow: var(--box-shadow);
}

.reg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(var(--spacing-unit) * 2);
  flex-wrap: wrap;
  gap: calc(var(--spacing-unit) * 2);
}

.reg-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Courier New', monospace;
}

.reg-date {
  font-size: 0.875rem;
  color: var(--color-gray);
}

.reg-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.reg-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.reg-footer {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
}

.reg-status {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.5);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reg-status.active {
  background-color: rgba(52, 199, 89, 0.1);
  color: #34C759;
}

.reg-notice {
  display: flex;
  gap: calc(var(--spacing-unit) * 2.5);
  background-color: rgba(155, 27, 48, 0.05);
  border: 1px solid rgba(155, 27, 48, 0.2);
  border-radius: calc(var(--border-radius) * 2);
  padding: calc(var(--spacing-unit) * 4);
  margin-top: calc(var(--spacing-unit) * 6);
}

.notice-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.notice-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.notice-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.team-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-light-gray);
}

.team-tabs {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 6);
  flex-wrap: wrap;
}

.team-tab {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 2px solid var(--color-light-gray);
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.team-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.team-tab.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.team-content {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.team-content.active {
  display: block;
}

.team-header-section {
  background-color: var(--color-white);
  padding: calc(var(--spacing-unit) * 5);
  border-radius: calc(var(--border-radius) * 2);
  margin-bottom: calc(var(--spacing-unit) * 5);
  box-shadow: var(--box-shadow);
}

.team-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.coach-info {
  padding: calc(var(--spacing-unit) * 3);
  background-color: var(--color-light-gray);
  border-radius: var(--border-radius);
}

.coach-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.coach-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.coach-assistant {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.player-card {
  background-color: var(--color-white);
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
}

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

.player-number {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  padding: calc(var(--spacing-unit) * 3) 0;
}

.player-info {
  padding: calc(var(--spacing-unit) * 3);
  flex: 1;
}

.player-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.player-position {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.player-stats {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 0.75);
}

.stat-item {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.junior-info {
  background-color: var(--color-white);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--border-radius) * 2);
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.junior-info p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.achievements-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-white);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.achievement-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--border-radius) * 2);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-speed);
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transition: transform var(--transition-speed);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(155, 27, 48, 0.3);
}

.achievement-card:hover::before {
  transform: translate(-20%, -20%);
}

.achievement-year {
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.3;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  position: relative;
}

.achievement-category {
  font-size: 0.9375rem;
  opacity: 0.9;
  position: relative;
}

.contact-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background-color: var(--color-light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: calc(var(--spacing-unit) * 5);
  align-items: start;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
}

.contact-info-card {
  background-color: var(--color-white);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed);
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--box-shadow-lg);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light-gray);
  border-radius: calc(var(--border-radius) * 2);
  color: var(--color-primary);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.contact-info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.contact-info-text a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.contact-info-text a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.contact-form-card {
  background-color: var(--color-white);
  padding: calc(var(--spacing-unit) * 5);
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: var(--box-shadow);
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.contact-form-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1);
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.required {
  color: var(--color-primary);
}

.form-input {
  padding: calc(var(--spacing-unit) * 1.5);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  transition: all var(--transition-speed);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-input.error {
  border-color: #FF3B30;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.875rem;
  color: #FF3B30;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  background-color: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.3);
  color: #34C759;
  padding: calc(var(--spacing-unit) * 2);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
}

.footer {
  background-color: var(--color-secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 3);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1.5);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-logo .logo-icon svg {
  color: var(--color-white);
}

.footer-logo .logo-title {
  color: var(--color-white);
}

.footer-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 1.5);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition-speed);
}

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

.footer-contact li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding-top: calc(var(--spacing-unit) * 3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: var(--box-shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--spacing-unit) * 2);
  }

  .hero-title {
    font-size: 2rem;
  }

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

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .quick-nav-grid {
    grid-template-columns: 1fr;
  }

  .org-grid {
    grid-template-columns: 1fr;
  }

  .departments-grid {
    grid-template-columns: 1fr;
  }

  .players-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-tabs {
    flex-direction: column;
  }

  .team-tab {
    width: 100%;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

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

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e94822;
    --primary-dark: #d43d1a;
    --secondary: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --border: #e0e0e0;
    --bg-light: #f8f9fa;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Original Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
}

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

.logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(233, 72, 34, 0.08);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link-cta {
    background: var(--primary);
    color: #ffffff;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

/* Homepage Body Content - Modern Style */

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: 
        repeating-linear-gradient(0deg, var(--primary) 0px, var(--primary) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 1px, transparent 1px, transparent 60px);
}

/* Basketball Animation */
.basketball-animation {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    animation: heroFloat 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-55%) translateX(30px);
    }
}

.basketball {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #e94822 0%, #d43d1a 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(233, 72, 34, 0.25),
        inset -8px -8px 24px rgba(0, 0, 0, 0.2),
        inset 8px 8px 24px rgba(255, 255, 255, 0.15);
    animation: ballBounce 2.5s ease-in-out infinite, ballSpin 25s linear infinite;
}

@keyframes ballBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.02);
    }
}

@keyframes ballSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.basketball::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.25);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 2px;
}

.basketball::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

.basketball-shadow {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 25px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowMove 2.5s ease-in-out infinite;
}

@keyframes shadowMove {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateX(-50%) scale(0.85);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 580px;
    animation: fadeSlideUp 1s ease-out;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: rgba(233, 72, 34, 0.08);
    border: 1px solid rgba(233, 72, 34, 0.2);
    color: var(--primary);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(233, 72, 34, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 72, 34, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary-inverse {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-primary-inverse:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary-inverse {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary-inverse:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}


/* Stats Section */
.stats-section {
    padding: 70px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.stat-card {
    padding: 36px 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(233, 72, 34, 0.12);
    border-color: rgba(233, 72, 34, 0.3);
    background: white;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 4px 16px rgba(233, 72, 34, 0.25);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Section with Mission Cards */
.about-section {
    padding: 90px 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.mission-card {
    background: white;
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(233, 72, 34, 0.15);
    border-color: rgba(233, 72, 34, 0.2);
}

.mission-card:hover::before {
    height: 100%;
}

.mission-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(233, 72, 34, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.mission-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.mission-text {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 14px;
}

/* Programs Section */
.programs-section {
    padding: 90px 0;
    background: white;
}

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

.program-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(233, 72, 34, 0.2);
}

.program-image {
    height: 180px;
    background: linear-gradient(135deg, #e94822 0%, #d43d1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-badge {
    padding: 7px 18px;
    background: white;
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.program-content {
    padding: 26px;
}

.program-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.program-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.program-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.program-tag {
    padding: 6px 12px;
    background: #f8f9fa;
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Competition Section */
.competition-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.competition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.competition-card {
    background: white;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.competition-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(233, 72, 34, 0.12);
    border-color: rgba(233, 72, 34, 0.25);
}

.competition-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(233, 72, 34, 0.08) 0%, rgba(233, 72, 34, 0.12) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 20px;
}

.competition-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.competition-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Facilities Section */
.facilities-section {
    padding: 90px 0;
    background: white;
}

.facilities-list {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.facility-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(233, 72, 34, 0.1);
    border-color: rgba(233, 72, 34, 0.3);
}

.facility-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(233, 72, 34, 0.08) 0%, rgba(233, 72, 34, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.facility-content {
    flex: 1;
}

.facility-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.facility-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}


/* CTA Section */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 60px);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Page Header (for other pages) - Original Style */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Regulations Section - Original Style */
.regulations-section {
    padding: 60px 0 80px;
    background: white;
}

.reg-category {
    margin-bottom: 48px;
}

.reg-category:last-child {
    margin-bottom: 0;
}

.reg-category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.reg-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.reg-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.reg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.reg-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(233, 72, 34, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.reg-date {
    font-size: 12px;
    color: var(--text-light);
}

.reg-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.reg-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 12px;
}

.reg-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.reg-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.reg-notice {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(233, 72, 34, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    margin-top: 32px;
}

.notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.notice-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.notice-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Footer - Original Style */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: var(--primary);
}

.footer-logo .logo-title {
    color: white;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 14px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    font-size: 14px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .basketball-animation {
        right: 5%;
    }
    
    .basketball {
        width: 150px;
        height: 150px;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
    }
    
    .basketball-animation {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
        margin-top: 72px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .programs-grid,
    .competition-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-item {
        flex-direction: column;
        text-align: center;
    }
    
    .facility-icon {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .reg-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 12px;
    opacity: 0.85;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.program-image {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.program-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.6)
    );
}

.program-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.footer {
    background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
    color: #cfcfcf;
    padding: 64px 0 24px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo-img {
    width: 56px;
    margin-bottom: 16px;
}

.footer-brand-desc {
    line-height: 1.6;
    color: #b5b5b5;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #bfbfbf;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-map iframe {
    width: 100%;
    height: 160px;
    border: 0;
    border-radius: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #9a9a9a;
}
