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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
}
.translate-button {
  margin-left: 12px;
}

.goog-te-banner-frame.skiptranslate,
body > .goog-te-spinner-pos {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0;
}

.goog-te-combo {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #cbd5e1;
  background-color: white;
  cursor: pointer;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-live {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background: #fbbf24;
  color: #1f2937;
}

.btn-secondary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}

.btn-outline:hover {
  background: #1e3a8a;
  color: white;
}

.btn-live {
  background: #dc2626;
  color: white;
  font-size: 0.9rem;
}

.btn-live:hover {
  background: #b91c1c;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
  gap: 1rem;
}

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

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e3a8a;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  position: relative;
  text-wrap: nowrap;
}

.nav-link:hover {
  color: #1e3a8a;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e3a8a;
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;

  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}

.detail-item i {
  color: #fbbf24;
  font-size: 1.3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.main-content {
  padding: 4rem;
}
.main-content-contact {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.card-location {
  border: 1px solid #e5e7ef;
  border-radius: 8px;
  padding: 16px;
}
.btn-secondary-contact {
  float: right;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.9rem;
  background: #fbbf24;
  color: #1f2937;
}
.hero-description {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Events Slider */
.events-slider {
  padding: 5rem 0;
  background: white;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.events-carousel {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.event-card {
  flex: 0 0 350px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-upcoming {
  background: #3b82f6;
  color: white;
}

.status-live {
  background: #dc2626;
  color: white;
}

.status-finished {
  background: #6b7280;
  color: white;
}

.event-content {
  padding: 1.5rem;
}

.event-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1e3a8a;
  transition: all 0.3s ease;
  z-index: 2;
}

.slider-btn:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #1e3a8a;
}

/* Ranking Section */
.ranking-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.ranking-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: white;
}

.ranking-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 300px;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}

.search-box input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #1e3a8a;
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.ranking-table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
}

.ranking-table th {
  background: #1e3a8a;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.ranking-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.ranking-table tr:hover {
  background: #f3f4f6;
}

.rank-number {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1e3a8a;
}

.player-name {
  font-weight: 600;
  color: #1f2937;
}

.points {
  font-weight: 700;
  color: #059669;
}

.change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.change.up {
  color: #059669;
}

.change.down {
  color: #dc2626;
}

.change.same {
  color: #6b7280;
}

.ranking-footer {
  text-align: center;
  margin-top: 2rem;
}

/* News Section */
.news-section {
  padding: 5rem 0;
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card.featured {
  grid-row: 1 / 3;
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card.featured .news-image {
  height: 300px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1e3a8a;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-content {
  padding: 1.5rem;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.news-card.featured .news-content h3 {
  font-size: 1.5rem;
}

.news-excerpt {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-footer {
  text-align: center;
}

/* Certification & Venue */
.certification-venue {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
}

.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.cv-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cv-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cv-icon i {
  font-size: 2rem;
  color: #fbbf24;
}

.cv-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cv-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cv-list {
  list-style: none;
  margin-bottom: 2rem;
}

.cv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.cv-list i {
  color: #fbbf24;
}

/* Media Section */
.media-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.media-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.media-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-card {
  grid-row: 1 / 3;
}

.video-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.media-content {
  padding: 1.5rem;
}

.social-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem;
  background: #f3f4f6;
  font-weight: 600;
}

.social-header i {
  font-size: 1.2rem;
  color: #e91e63;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 1rem;
}

.social-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.tiktok-video {
  position: relative;
  height: 300px;
}

.tiktok-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.gallery-card {
  padding: 1.5rem;
}

.gallery-card h4 {
  margin-bottom: 1rem;
  color: #1f2937;
}

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

.gallery-item {
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-photos {
  background: #1e3a8a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.media-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #fbbf24;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-item i {
  color: #fbbf24;
  margin-top: 2px;
}

.partner-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.partner-logos img {
  height: 30px;
  object-fit: contain;
}

.streaming-platforms h5 {
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.platform-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.platform-links a {
  color: #d1d5db;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.platform-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  position: relative;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #6b7280;
}

.close:hover {
  color: #1f2937;
}

.stream-container {
  margin-top: 1rem;
  height: 400px;
}

.stream-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-details {
    flex-direction: column;
    gap: 1rem;
  }

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

  .news-card.featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .cv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .video-card {
    grid-column: 1 / 3;
    grid-row: 1;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .events-carousel {
    gap: 1rem;
  }

  .event-card {
    flex: 0 0 280px;
  }

  .ranking-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .search-box {
    max-width: none;
  }

  .ranking-table {
    font-size: 0.9rem;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 0.75rem 0.5rem;
  }

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

  .news-card.featured {
    grid-column: 1;
    grid-row: auto;
  }

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

  .video-card {
    grid-column: 1;
    grid-row: auto;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1rem;
  }

  .stream-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .event-card {
    flex: 0 0 250px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .ranking-table {
    font-size: 0.8rem;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 0.5rem 0.25rem;
  }

  .social-links {
    justify-content: center;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
  transition: all 0.3s ease;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #1e3a8a;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* News Page Styles */
.page-header {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.news-filter {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.filter-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.filter-tabs {
  display: flex;
  gap: 1rem;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tab.active,
.filter-tab:hover {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: white;
}

.filter-search {
  position: relative;
  min-width: 300px;
}

.filter-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}

.filter-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.filter-search input:focus {
  outline: none;
  border-color: #1e3a8a;
}

.featured-news {
  padding: 3rem 0;
  background: #f9fafb;
}

.featured-news h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured-image {
  position: relative;
  height: 400px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1e3a8a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h3 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.featured-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.meta-item i {
  color: #1e3a8a;
}

.news-grid-section {
  padding: 3rem 0;
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-article {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-article:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #1e3a8a;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-content {
  padding: 1.5rem;
}

.article-content h3 {
  font-size: 1.2rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-excerpt {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.article-date,
.article-views {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-date i,
.article-views i {
  color: #1e3a8a;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
  border-color: #1e3a8a;
  color: #1e3a8a;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-number.active,
.pagination-number:hover {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: white;
}

.pagination-dots {
  color: #6b7280;
  padding: 0 0.5rem;
}

.newsletter {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 3rem 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  min-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  white-space: nowrap;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 150px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #1f2937;
  text-decoration: none;
  transition: background 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #1e3a8a;
}

.nav-link.active {
  color: #1e3a8a;
  font-weight: 600;
}

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

/* Responsive Design for News Page */
@media (max-width: 1024px) {
  .filter-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-search {
    min-width: auto;
    width: 100%;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 250px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .filter-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .pagination {
    flex-wrap: wrap;
  }

  .pagination-numbers {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f3f4f6;
    margin-top: 0.5rem;
    border-radius: 4px;
  }
}

/* Animation for filtered articles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.back-to-top:hover {
  background: #3b82f6 !important;
  transform: translateY(-2px);
}

/* Certification Page Styles */
.certification-intro {
  padding: 4rem 0;
  background: #f9fafb;
}

.intro-content h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.certification-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.category-content h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.category-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.certification-documents {
  padding: 4rem 0;
  background: white;
}

.certification-documents h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.document-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.document-card:hover {
  border-color: #1e3a8a;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.1);
}

.document-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.document-content h4 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.document-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.document-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.certification-registration {
  padding: 4rem 0;
  background: #f9fafb;
}

.registration-header {
  text-align: center;
  margin-bottom: 3rem;
}

.registration-header h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.registration-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.registration-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.registration-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.registration-form h3 {
  color: #1e3a8a;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e3a8a;
}

.file-upload {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload:hover {
  border-color: #1e3a8a;
  background-color: #f9fafb;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}

.file-upload-text i {
  font-size: 2rem;
  color: #9ca3af;
}

.file-upload-text small {
  font-size: 0.8rem;
  color: #9ca3af;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-actions {
  margin-top: 2rem;
}

.registration-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.help-info {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.help-info h4 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.contact-item i {
  color: #1e3a8a;
  width: 16px;
}

.certification-process {
  padding: 4rem 0;
  background: white;
}

.certification-process h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-content h4 {
  color: #1e3a8a;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.timeline-duration {
  color: #9ca3af;
  font-size: 0.9rem;
  font-style: italic;
}

.process-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.summary-item {
  text-align: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}

.summary-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.summary-content h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.summary-content p {
  color: #6b7280;
  font-weight: 600;
}

.certified-entities {
  padding: 4rem 0;
  background: #f9fafb;
}

.certified-entities h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.entity-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.entity-tab {
  padding: 1rem 2rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.entity-tab.active,
.entity-tab:hover {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: white;
}

.entity-content {
  display: none;
}

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

.entities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.entity-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.entity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.entity-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.entity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.entity-info {
  padding: 1.5rem;
}

.entity-info h4 {
  color: #1e3a8a;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.entity-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #6b7280;
}

.entity-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.entity-meta i {
  color: #1e3a8a;
}

.entity-info p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.entity-actions {
  display: flex;
  gap: 1rem;
}

/* Club specific styles */
.entity-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

.club-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.club-info h4 {
  margin-bottom: 0.5rem;
}

.club-achievements {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.achievement {
  background: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Referee specific styles */
.referee-card {
  text-align: center;
}

.referee-photo {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 1.5rem auto 1rem;
}

.referee-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.referee-level {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.referee-quote {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.referee-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Coach specific styles */
.coach-card {
  text-align: center;
}

.coach-photo {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 1.5rem auto 1rem;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.coach-level {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #8b5cf6;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.coach-achievements {
  margin-bottom: 1.5rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.achievement-item i {
  color: #fbbf24;
}

/* Responsive Design for Certification Page */
@media (max-width: 1024px) {
  .registration-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .entity-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .entity-tab {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .certification-categories {
    grid-template-columns: 1fr;
  }

  .category-item {
    flex-direction: column;
    text-align: center;
  }

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

  .process-timeline::before {
    left: 15px;
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .timeline-item {
    gap: 1rem;
  }

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

  .entity-actions {
    flex-direction: column;
  }

  .entity-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .referee-stats,
  .entity-header {
    flex-direction: column;
    text-align: center;
  }

  .club-info {
    text-align: center;
  }
}

/* Competition Detail Page Styles */
.competition-detail-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.competition-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.overview-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: #374151;
}

.overview-item i {
  color: #1e3a8a;
  font-size: 1.3rem;
}

.competition-content h2 {
  color: #1e3a8a;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.competition-content p {
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.schedule-table {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.schedule-table th,
.schedule-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.schedule-table th {
  background: #1e3a8a;
  color: white;
  font-weight: 600;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.result-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.result-card h4 {
  color: #1e3a8a;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.result-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1f2937;
}

.result-card .score {
  font-weight: 700;
  color: #dc2626;
  margin: 0 0.5rem;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.video-gallery iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.photo-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.winner-profile {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 3rem;
}

.winner-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid #1e3a8a;
}

.winner-profile h3 {
  color: #1e3a8a;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.winner-profile p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Responsive adjustments for Competition Detail Page */
@media (max-width: 768px) {
  .competition-overview {
    grid-template-columns: 1fr;
  }

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

  .video-gallery {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }
}

/* News Detail Page Styles */
.news-meta-header {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.meta-item i {
  color: #fbbf24;
}

.news-detail-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.news-detail-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.news-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.news-detail-content p {
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.related-news h2 {
  color: #1e3a8a;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Responsive adjustments for News Detail Page */
@media (max-width: 768px) {
  .news-meta-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .news-detail-content {
    padding: 2rem 1.5rem;
  }

  .news-detail-image {
    height: 250px;
  }

  .related-news-grid {
    grid-template-columns: 1fr;
  }
}
