/* 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: flex-start;
  flex-wrap: nowrap !important;
  gap: 9px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 12px 10px;
  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: 660px;
  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%;
  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: 0px 20px 0 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: 1.5rem;
  color: #0d3b66;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

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

.news-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  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: 30px 0 0 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: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.clubs-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  flex: 1;
}

.clubs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #005EB4;
}

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

.league-card {
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.league-card .clubs-logo,
.league-card .league-icon {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.league-card:hover .clubs-logo,
.league-card:hover .league-icon {
  transform: scale(1.05);
}

.league-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.league-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.league-teams-count {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  text-align: center;
  background: #f8f9fa;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Leagues Section Home - Premium / şatafatlı tasarım */
.leagues-section-home {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.leagues-section-home-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a1628 0%, #0d3b66 35%, #0a2744 70%, #061a2d 100%);
  z-index: 0;
}

.leagues-section-home-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 94, 180, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(0, 94, 180, 0.15) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.leagues-section-home-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 600px);
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37 20%, #f0d875 50%, #d4af37 80%, transparent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  z-index: 2;
}

.leagues-section-home .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.leagues-section-home-header {
  text-align: center;
  margin-bottom: 3rem;
}

.leagues-section-home-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 1rem;
}

.leagues-section-home-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.leagues-section-home-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-wrap-mode: nowrap;
}

.leagues-section-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.league-card-home {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.league-card-home-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.league-card-home:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.league-card-home:hover .league-card-home-glow {
  opacity: 1;
}

.league-card-home-visual {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.league-card-home-visual::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 94, 180, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.league-card-home:hover .league-card-home-visual::before {
  opacity: 1;
}

.league-card-home-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: transform 0.35s ease;
}

.league-card-home:hover .league-card-home-icon {
  transform: scale(1.08);
}

.league-card-home-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #005EB4 0%, #0d3b66 50%, #0a2744 100%);
  color: #f0d875;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.league-card-home:hover .league-card-home-placeholder {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.2);
}

.league-card-home-body {
  text-align: center;
  position: relative;
  z-index: 1;
}

.league-card-home-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem 0;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.league-card-home-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(212, 175, 55, 0.2);
  color: #f0d875;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .leagues-section-home {
    padding: 3rem 0 4rem;
  }

  .leagues-section-home-header {
    margin-bottom: 2rem;
  }

  .leagues-section-home-badge {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.85rem;
  }

  .leagues-section-home-subtitle {
    font-size: 0.95rem;
  }

  .leagues-section-home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .league-card-home {
    padding: 1.25rem 1rem;
  }

  .league-card-home-visual {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
  }

  .league-card-home-placeholder {
    font-size: 1.15rem;
  }

  .league-card-home-name {
    font-size: 1rem;
  }
}

.league-name-placeholder {
  font-size: 18px;
  font-weight: 700;
  color: #005EB4;
  text-align: center;
  padding: 20px 10px;
  margin-bottom: 12px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sponsors Section (Home Page) */
.sponsors-section {
  margin-top: 100px;
  padding: 20px 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;
}

@media (max-width: 768px) {
  .sponsors-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.sponsors-bar {
  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-link {
    background-color: #f1f3f5;
    border-radius: 12px;
    padding: 20px 40px;
  }
}

.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);
}

/* Present Section (NE SUNUYORUZ) Re-design */
.present-section {
  padding: clamp(60px, 5vh, 180px) 0;
  background: #0a0e27;
  position: relative;
  overflow: hidden;
}

.present-section-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 94, 180, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.3) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.present-section-header {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 1;
}

.present-section .mobile-title-override {
  font-size: clamp(40px, 6vw, 64px);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.present-section-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .present-section {
    padding: 80px 0;
  }

  .present-section-header {
    margin-bottom: 50px;
  }
}

/* What We Offer Grid - Stripe/Vercel Style Premium UI */
.what-we-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.offer-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.offer-card:nth-child(1) {
  animation-delay: 0.05s;
}

