/* HOME PAGE STYLES */

.home-page {
  width: 100%;
  min-height: 100vh;
}

/* Stories Section */
.stories-section {
  margin: 0;
  padding: 0;
  position: relative;
}

.stories-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.stories {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.stories:active {
  cursor: grabbing;
}

.stories::-webkit-scrollbar {
  display: none !important;
}

.story-control-button {
  background: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  min-width: 32px !important;
  width: 32px !important;
  height: 36px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: opacity 0.2s, transform 0.2s;
}

.story-control-button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.story-control-prev {
  margin-right: 8px;
}

.story-control-next {
  margin-left: 8px;
}

.story-control-button:hover {
  opacity: 1;
}

.story-control-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.story-hidden {
  display: none !important;
}

.story-hidden {
  display: none !important;
}

.story {
  width: 82px;
  height: 82px;
  border: 2px solid #063a68;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.story:hover {
  transform: scale(1.1);
}

.story-more {
  background: linear-gradient(135deg, #005eb4 0%, #003d7a 100%);
  border: 2px solid #005eb4;
  cursor: pointer;
}

.story-more:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 94, 180, 0.3);
}

.story-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: white;
  font-weight: 600;
}

.story-more-count {
  font-size: 18px;
  font-weight: 700;
}

.story-more-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-image {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.story-video {
  display: block;
}

.story-title {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story:hover .story-title {
  opacity: 1;
}

.story-image {
  position: relative;
}

/* Story Viewer Styles */
.story-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.story-viewer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.story-viewer-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.story-viewer-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.story-viewer-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.story-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.story-progress-fill {
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.1s linear;
}

.story-viewer-controls {
  position: absolute;
  top: 20px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 11;
}

.story-viewer-mute-btn,
.story-viewer-pause-btn,
.story-viewer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.2s;
  border: none;
  outline: none;
  padding: 0;
}

.story-viewer-mute-btn:hover,
.story-viewer-pause-btn:hover,
.story-viewer-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.story-viewer-mute-btn:active,
.story-viewer-pause-btn:active,
.story-viewer-close:active {
  transform: scale(0.95);
}

.story-viewer-mute-btn svg,
.story-viewer-pause-btn svg {
  display: block;
}

.story-viewer-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-viewer-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-viewer-image,
.story-viewer-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.story-viewer-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.story-viewer-prev {
  left: 16px;
}

.story-viewer-next {
  right: 16px;
}

.story-viewer-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 10;
}

.story-viewer-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .story-viewer-container {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .story-viewer-nav {
    width: 40px;
    height: 40px;
  }

  .story-viewer-prev {
    left: 8px;
  }

  .story-viewer-next {
    right: 8px;
  }
}

/* Slider Section */
.slider-section {
  margin: 0;
  padding: 0;
}

.slider-section .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slider-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    99.59deg,
    #042d51 3.67%,
    rgba(115, 115, 115, 0) 131.9%
  );
  z-index: 2;
}

.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 3;
}

