/* home.css - Specific styles for index.html */


    /* Basic reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
      background: #0a0a0a;
    }

    /* Hero section styles */
    .ms-hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      color: white;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /*background-color: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    .ms-parallax {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .jarallax-img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      filter: grayscale(100%) contrast(120%) brightness(90%);
    }

    /* Fixed Navigation */
    .nav2 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      z-index: 1000;
      padding: 1rem 2rem;
      transition: all 0.3s ease;
    }

    .nav2.scrolled {
      background: rgba(10, 10, 10, 0.98);
      box-shadow: 0 2px 10px rgba(0,0,0,0.5);
      padding: 0.5rem 2rem;
    }

    .nav2 .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    /* Logo Section */
    .logo-section {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      z-index: 1001;
    }

    .logo-section img {
      width: 60px;
      height: 60px;
      transition: all 0.3s ease;
    }

    .nav2.scrolled .logo-section img {
      width: 50px;
      height: 50px;
    }

    .logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: #d9dc34;
      font-weight: bold;
      text-decoration: none;
      transition: font-size 0.3s ease;
    }

    .nav2.scrolled .logo-text {
      font-size: 1.3rem;
    }

    /* Menu Section */
    .menu-section {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .menu-section ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .menu-section a {
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 600;
      position: relative;
      transition: color 0.3s;
      white-space: nowrap;
    }

    .menu-section a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #d9dc34;
      transition: width 0.3s ease;
    }

    .menu-section a:hover::after {
      width: 100%;
    }

    /* Flags Section */
    .flags-section {
      display: flex;
      gap: 0.8rem;
      align-items: center;
    }

    .flag {
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      border-radius: 3px;
    }

    .flag:hover {
      transform: scale(1.1);
      border-color: rgba(255,255,255,0.3);
    }

    .flag.active {
      border-color: #d9dc34;
      box-shadow: 0 0 10px rgba(217, 220, 52, 0.5);
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 3px;
    }

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

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

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

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 10, 0.98);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right 0.4s ease;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu ul {
      list-style: none;
      text-align: center;
      padding: 0;
    }

    .mobile-menu ul li {
      margin: 2rem 0;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      font-size: 2rem;
      font-weight: 600;
      font-family: 'Bebas Neue', sans-serif;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: #d9dc34;
    }

    .mobile-flags {
      display: flex;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    /* NEW Home Section - Split Design */
    #home {
      /* min-height: 100vh; */
      display: flex;
      align-items: center;
      background: #0a0a0a;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .home-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 6rem 2rem 4rem;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .home-content {
      z-index: 2;
    }

    .home-subtitle {
      font-size: 1rem;
      color: #d9dc34;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .home-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 8vw, 5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: white;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .home-title .highlight {
      color: #d9dc34;
      display: block;
    }

    .home-description {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      line-height: 1.8;
      margin-bottom: 2.5rem;
      color: #b8b8b8;
    }

    .home-cta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 2.5rem;
      background: #d9dc34;
      color: #0a0a0a;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 700;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(217, 220, 52, 0.4);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .home-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(217, 220, 52, 0.6);
      background: #c5c82f;
    }

    .home-cta::after {
      content: '→';
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .home-cta:hover::after {
      transform: translateX(5px);
    }

    /* Stats Section - New Design */
    .stats-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.03);
      border-left: 4px solid #d9dc34;
      border-radius: 10px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .stat-item:hover {
      transform: translateX(10px);
      background: rgba(255, 255, 255, 0.05);
      border-left-width: 6px;
      box-shadow: 0 5px 20px rgba(217, 220, 52, 0.2);
    }

    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: #d9dc34;
      line-height: 1;
      min-width: 100px;
    }

    .stat-label {
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #fffdfd;
    }

    /* History Section with Horizontal Scroll */
    #history {
      padding: 5rem 0;
      background: #0f0f0f;
      color: white;
    }

    #history h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      text-align: center;
      margin-bottom: 3rem;
      color: #d9dc34;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .fights-container {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .fights-scroll-wrapper {
      position: relative;
      overflow: hidden;
    }

    .fights-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 1rem 0 2rem 0;
    }

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

    .fight-card {
      min-width: 350px;
      flex-shrink: 0;
      background: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      transition: all 0.3s ease;
      border: 1px solid rgba(255,255,255,0.05);
    }

    .fight-card:hover {
      transform: translateY(-10px);
      /*box-shadow: 0 20px 40px rgba(217, 220, 52, 0.3);*/
      border-color: rgba(217, 220, 52, 0.3);
    }

    .fight-card img {
      min-width: 100%;
      height: 350px;
      object-position: top;
      object-fit: cover;
      filter: grayscale(100%);
      transition: transform 0.3s ease;
    }

    .fight-card:hover img {
      transform: scale(1.05);
      filter:grayscale(0%)
    }

    .fight-info {
      padding: 1.5rem;
      text-align: center;
    }

    .fight-info h5 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #d9dc34;
      letter-spacing: 1px;
    }

    .fight-info .year {
      font-size: 1rem;
      color: #888;
      margin-bottom: 1rem;
    }

    .fight-result {
      display: inline-block;
      padding: 0.6rem 1.5rem;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .fight-result.win {
      background: linear-gradient(135deg, #00b894, #00cec9);
      color: white;
      box-shadow: 0 3px 15px rgba(0, 184, 148, 0.4);
    }

    .fight-result.loss {
      background: linear-gradient(135deg, #636e72, #2d3436);
      color: white;
      box-shadow: 0 3px 15px rgba(99, 110, 114, 0.4);
    }

    /* Scroll Arrows */
    .scroll-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(217, 220, 52, 0.9);
      border: none;
      border-radius: 50%;
      color: #0a0a0a;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .scroll-arrow:hover {
      background: #d9dc34;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 5px 20px rgba(217, 220, 52, 0.5);
    }

    .scroll-arrow.left {
      left: 1rem;
    }

    .scroll-arrow.right {
      right: 1rem;
    }

    .scroll-arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .scroll-arrow:disabled:hover {
      transform: translateY(-50%);
      background: rgba(217, 220, 52, 0.9);
    }

    /* About Section */
    #about {
      padding: 5rem 2rem;
      background: #0a0a0a;
      color: white;
    }

    #about h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      text-align: center;
      margin-bottom: 2rem;
      color: #d9dc34;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .about-content {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      font-size: clamp(1.1rem, 2vw, 2rem);
      line-height: 1.9;
      color: #fffdfd;
    }

    .about-content p {
      margin-bottom: 1.5rem;
    }

    .about-tagline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: #d9dc34;
      margin-top: 2rem;
      letter-spacing: 5px;
      text-transform: uppercase;
    }

    /* Footer */
    footer {
      background: #050505;
      color: #888;
      padding: 3rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    footer img {
      width: 100px;
      margin-bottom: 1.5rem;
      transition: transform 0.3s ease;
    }

    footer img:hover {
      transform: scale(1.1);
    }

    footer p {
      margin-bottom: 1rem;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    footer a {
      color: #d9dc34;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    footer a:hover {
      color: #c5c82f;
      text-decoration: underline;
    }

    .footer-links {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      border: 1px solid #d9dc34;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      background: #d9dc34;
      color: #0a0a0a;
      text-decoration: none;
    }

    /* Back to Top Button */
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 55px;
      height: 55px;
      background: #d9dc34;
      color: #0a0a0a;
      border: none;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
      box-shadow: 0 5px 20px rgba(217, 220, 52, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    #backToTop.visible {
      opacity: 1;
      visibility: visible;
    }

    #backToTop:hover {
      background: #c5c82f;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(217, 220, 52, 0.6);
    }

    #backToTop::before {
      content: '↑';
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .menu-section ul {
        gap: 1.5rem;
      }

      .menu-section a {
        font-size: 1rem;
      }

      .fight-card {
        min-width: 320px;
      }
    }

    @media (max-width: 768px) {
      .nav2 {
        padding: 1rem;
      }

      .nav2.scrolled {
        padding: 0.75rem 1rem;
      }

      .menu-section,
      .flags-section {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .logo-section img {
        width: 50px;
        height: 50px;
      }

      .logo-text {
        font-size: 1.2rem;
      }

      /* Home Section Mobile */
      .home-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 1.5rem 3rem;
      }

      .stat-item {
        padding: 1.5rem;
        gap: 1.5rem;
      }

      .stat-number {
        font-size: 3rem;
        min-width: 80px;
      }

      .stat-label {
        font-size: 1.1rem;
      }

      /* History Section Mobile */
      .fight-card {
        min-width: 280px;
      }

      .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .scroll-arrow.left {
        left: 0.5rem;
      }

      .scroll-arrow.right {
        right: 0.5rem;
      }

      #history,
      #about {
        padding: 4rem 1rem;
      }

      footer {
        padding: 2rem 1rem;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }

      .footer-links a {
        display: block;
        width: fit-content;
        margin: 0 auto;
      }

      /* Back to Top Button Mobile */
      #backToTop {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .ms-hero {
        height: 70vh;
      }

      .home-container {
        padding: 4rem 1rem 2rem;
      }

      .fight-card {
        min-width: 260px;
      }

      .fight-card img {
        height: 250px;
      }

      #backToTop {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
      }
    }

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

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