 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

 /* General Body */
 body {
     background-color: #ffffff;
     overflow-x: hidden;
 }

 /* Hero Styles */
 .hero {
     background-image: url('../bannera/sport.png');
     /* Stadium/Crowd image */
     background-repeat: no-repeat;
     background-size: cover;
     height: 751px;
     background-color: rgba(0, 0, 0, 0.75);
     background-blend-mode: overlay;
 }

 .teksti {
     width: 100%;
     height: 551px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
 }

 .teksti h1 {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 60px;
     padding-bottom: 20px;
     letter-spacing: 1px;
 }

 .teksti p {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 16px;
     width: 50%;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.9);
 }

 .teksti button {
     margin-top: 30px;
     width: 165px;
     height: 45px;
     border: none;
     background-color: rgb(198, 176, 105);
     color: white;
     font-size: 13px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     cursor: pointer;
     border-radius: 10px;
     transition: 0.3s;
 }

 .teksti button:hover {
     background-color: transparent;
     border: 1px solid white;
 }

 /* Marquee */
 .marquee-container {
     background: rgb(198, 176, 105);
     padding: 15px 0;
     overflow: hidden;
     white-space: nowrap;
 }

 .marquee-content {
     display: inline-block;
     animation: marquee 25s linear infinite;
 }

 .marquee-content span {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     text-transform: uppercase;
     letter-spacing: 5px;
     font-size: 14px;
     color: #0a0a0a;
     padding: 0 50px;
 }

 @keyframes marquee {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* Stats Section */
 .stats-section {
     padding: 60px 10%;
     background: white;
     display: flex;
     justify-content: space-between;
     border-bottom: 1px solid #eee;
 }

 .stat-box {
     text-align: center;
 }

 .stat-number {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 50px;
     color: #0a0a0a;
     line-height: 1;
     margin-bottom: 10px;
 }

 .stat-label {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: #888;
 }

 /* Section Headers */
 .section-header-flex {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 50px;
 }

 .title-dark {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 48px;
     color: #0a0a0a;
     line-height: 1;
 }

 .view-all-btn {
     border: 1px solid #ddd;
     padding: 10px 30px;
     color: #0a0a0a;
     text-decoration: none;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 12px;
     letter-spacing: 2px;
     transition: 0.3s;
 }

 .view-all-btn:hover {
     background: #0a0a0a;
     border-color: #0a0a0a;
     color: white;
 }

 /* Feature Story Section (Football) */
 .feature-story {
     padding: 80px 5%;
     background: #fafafa;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .feature-img-box {
     position: relative;

 }

 .feature-img-box:hover img {
     transform: scale(1.05);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .feature-img-box img {
     width: 100%;
     height: 600px;
     object-fit: cover;
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     border-radius: 10px;
 }

 .feature-text-box h2 {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 42px;
     color: #0a0a0a;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .feature-text-box .highlight {
     color: rgb(198, 176, 105);
     font-style: italic;
 }

 .feature-text-box p {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 15px;
     color: #555;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .feature-tag {
     display: inline-block;
     padding: 5px 15px;
     background: #0a0a0a;
     color: white;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 15px;
 }

 /* Sports Grid (Other Sports) */
 .sports-grid-section {
     padding: 80px 5%;
     background: white;
 }

 .sports-bento-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     grid-template-rows: repeat(2, 300px);
     gap: 20px;
 }

 .sport-card {
     position: relative;
     overflow: hidden;
     cursor: pointer;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 /* Layout Config */
 .sc-1 {
     grid-column: span 2;
     grid-row: span 1;
 }

 .sc-2 {
     grid-column: span 1;
     grid-row: span 2;
 }

 .sc-3 {
     grid-column: span 1;
 }

 .sc-4 {
     grid-column: span 1;
 }

 .sport-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
     filter: grayscale(50%);
 }

 .sport-card:hover img {
     transform: scale(1.05);
     filter: grayscale(0%);
 }

 .sport-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 30px;
     transition: 0.3s;
 }

 .sport-title {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 28px;
     color: white;
     margin-bottom: 5px;
 }

 .sport-desc {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.8);
     transform: translateY(20px);
     opacity: 0;
     transition: 0.4s;
 }

 .sport-card:hover .sport-desc {
     transform: translateY(0);
     opacity: 1;
 }

 /* Athletes Section (Clean Grid) */
 .athletes-section {
     padding: 80px 5%;
     background: #ffffff;
 }

 .athletes-clean-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .athlete-card {
     position: relative;
     overflow: hidden;
     cursor: pointer;
     aspect-ratio: 3/4;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .athlete-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
     filter: grayscale(100%);
 }

 .athlete-card:hover img {
     transform: scale(1.1);
     filter: grayscale(0%);
 }

 .athlete-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
     padding: 100px 20px 20px;
     transform: translateY(40px);
     opacity: 0;
     transition: all 0.4s ease;
 }

 .athlete-card:hover .athlete-overlay {
     transform: translateY(0);
     opacity: 1;
 }

 .athlete-name {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 22px;
     color: white;
     margin-bottom: 5px;
 }

 .athlete-sport {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 11px;
     color: rgb(198, 176, 105);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 10px;
     display: block;
 }

 .athlete-achievement {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.5;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     padding-top: 10px;
     margin-top: 5px;
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .sports-bento-grid {
         grid-template-columns: 1fr 1fr;
         grid-template-rows: auto;
     }

     .sc-1 {
         grid-column: span 2;
     }

     .sc-2 {
         grid-row: span 1;
     }

     .athletes-clean-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .feature-story {
         grid-template-columns: 1fr;
     }

     .feature-img-box img {
         height: 400px;
     }
 }

 @media (max-width: 768px) {
     .hero {
         height: auto;
         padding-bottom: 40px;
     }

     .teksti {
         height: auto;
         padding: 100px 20px;
     }

     .teksti p {
         width: 100%;
     }

     .stats-section {
         flex-direction: column;
         gap: 30px;
     }

     .feature-story {
         padding: 40px 5%;
     }

     .sports-bento-grid {
         grid-template-columns: 1fr;
     }

     .sc-1,
     .sc-2,
     .sc-3,
     .sc-4 {
         grid-column: span 1;
         height: 250px;
     }

     .athletes-clean-grid {
         grid-template-columns: 1fr;
     }

     .cursor {
         display: none;
     }
 }