.slider-text-content {
  text-align: left;
  padding: 0 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.slider-text-content h2 {
  width: 65%;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-text-content p {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.slider-button {
  border-radius: 150px !important;
  padding: 12px 24px;
  background: #005eb4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.slider-button:hover {
  background: #004a94;
  transform: translateY(-2px);
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 100;
  pointer-events: none;
}

.slider-controls button {
  pointer-events: auto;
}

.slider-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.slider-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.slider-nav-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.slider-dot.active {
  background: white;
  border-color: white;
  width: 16px;
  height: 16px;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb a:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Matches Section */
.matches-section {
  margin: 0;
  padding: 30px 20px;
  background: #ffffff;
}

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

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

.matches-title {
  font-size: 28px;
  font-weight: 700;
  color: #063a68;
  margin: 0;
  text-align: left;
}

.matchs-container {
  width: 100%;
  overflow: hidden;
}

.matchs-scroll {
  display: flex;
  overflow-x: auto;
  padding: 20px 0;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.matchs-scroll::-webkit-scrollbar {
  display: none;
}

.matchs-scroll:active {
  cursor: grabbing;
}

.matchs-scroll > * {
  flex-shrink: 0;
}

.match-card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  max-width: 280px;
  margin-right: 16px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-badge {
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.match-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.match-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 500;
}

.match-time {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}

.match-league {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 0;
}

.match-button {
  color: white;
  padding: 8px 16px;
  border-radius: 150px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  min-width: 120px;
  border: 1px solid #ffffff;
  background: transparent;
  margin-top: auto;
}

.match-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Other Section */
.other-section {
  margin-top: 40px;
  display: flex;
}

.other-section-header {
  gap: 20px;
  margin-bottom: 30px;
}

.other-section-logo {
  flex-shrink: 0;
}

.other-section-logo img {
  width: 125px;
  object-fit: contain;
}

.other-section-content {
  flex: 1;
}

.other-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.other-section-description {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.other-section-cards {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.other-section-cards::-webkit-scrollbar {
  display: none;
}

.other-section-cards:active {
  cursor: grabbing;
}

.other-section-card {
  position: relative;
  height: 400px;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.other-section-card:hover {
  transform: translateY(-5px);
}

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

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

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    179.92deg,
    rgba(0, 0, 0, 0) 40.76%,
    rgba(0, 0, 0, 0.8) 99.93%
  );
  z-index: 2;
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
}

.card-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.other-section.area-2 {
  background: #0251a0;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}

.other-section.area-2 .other-section-title {
  color: white;
}

.other-section.area-2 .other-section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Standings Section */
.standings-section {
  padding: 30px 20px;
  background: #c7eafb;
  border-radius: 16px;
  margin: 0;
}

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

.standings-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #063a68;
  margin-bottom: 30px;
  padding: 0;
  text-align: left;
}

.standings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
}

.standings-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standings-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.standings-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.standings-title-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  gap: 8px;
}

.standing-title-teamName {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.standings-icon {
  color: #0251a0;
}

.standings-title {
  font-size: 20px;
  font-weight: 700;
  color: #063a68;
  margin: 0;
  text-align: center;
}

.standings-title-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.standings-label-left {
  white-space: nowrap;
  text-align: left;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.standings-label-right {
  white-space: nowrap;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.standings-content {
  margin-bottom: 15px;
}

.standings-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.team-row {
  display: grid;
  grid-template-columns: 30px 40px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.team-row:last-child {
  border-bottom: none;
}

.team-row--top-two {
  background-color: #f7f9fc;
  border-radius: 8px;
  margin-bottom: 5px;
}

.team-rank {
  color: #333;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
}

.team-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.team-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.team-last-five {
  display: flex;
  gap: 5px;
  align-items: center;
}

.match-result-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.match-result-icon--win {
  background-color: #28a745;
}

.match-result-icon--draw {
  background-color: #6c757d;
}

.match-result-icon--loss {
  background-color: #dc3545;
}

.superligCardsSection {
  margin-bottom: 30px;
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
}

.superlig-cards-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 40px;
  background: none;
  align-items: flex-start;
  gap: 40px;
}

.superlig-cards-info {
  max-width: 290px;
  min-width: 120px;
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
}

.superlig-cards-logo {
  width: 80px;
  margin-bottom: 12px;
  object-fit: contain;
}

.superlig-cards-title {
  color: #063a68;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 24px;
}

.superlig-cards-description {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.superlig-cards-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex: 1 1 auto;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
}

.superlig-cards-scroll:active {
  cursor: grabbing;
}

.superlig-cards-scroll::-webkit-scrollbar {
  display: none !important;
}

.superlig-card {
  position: relative;
  width: 300px;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #f7f9fc;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.superlig-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.superlig-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    179.92deg,
    rgba(0, 0, 0, 0) 40.76%,
    rgba(0, 0, 0, 0.65) 99.93%
  );
}

.superlig-card-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: 600;
  margin: 20px 0 15px 0;
  text-align: center;
  font-size: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}

/* News Section */
.news-section {
  margin: 0;
  padding: 30px 20px;
}

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

.news-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #063a68;
  margin-bottom: 30px;
  padding: 0;
  text-align: left;
}

.news-container {
  width: 100%;
  overflow: hidden;
}

.news-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
}

.news-scroll::-webkit-scrollbar {
  display: none;
}

.news-scroll:active {
  cursor: grabbing;
}

.news-scroll > * {
  flex-shrink: 0;
  scroll-snap-align: start;
}

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

.news-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 330px;
  min-width: 300px;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-thumb {
  height: 100%;
  position: absolute;
  background: linear-gradient(
    198.8deg,
    rgba(0, 0, 0, 0) 39.55%,
    rgba(0, 0, 0, 0.9) 88.76%
  );
  width: 100%;
}

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

.news-body {
  padding: 14px 16px 18px 16px;
  position: relative;
  z-index: 2;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.news-desc {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Clubs Section (Home Page) */
.clubs-section {
  margin: 0;
  padding: 0;
  background: transparent;
}

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

.clubs-container {
  width: 100%;
  margin: 40px 0;
}

.clubs-title {
  font-size: 1.5rem;
  color: #0d3b66;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.clubs-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.clubs-grid::-webkit-scrollbar {
  display: none;
}

.clubs-grid:active {
  cursor: grabbing;
}

.clubs-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  flex: 1 1 0;
  min-width: 140px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.clubs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.clubs-logo {
  width: 100px;
  height: 90px;
  object-fit: contain;
}

/* Sponsors Section (Home Page) */
.sponsors-section {
  margin: 0;
  padding: 0;
  background: transparent;
}

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

.sponsors-container {
  width: 100%;
  margin: 40px 0;
}

.sponsors-title {
  font-size: 1.5rem;
  color: #0d3b66;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.sponsors-bar {
  background-color: #f1f3f5;
  border-radius: 9999px;
  padding: 20px 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.sponsors-bar::-webkit-scrollbar {
  display: none;
}

.sponsors-bar:active {
  cursor: grabbing;
}

.sponsors-spacer {
  display: none;
}

.sponsors-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  flex: 1;
  min-width: 0;
}

.sponsors-logo {
  max-height: 30px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.5) contrast(0.9);
  opacity: 1.6;
  transition: all 0.3s ease-in-out;
}

.sponsors-link:hover .sponsors-logo {
  filter: grayscale(100%) brightness(0) contrast(0.9);
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .stories-section,
  .slider-section,
  .matches-section,
  .standings-section,
  .superligCardsSection {
    padding-left: 12px;
    padding-right: 12px;
  }

  .standings-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .superlig-card {
    width: 220px;
    height: 170px;
  }

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

@media (max-width: 768px) {
  .home-page {
    overflow-x: hidden;
  }

  .stories-section {
    padding: 0 16px;
  }

  .story {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }

  .story-image {
    width: 64px;
    height: 64px;
  }

  .stories {
    gap: 6px;
    padding: 8px 0;
  }

  .stories-wrapper {
    padding: 0;
  }

  .slider-container {
    height: 400px !important;
  }

  .slider-content {
    padding: 0;
  }

  .slider-text-content {
    padding: 0 16px;
    max-width: 100%;
    width: 95%;
    box-sizing: border-box;
  }

  .slider-text-content h2 {
    width: 100% !important;
    font-size: 24px !important;
  }

  .matches-section {
    padding: 0 16px;
  }

  .matches-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
  }

  .matches-title {
    font-size: 24px;
    margin: 0;
  }

  .matchs-container {
    overflow: hidden;
  }

  .matchs-scroll {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .matchs-scroll::-webkit-scrollbar {
    display: none;
  }

  .match-card {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    margin-right: 0;
    flex-shrink: 0;
  }

  .other-section {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .other-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .other-section-logo img {
    width: 100px;
  }

  .other-section-title {
    font-size: 20px;
  }

  .other-section-description {
    font-size: 14px;
  }

  .other-section-cards {
    gap: 12px;
  }

  .other-section-card {
    width: 180px;
    height: 250px;
    flex-shrink: 0;
  }

  .card-title {
    font-size: 16px;
  }

  .standings-section {
    padding: 0 16px;
  }

  .standings-section h2 {
    margin-bottom: 20px;
  }

  .standings-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .standings-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .superligCardsSection {
    padding: 0 16px;
  }

  .superlig-cards-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .superlig-cards-info {
    width: 100%;
  }

  .superlig-cards-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .superlig-cards-description {
    font-size: 14px;
  }

  .superlig-cards-scroll {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .superlig-cards-scroll::-webkit-scrollbar {
    display: none;
  }

  .superlig-card {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    height: 100px !important;
    margin: 0;
    flex-shrink: 0;
  }

  .clubs-section {
    padding: 0 16px;
  }

  .clubs-container {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .clubs-grid {
    gap: 12px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .clubs-card {
    padding: 12px;
    min-width: 120px;
    width: 120px;
    flex: 0 0 120px;
    box-sizing: border-box;
  }

  .clubs-title {
    font-size: 1.2rem;
    padding: 0;
    margin-bottom: 16px;
  }

  .clubs-logo {
    width: 80px;
    height: 70px;
  }

  .sponsors-section {
    padding: 0 16px;
  }

  .sponsors-container {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .sponsors-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 15px 0;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
  }

  .sponsors-bar::-webkit-scrollbar {
    display: none;
  }

  .sponsors-bar:active {
    cursor: grabbing;
  }

  .sponsors-spacer {
    display: block;
    flex-shrink: 0;
    width: 0;
  }

  .sponsors-link {
    flex: 0 0 auto;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .sponsors-logo {
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
  }

  .sponsors-title {
    font-size: 1.2rem;
    padding: 0;
    margin-bottom: 16px;
  }

  .footer {
    padding: 40px 16px 20px;
  }

  .footer .container {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .stories-section {
    padding: 0 12px;
  }

  .story {
    width: 65px;
    height: 65px;
  }

  .story-image {
    width: 59px;
    height: 59px;
  }

  .stories {
    gap: 5px;
    padding: 6px 0;
  }

  .standings-section {
    padding: 0 12px;
    background: #e7f3fe;
    border-radius: 0;
  }

  .standings-grid {
    margin-top: 16px;
  }

  .standings-title,
  .superlig-cards-title {
    font-size: 15px;
  }

  .standings-card {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 12px auto !important;
    box-sizing: border-box;
  }

  .superligCardsSection {
    padding: 0 12px;
  }

  .superlig-card {
    width: 120px !important;
    min-width: 120px !important;
    height: 90px !important;
  }

  .superlig-card-title {
    font-size: 12px;
    margin: 8px 0 8px 0;
  }

  .superlig-cards-section {
    margin-top: 22px;
    gap: 10px;
  }

  .superlig-cards-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .superlig-cards-description {
    font-size: 12px;
  }

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

  .clubs-section,
  .sponsors-section {
    padding: 0 12px;
  }

  .footer {
    padding: 40px 12px 20px;
  }
}

@media (max-width: 500px) {
  .stories-section {
    padding: 0 12px;
  }

  .other-section-header {
    margin-bottom: 0;
  }

  .story {
    width: 60px;
    height: 60px;
  }

  .story-image {
    width: 54px;
    height: 54px;
  }

  .stories {
    gap: 4px;
    padding: 6px 0;
  }

  .slider-section {
    padding: 0;
  }

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

  .slider-text-content {
    padding: 0 12px;
  }

  .matches-section {
    padding: 20px 12px;
  }

  .matches-section .container {
    padding: 0;
  }

  .match-card {
    width: 260px !important;
    min-width: 260px !important;
  }

  .standings-section {
    padding: 20px 12px;
    background: #eaf6fb;
    border-radius: 0;
  }

  .standings-section .container {
    padding: 0;
  }

  .standings-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .superligCardsSection {
    padding: 0 12px;
  }

  .superligCardsSection .container {
    padding: 0;
  }

  .superlig-cards-section {
    gap: 8px;
    margin-top: 15px;
  }

  .superlig-cards-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .superlig-cards-description {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .superlig-cards-info {
    flex: 0 0 100px;
  }

  .superlig-card {
    width: 200px !important;
    min-width: 133px !important;
    height: 250px !important;
  }

  .superlig-card-title {
    font-size: 15px;
    margin: 4px 0 4px 0;
  }

  .superlig-cards-scroll {
    gap: 8px !important;
    padding: 4px 0 !important;
  }

  .clubs-section,
  .sponsors-section {
    padding: 20px 12px;
  }

  .clubs-section .container,
  .sponsors-section .container {
    padding: 0;
  }

  .footer {
    padding: 40px 12px 20px;
  }

  .footer .container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 350px !important;
  }

  .slider-text-content h2 {
    font-size: 20px !important;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .slider-button {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }

  .breadcrumb {
    font-size: 11px;
    margin-bottom: 12px;
  }
}
