@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --text-primary: #000000;
  --text-secondary: #666666;
  --border-color: #e5e5e5;
  --card-bg: #ffffff;
  --overlay: rgba(0, 0, 0, 0.7);
  --highlight-bg: #f9f9f9;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --sidebar-width: 280px;
}

[data-theme="dark"] {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --border-color: #333333;
  --card-bg: #1a1a1a;
  --overlay: rgba(0, 0, 0, 0.8);
  --highlight-bg: #1a1a1a;
}
html {
  width: 100%;
  display: flex;
  justify-content: center;
  scroll-behavior: smooth;
}
body {
  max-width: 1800px;
  width: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background 0.3s ease, color 0.3s ease;
}

#nonny-modal-box .nonny-modal-div p,
#nonny-modal-box .nonny-modal-div h2 {
  color: #0a0a0a;
}

/* Navigation */
.navbar {
  background: var(--bg-primary);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo span {
  color: var(--text-primary);
  font-weight: 500;
}

.logo::before {
  content: "⚽";
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.6;
}

.nav-link.active {
  border-bottom: 2px solid var(--text-primary);
  padding-bottom: 4px;
  opacity: 0.6;
}

.theme-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 50px;
  height: 28px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.theme-toggle::after {
  content: "🌙";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

[data-theme="dark"] .theme-toggle::after {
  content: "☀️";
  transform: translateX(22px);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 32px;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* Featured Post */
.featured {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-decoration: none;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
  text-decoration: none;
}

.featured-image {
  width: 100%;
  height: 400px;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
}

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

.featured-content {
  padding: 20px 0;
}

.category-tag {
  display: inline-block;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-primary);
}

.featured-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Latest Posts */
.latest-posts {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
}

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

.post-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--card-bg);
}

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

.post-image {
  width: 100%;
  height: 220px;
  background: var(--bg-secondary);
}

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

.post-content {
  padding: 24px;
}

.post-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 15px;
}

.read-more {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  gap: 10px;
}
.post-category {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.post-category a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0 16px;
  border-radius: 50px;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  transition: all 0.3s;
}

.post-category a.active {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.post-category a:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.search-from {
  max-width: 600px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: left;
}

.search-from input {
  width: calc(100% - 40px);
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
}
.search-from button {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 60px 0;
}
.pagination a {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
}

.pagination a:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
}

/* SINGLE ARTICLE */

/* Article Container */
.article-container {
  max-width: 800px;
  margin: 150px auto 60px;
  padding: 0 20px;
}

/* Article Header */
.article-header {
  margin-bottom: 40px;
}

.category-tag {
  display: inline-block;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured Image */
.featured-image {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

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

/* Social Share */
.social-share {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: -80px;
  float: left;
}

.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 20px;
}

.share-btn:hover {
  transform: scale(1.1);
  border-color: var(--text-primary);
}

.share-btn.copied {
  background: #10b981;
  border-color: #10b981;
}

/* Article Content */
.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 40px 0 20px;
}

.article-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content blockquote {
  border-left: 4px solid var(--text-primary);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--bg-secondary);
  font-style: italic;
  font-size: 20px;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 50px 0;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.tag {
  background: var(--bg-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

/* Related Articles */
.related-articles {
  margin: 60px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

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

.related-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-primary);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-image {
  width: 100%;
  height: 150px;
  background: var(--bg-secondary);
}

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

.related-content {
  padding: 20px;
}

.related-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.related-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Comments Section */
.comments-section {
  margin: 60px 0;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.comments-count {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Comment Form */
.comment-form {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: calc(100% - 40px);
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 15px;
  transition: border 0.3s;
}

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

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

.submit-btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Comments List */
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.comment {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-secondary);
  flex-shrink: 0;
  overflow: hidden;
}
.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

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

.comment-author {
  font-weight: 700;
  font-size: 15px;
}

.comment-date {
  font-size: 13px;
  color: var(--text-secondary);
}

.comment-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.comment-reply {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
}

.comment-reply:hover {
  color: var(--text-primary);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ABOUT */
/* Hero Section */
.about-hero {
  margin-top: 80px;
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-secondary);
}

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

.about-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--text-primary);
}

.about-hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.story-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  background: var(--bg-secondary);
  overflow: hidden;
}

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

.story-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 80px 20px;
  margin: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.8;
}

/* Values Section */
.values-section {
  margin-bottom: 100px;
}

.about-container .section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}

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

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  margin-bottom: 100px;
}

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

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 100%;
  height: 250px;
  background: var(--bg-secondary);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-name a {
  text-decoration: none;
  color: var(--text-primary);
  transition: opacity 0.3s;
}

.team-role {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

/* Mission Section */
.mission-section {
  background: var(--bg-secondary);
  padding: 80px 20px;
  border-radius: 20px;
  margin-bottom: 100px;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
}

.mission-content p {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border: 2px solid var(--text-primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

/* CONTACT */
/* Hero Section */
.contact-hero {
  margin-top: 80px;
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-secondary);
}

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

.contact-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-hero p {
  font-size: 20px;
  color: var(--text-secondary);
}

/* Main Container */
.contact-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-info-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.contact-info-link:hover {
  opacity: 0.6;
}

/* Social Links */
.contact-social-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
}

.contact-social-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
}