.offer-card:nth-child(2) {
  animation-delay: 0.1s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.15s;
}

.offer-card:nth-child(4) {
  animation-delay: 0.2s;
}

.offer-card:nth-child(5) {
  animation-delay: 0.25s;
}

.offer-card:nth-child(6) {
  animation-delay: 0.3s;
}

.offer-card:nth-child(7) {
  animation-delay: 0.35s;
}

.offer-card:nth-child(8) {
  animation-delay: 0.4s;
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 94, 180, 0.5), rgba(0, 132, 255, 0.5), rgba(34, 197, 94, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 94, 180, 0.2), rgba(0, 132, 255, 0.2), rgba(34, 197, 94, 0.2));
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: -1;
}

.offer-card:hover {
  transform: translateY(-16px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 32px 80px rgba(0, 94, 180, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-card:hover::after {
  opacity: 1;
}

.offer-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 94, 180, 0.2) 0%, rgba(0, 132, 255, 0.2) 50%, rgba(34, 197, 94, 0.2) 100%);
}

.offer-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.offer-card:hover .offer-image-wrapper img {
  transform: scale(1.2) rotate(1deg);
}

.offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.6s ease;
}

.offer-card:hover .offer-overlay {
  background: linear-gradient(180deg,
      rgba(0, 94, 180, 0.3) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.85) 100%);
}

.offer-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(0, 94, 180, 0.4) 0%,
      rgba(0, 132, 255, 0.2) 30%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.offer-card:hover .offer-gradient {
  opacity: 1;
}


.offer-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.offer-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: all 0.4s ease;
}

.offer-card:hover .offer-title {
  color: #ffffff;
  transform: translateX(4px);
}

.offer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px 0;
  flex: 1;
  transition: all 0.4s ease;
}

