.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.page-header-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.breadcrumb-custom a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition-fast);
}

.breadcrumb-custom a:hover {
  color: var(--accent-cyan);
}

.breadcrumb-custom span {
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb-custom .current {
  color: var(--accent-purple);
}

.content-section {
  padding: 80px 0;
}

.content-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.content-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.content-card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

textarea.form-control-custom {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gradient-primary);
  color: #FFF;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item-custom {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.accordion-header-custom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.accordion-header-custom:hover {
  background: rgba(108, 92, 231, 0.05);
}

.accordion-header-custom i {
  color: var(--accent-purple);
  transition: var(--transition-normal);
}

.accordion-header-custom.active i {
  transform: rotate(180deg);
}

.accordion-body-custom {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-custom.active {
  max-height: 500px;
}

.accordion-content {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition-normal);
}

.info-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  transform: translateY(-5px);
}

.info-card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  font-size: 28px;
  color: #FFF;
  margin: 0 auto 20px;
}

.info-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.info-card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.games-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #FFF;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-card-image {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--tertiary-dark) 0%, var(--secondary-dark) 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--accent-purple);
  border: 3px solid rgba(108, 92, 231, 0.3);
}

.team-card-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 14px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.team-card-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-card-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition-fast);
}

.team-card-social a:hover {
  background: var(--gradient-primary);
  color: #FFF;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(108, 92, 231, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-purple);
  border-radius: 50%;
  border: 3px solid var(--primary-dark);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(9, 132, 227, 0.1) 100%);
  border-top: 1px solid rgba(108, 92, 231, 0.2);
  border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .page-header-title {
    font-size: 32px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
}