.contact-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-social-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-3px);
}

/* Form Section */
.contact-form-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 12px;
}

.contact-form-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form-required {
  color: var(--error-color);
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.3s;
}
.contact-form-input,
.contact-form-textarea {
  width: calc(100% - 34px);
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .contact-form-input:focus,
[data-theme="dark"] .contact-form-select:focus,
[data-theme="dark"] .contact-form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

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

.contact-form-submit {
  width: 100%;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form-submit:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.contact-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* FAQ Section */
.contact-faq-section {
  max-width: 1200px;
  margin: 80px auto 100px;
  padding: 0 20px;
}

.contact-faq-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
}

.contact-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.contact-faq-question {
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.contact-faq-question:hover {
  background: var(--bg-secondary);
}

.contact-faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.contact-faq-item.active .contact-faq-icon {
  transform: rotate(180deg);
}

.contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.contact-faq-answer-content {
  padding: 0 30px 25px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-faq-item.active .contact-faq-answer {
  max-height: 500px;
}

/* Toast Notification */
.contact-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--success-color);
  color: white;
  padding: 16px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.contact-toast.error {
  background: var(--error-color);
}

/* TERMS */
/* Hero Section */
.terms-hero {
  margin-top: 80px;
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-secondary);
}

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

.terms-hero-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.terms-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.terms-hero-date {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Main Container */
.terms-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
}

/* Sidebar Navigation */
.terms-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.terms-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.terms-sidebar-nav {
  list-style: none;
}

.terms-sidebar-item {
  margin-bottom: 12px;
}

.terms-sidebar-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
}

.terms-sidebar-link:hover,
.terms-sidebar-link.active {
  color: var(--text-primary);
  background: var(--highlight-bg);
}

/* Content Section */
.terms-content {
  padding-bottom: 60px;
}

.terms-section {
  margin-bottom: 50px;
  scroll-margin-top: 120px;
}

.terms-section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.terms-section-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
}

.terms-paragraph {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.terms-list {
  margin: 20px 0;
  padding-left: 30px;
}

.terms-list-item {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.8;
}

.terms-list-item strong {
  color: var(--text-primary);
}

.terms-highlight-box {
  background: var(--highlight-bg);
  border-left: 4px solid var(--text-primary);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 8px;
}

.terms-highlight-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.terms-highlight-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.terms-table-header {
  background: var(--bg-secondary);
  font-weight: 700;
  text-align: left;
}

.terms-table-header-cell,
.terms-table-cell {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.terms-table-row:last-child .terms-table-cell {
  border-bottom: none;
}

.terms-table-cell {
  color: var(--text-secondary);
}

/* Contact Box */
.terms-contact-box {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 60px 0;
}

.terms-contact-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.terms-contact-text {
  margin-bottom: 25px;
  opacity: 0.9;
}

.terms-contact-button {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.terms-contact-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* LIVESCORE */
.livescores {
  max-width: 1200px;
  margin: 100px auto;
  margin-top: 150px;
  padding: 0 20px;
}

.livescores .heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.livescores .heading h2 {
  margin: 0;
}

/* Newsletter */
.newsletter {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
}

.newsletter h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-form button {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Mobile Responsive */

@media (max-width: 1024px) {
  .social-share {
    position: static;
    flex-direction: row;
    margin-left: 0;
    margin-bottom: 30px;
    float: none;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -150%;
    max-width: calc(100% - 40px);
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.3s;
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .featured-post {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-content h2,
  .newsletter h2 {
    font-size: 32px;
  }

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

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

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

  .article-title {
    font-size: 36px;
  }

  .article-content {
    font-size: 16px;
  }

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

  .featured-image {
    height: 300px;
  }

  .social-share {
    justify-content: center;
  }
  .about-hero h1 {
    font-size: 36px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title,
  .mission-content h2,
  .cta-section h2 {
    font-size: 32px;
  }
  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }

  .contact-faq-title {
    font-size: 32px;
  }

  .contact-social-links {
    flex-wrap: wrap;
  }
  .terms-hero-title {
    font-size: 36px;
  }

  .terms-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .terms-sidebar {
    position: static;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
  }

  .terms-section-title {
    font-size: 24px;
  }

  .terms-section-subtitle {
    font-size: 20px;
  }

  .terms-table {
    font-size: 14px;
  }

  .terms-table-header-cell,
  .terms-table-cell {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .newsletter h2 {
    font-size: 32px;
  }
  .article-title {
    font-size: 28px;
  }

  .comment-form {
    padding: 20px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

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

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

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-info-card,
  .contact-social-section,
  .contact-form-section {
    padding: 20px;
  }
  .terms-hero-title {
    font-size: 28px;
  }

  .terms-highlight-box,
  .terms-contact-box {
    padding: 20px;
  }
}