.offer-card:hover .offer-description {
  color: rgba(255, 255, 255, 0.9);
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.offer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.offer-link svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.offer-card:hover .offer-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.offer-card:hover .offer-link::before {
  left: 100%;
}

.offer-card:hover .offer-link svg {
  transform: translateX(6px);
}

.offer-summary {
  max-width: 1000px;
  margin: 80px auto 0;
  padding: clamp(40px, 6vw, 60px);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.offer-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 94, 180, 0.3), rgba(0, 132, 255, 0.3), rgba(34, 197, 94, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.offer-summary p {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (max-width: 1400px) {
  .what-we-offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .what-we-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .present-section {
    padding: 60px 0;
  }

  .present-section-background {
    display: none;
  }

  .what-we-offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0;
  }

  .offer-card {
    border-radius: 20px;
  }

  .offer-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .offer-image-wrapper {
    height: 220px;
  }


  .offer-content {
    padding: 24px 20px;
  }

  .offer-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .offer-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .offer-link {
    font-size: 14px;
    padding: 12px 18px;
    width: 100%;
    justify-content: center;
  }

  .offer-summary {
    padding: 32px 20px;
    margin-top: 50px;
    border-radius: 20px;
  }

  .offer-summary p {
    font-size: 16px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-color: #005eb4;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 40px;
  color: white;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(5px);
}

.service-overlay h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  transform: translateY(120px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: inline-block;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animated Title Underline */
.service-overlay h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #005eb4, #0084ff);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.service-card:hover .service-overlay h3::after {
  width: 60px;
}

.service-overlay p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(150px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  max-width: 85%;
}

.service-card:hover .service-overlay h3,
.service-card:hover .service-overlay p,
.service-card:hover .service-discover {
  transform: translateY(0);
}

.service-card:hover .service-overlay p {
  opacity: 1;
}

.service-discover {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  opacity: 0;
  transform: translateY(180px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.service-discover span {
  width: 34px;
  height: 34px;
  background: #005eb4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 94, 180, 0.4);
  transition: all 0.3s ease;
}

.service-card:hover .service-discover {
  opacity: 1;
}

.service-card:hover .service-discover span {
  transform: translateX(8px);
  background: #0084ff;
}

/* Make some cards larger for bento style */
@media (min-width: 1024px) {

  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(4) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .present-section {
    padding: 60px 20px;
  }

  .present-section .mobile-title-override {
    font-size: 32px;
  }

  .service-card {
    height: 350px;
  }
}

/* Sporex Section Re-design */
.sporex-section {
  padding: 100px 30px 0;
  background-color: #042d51;
  color: white;
  position: relative;
}

.sporex-section .container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

@media (max-width: 991px) {
  .sporex-section .container {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }
}

.sporex-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 150px;
  height: fit-content;
}

@media (max-width: 1023px) {
  .sporex-image-side {
    position: static;
    width: 100%;
    padding: 40px 0;
  }
}

.sporex-cards-deck {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 520px;
  perspective: 2000px;
  /* Increased for better depth */
}

.sporex-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  /* More rounded as in image */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(150px) rotate(-15deg) scale(0.8);
  pointer-events: none;
}

.sporex-card.stacked {
  opacity: 1;
  pointer-events: auto;
}

.sporex-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stacking Order and Positions to match the image (Fanned to top-left) */
.card-bottom.stacked {
  z-index: 1;
  transform: translate(-45px, -35px) rotate(-12deg) scale(0.95);
  opacity: 0.6;
}

.card-middle.stacked {
  z-index: 2;
  transform: translate(-22px, -18px) rotate(-6deg) scale(0.98);
  opacity: 0.8;
}

.card-top.stacked {
  z-index: 3;
  transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Hover tweak on the final stack */
.sporex-cards-deck:hover .card-top.stacked {
  transform: scale(1.02);
}

.sporex-cards-deck:hover .card-middle.stacked {
  transform: translate(-30px, -25px) rotate(-8deg) scale(0.98);
}

.sporex-cards-deck:hover .card-bottom.stacked {
  transform: translate(-60px, -50px) rotate(-15deg) scale(0.95);
}

/* Decorative Shine Effect on Top Card */
.card-overlay-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 4;
  pointer-events: none;
}

/* Responsive adjustment for the deck height */
@media (max-width: 768px) {
  .sporex-cards-deck {
    height: 400px;
    max-width: 320px;
    margin: 0 auto;
  }
}

.sporex-text-side {
  flex: 1.4;
  padding-bottom: 50px;
  /* Reduced from 200px */
}

.scroll-trigger {
  margin-bottom: 40px;
  /* Reduced from 100px */
  min-height: auto;
  /* Removed fixed min-height */
}

.sporex-section .mobile-title-override {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sporex-section .mobile-title-override {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.sporex-content-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sporex-content-box .paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #005eb4;
}

.sporex-header-group {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sporex-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #0084ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sporex-main-description {
  margin-bottom: 50px;
}

.sporex-main-description p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
}

.sporex-interactive-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  display: flex;
  min-height: 380px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.sporex-tabs {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 15px;
}

.sporex-tab {
  padding: 18px 25px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.tab-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tab-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.sporex-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.sporex-tab.active {
  background: #005eb4;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 94, 180, 0.3);
}

.sporex-tab.active .tab-dot {
  background: #fff;
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.sporex-tab-content {
  flex: 1;
  padding: 50px;
  display: flex;
  align-items: center;
}

.tab-pane {
  display: none;
  animation: tabFadeIn 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane h4 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.tab-pane p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.sporex-footer-simple {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sporex-footer-simple p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* SPOREXCAPITAL Features List Styles */
.sporex-features-list {
  margin: 50px 0;
}

.sporex-features-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.3;
}

.sporex-feature-item {
  display: flex;
  gap: 24px;
  margin-bottom: 35px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sporex-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.feature-number {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.feature-content {
  flex: 1;
}

.feature-heading {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* SPOREXCAPITAL Products Section */
.sporex-products-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #042d51 0%, #0a1a2e 100%);
  position: relative;
}

.sporex-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Compact product cards (BUSINESSPRO, THE FORUM, ACADEMIC FORUM) */
.sporex-products-compact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sporex-products-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sporex-product-card-compact {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sporex-product-card-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-compact-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sporex-product-card-compact:hover .product-compact-image img {
  transform: scale(1.05);
}

.product-compact-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-compact-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-compact-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product-compact-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.product-compact-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.product-compact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #005EB4;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
  width: fit-content;
}

.product-compact-btn:hover {
  background: #004a8f;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .sporex-products-grid-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-compact-image {
    height: 180px;
  }

  .product-compact-body {
    padding: 1.25rem;
  }
}

.sporex-product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.sporex-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sporex-product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 45, 81, 0.8) 100%);
  pointer-events: none;
}

.product-content {
  padding: 32px;
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  color: #fff;
}

.product-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 132, 255, 0.2);
  border: 1px solid rgba(0, 132, 255, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #0084ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  width: fit-content;
}

.product-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-style: italic;
}

.product-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px 0;
}

.product-features {
  margin: 30px 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0084ff;
  font-weight: 700;
  font-size: 16px;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.product-conclusion {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-conclusion p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px 0;
}

.product-conclusion p:last-child {
  margin-bottom: 0;
}

.product-conclusion strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .sporex-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .sporex-products-section {
    padding: 60px 0;
  }

  .sporex-products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .sporex-features-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .sporex-feature-item {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    margin-bottom: 24px;
  }

  .feature-number {
    font-size: 28px;
  }

  .feature-heading {
    font-size: 20px;
  }

  .feature-description {
    font-size: 16px;
  }

  .product-content {
    padding: 24px;
  }

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

  .product-subtitle {
    font-size: 16px;
  }

  .product-description {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .sporex-section {
    padding: 60px 0;
  }

  .sporex-section .container {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }

  .sporex-text-side {
    width: 100%;
    padding: 0 20px;
  }

  .sporex-header-group {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .sporex-section .mobile-title-override {
    text-align: left !important;
    font-size: 30px;
    margin-bottom: 5px;
  }

  .sporex-subtitle {
    text-align: left;
    font-size: 12px;
  }

  .sporex-main-description p {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }

  .sporex-interactive-box {
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
    margin: 0 -10px;
    /* Slight bleed for better tab space */
  }

  .sporex-tabs {
    flex: none;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    scrollbar-width: none;
    gap: 8px;
  }

  .sporex-tabs::-webkit-scrollbar {
    display: none;
  }

  .sporex-tab {
    flex-shrink: 0;
    padding: 12px 18px;
    margin-bottom: 0;
    white-space: nowrap;
    border-radius: 12px;
  }

  .sporex-tab-content {
    padding: 25px 20px;
    text-align: left;
    width: 100%;
  }

  .tab-pane h4 {
    font-size: 20px;
    margin-bottom: 12px;
    text-align: left;
    white-space: normal;
    line-height: 1.3;
  }

  .tab-pane p {
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
  }
}

/* Sponsorship News Re-design (Showcase Slider) */
.sponsorship-news {
  padding: 80px 0;
  background: white;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.news-header .mobile-title-override {
  margin-bottom: 0 !important;
  text-align: left !important;
}

.news-nav {
  display: flex;
  gap: 12px;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: white;
  color: #1a1a1a;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.nav-arrow:hover {
  background: #005eb4;
  color: white;
  border-color: #005eb4;
  transform: scale(1.1);
}

.news-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 10px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

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

.news-empty-state {
  min-width: 100%;
  padding: 3rem 1rem;
  text-align: center;
  color: #666;
}

.news-empty-state .card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #005eb4;
  font-weight: 600;
}

.news-empty-state .card-action-btn:hover {
  text-decoration: underline;
}

.news-showcase-card {
  min-width: calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border: 1px solid #f8f8f8;
  scroll-snap-align: start;
}

.news-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-image-box {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-showcase-card:hover .card-image-box img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  color: #005eb4;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-details {
  padding: 30px;
}

.card-text-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 57px;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.card-action-btn span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.news-showcase-card:hover .card-action-btn {
  color: #005eb4;
}

.news-showcase-card:hover .card-action-btn span {
  background: #005eb4;
  color: white;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .news-showcase-card {
    min-width: 280px;
    width: 280px;
  }

  .card-image-box {
    height: 200px;
  }

  .card-text-title {
    font-size: 18px;
    height: 48px;
  }
}

/* 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) {

  .stories-section,
  .slider-section,
  .matches-section,
  .standings-section,
  .superligCardsSection,
  .clubs-section,
  .sponsors-section,
  .news-section,
  .present-section,
  .sporex-section {
    padding: 40px 16px;
  }

  .home-page {
    overflow-x: hidden;
  }

  .stories-section {
    padding: 10px 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 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
  }

  .clubs-card {
    padding: 25px 15px;
    min-width: 0;
    width: 100%;
    flex: none;
    box-sizing: border-box;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
  }

  .league-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: 240px;
  }

  .league-info {
    margin-top: 15px;
  }

  .league-title {
    font-size: 16px;
    margin-bottom: 5px;
  }



  .clubs-title {
    font-size: 1.5rem;
    padding: 0;
    margin-bottom: 20px;
    font-weight: 800;
  }

  .mobile-title-override {
    font-size: 24px !important;
    text-align: left !important;
  }

  .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: 20px;
    font-weight: 800;
    text-align: left;
  }

  .sponsors-link {
    padding: 15px 30px;
  }

  .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;
  }
}

/* ============================================
   ECOSYSTEM PARTNERSHIP SECTION
   ============================================ */

.ecosystem-partnership-section {
  padding: clamp(120px, 15vh, 180px) 0;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  position: relative;
  overflow: hidden;
}

.ecosystem-partnership-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eco-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 94, 180, 0.3) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: floatOrb 20s ease-in-out infinite;
  animation-delay: 0s;
}

.eco-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.25) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  animation: floatOrb 25s ease-in-out infinite;
  animation-delay: 5s;
}

.ecosystem-partnership-header {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 1;
}

.ecosystem-partnership-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem-partnership-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.ecosystem-partnership-content {
  max-width: 1000px;
  margin: 0 auto clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 1;
}

.ecosystem-partnership-lead {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
  font-weight: 400;
}

.ecosystem-partnership-note {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-style: italic;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  border-left: 4px solid rgba(0, 94, 180, 0.5);
}

.ecosystem-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ecosystem-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ecosystem-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #005eb4, #0084ff, #22c55e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.ecosystem-benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 60px rgba(0, 94, 180, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.ecosystem-benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1;
}

.benefit-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   CORPORATE PARTNERSHIP SECTION
   ============================================ */

.corporate-partnership-section {
  padding: clamp(120px, 15vh, 180px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.corporate-partnership-header {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 100px);
}

.corporate-partnership-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.corporate-partnership-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #64748b;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.corporate-partnership-content {
  max-width: 1000px;
  margin: 0 auto clamp(60px, 8vh, 100px);
}

.corporate-partnership-lead {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  color: #334155;
  margin: 0 0 32px 0;
  font-weight: 400;
}

.corporate-partnership-note {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  color: #475569;
  margin: 0;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 94, 180, 0.05) 0%, rgba(0, 132, 255, 0.05) 100%);
  border: 1px solid rgba(0, 94, 180, 0.1);
  border-radius: 24px;
  border-left: 4px solid #005eb4;
}

.corporate-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto clamp(60px, 8vh, 100px);
}

.corporate-benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.corporate-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 94, 180, 0.12);
  border-color: rgba(0, 94, 180, 0.2);
}

.corporate-benefit-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, #005eb4, #0084ff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.corporate-benefit-check svg {
  width: 18px;
  height: 18px;
}

.corporate-benefit-text {
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
  font-weight: 500;
}

.corporate-partnership-footer {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.corporate-partnership-footer-text {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  color: #64748b;
  margin: 0;
  font-style: italic;
}

/* ============================================
   DIGITAL BRAND SPACE SECTION
   ============================================ */

.digital-brand-section {
  padding: clamp(120px, 15vh, 180px) 0;
  background: linear-gradient(180deg, #0a0e27 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.digital-brand-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.brand-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.brand-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.25) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 7s;
}

.brand-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 50%;
  animation-delay: 14s;
}

.digital-brand-header {
  text-align: center;
  margin-bottom: clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 1;
}

.digital-brand-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.digital-brand-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.digital-brand-content {
  max-width: 1000px;
  margin: 0 auto clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 1;
}

.digital-brand-lead {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px 0;
  font-weight: 600;
  text-align: center;
}

.digital-brand-description {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
}

.digital-brand-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto clamp(80px, 10vh, 120px);
  position: relative;
  z-index: 1;
}

.digital-brand-feature {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.digital-brand-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(0, 132, 255, 0.1));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.digital-brand-feature:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 60px rgba(99, 102, 241, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.4);
}

.digital-brand-feature:hover::before {
  opacity: 1;
}

.digital-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.digital-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.digital-brand-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto clamp(60px, 8vh, 100px);
  padding: 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.digital-stat-item {
  text-align: center;
  flex: 1;
}

.digital-stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.digital-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 4px 0;
}

.digital-stat-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.digital-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

.digital-brand-conclusion {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.digital-brand-conclusion-text {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {

  .ecosystem-benefits-grid,
  .digital-brand-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .ecosystem-partnership-section,
  .corporate-partnership-section,
  .digital-brand-section {
    padding: 80px 0;
  }

  .ecosystem-benefits-grid,
  .digital-brand-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecosystem-benefit-card,
  .digital-brand-feature {
    padding: 32px 24px;
  }

  .corporate-benefit-item {
    padding: 24px;
  }

  .digital-brand-stats {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }

  .digital-stat-divider {
    width: 60px;
    height: 1px;
  }

  .ecosystem-partnership-note,
  .corporate-partnership-note {
    padding: 24px;
  }
}

/* Animations */
@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.4;
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.25;
  }
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
}

/* Featured Sponsors Section - Modern 2x2 Grid */
.featured-sponsors-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #0a1128 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.featured-sponsors-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 94, 180, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.featured-sponsors-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.featured-sponsors-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 94, 180, 0.5);
}

.featured-sponsors-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sponsor-feature-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sponsor-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sponsor-feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 94, 180, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.sponsor-feature-card:hover::after {
  background: linear-gradient(45deg, #005eb4, transparent, #005eb4);
  opacity: 1;
}

.sponsor-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sponsor-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.8s ease;
}

.sponsor-feature-card:hover .sponsor-card-bg img {
  transform: scale(1.1);
}

.sponsor-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

.sponsor-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sponsor-logo-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sponsor-logo-box img {
  max-width: 85%;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.sponsor-feature-card:hover .sponsor-logo-box img {
  transform: scale(1.05);
}

.sponsor-logo-box .white-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}

.sponsor-text-logo {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 0, 0, 1);
  letter-spacing: 0.15em;
  margin: 0;
}

.sponsor-info-bottom {
  margin-top: auto;
  width: 100%;
}

.sponsor-info-bottom h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sponsor-type {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.sponsor-feature-card:hover .sponsor-type {
  background: rgba(0, 94, 180, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .featured-sponsors-grid {
    gap: 30px;
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .featured-sponsors-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .sponsor-feature-card {
    height: 350px;
  }

  .featured-sponsors-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .featured-sponsors-section {
    padding: 60px 0;
  }

  .sponsor-card-content {
    padding: 30px;
  }

  .sponsor-text-logo {
    font-size: 2rem;
  }

  .sponsor-info-bottom h3 {
    font-size: 1.4rem;
  }

  .sponsor-type {
    font-size: 0.8rem;
    padding: 6px 18px;
  }
}

@import url('home_sponsors.css');

/* Hide old sections */
.news-section.sponsorship-news,
.brand-partnerships-section {
  display: none !important;
}