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

    html {
      scroll-behavior: smooth;
    }

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

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

    .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: 1600px;
      margin: 0 auto;
      position: relative;
    }

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

    /* Header Gallery - Multiple Images with Opacity */
    .header-gallery {
      margin-top: 70px;
      height: 100vh;
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 0;
      overflow: hidden;
      background-color: black;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
      opacity: 0.5;
      border-radius: 70px;
      padding: 40px;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
      opacity: 0.8;
    }

    /* Different positions for images */
    .gallery-item:nth-child(1) {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
    }

    .gallery-item:nth-child(2) {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
    }

    .gallery-item:nth-child(3) {
      grid-column: 3 / 5;
      grid-row: 1 / 2;
    }

    .gallery-item:nth-child(4) {
      grid-column: 1 / 2;
      grid-row: 2 / 4;
    }

    .gallery-item:nth-child(5) {
      grid-column: 2 / 3;
      grid-row: 3 / 4;
    }

    .gallery-item:nth-child(6) {
      grid-column: 3 / 4;
      grid-row: 2 / 4;
    }

    .gallery-item:nth-child(7) {
      grid-column: 4 / 5;
      grid-row: 2 / 4;
    }

    /* Main Content - New Layout */
    .main-content {
      position: relative;
      max-width: 1600px;
      margin: 10vh auto 0;
      padding: 0 2rem 4rem;
      z-index: 100;
    }

    .profile-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }

    /* Center Image - Spans 2 rows */
    .center-image-container {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      position: relative;
      display: flex;
      align-items: normal;
      justify-content: center;
      padding-top: 2rem;
    }

    .center-portrait {
      width: 100%;
      max-width: 500px;
      border-radius: 40px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.8);
      position: relative;
      z-index: 10;
    }

    .fighter-name-on-image {
      position: absolute;
      bottom: 10%;
      left: 5%;
      z-index: 11;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
    }

    .fighter-name-on-image h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      line-height: 0.9;
      text-transform: uppercase;
      letter-spacing: 5px;
    }

    .fighter-name-on-image .name-first {
      color: white;
    }

    .fighter-name-on-image .name-last {
      color: #d9dc34;
    }

    /* Section Cards */
    .section-card {
      background: rgba(26, 26, 26, 0.95);
      padding: 2.5rem;
      border-radius: 20px;
      backdrop-filter: blur(10px);
    }

    /* PORTRÄT - Top Left */
    .portrait-section {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
    }

    /* STATISTIK - Top Right */
    .stats-section {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
    }

    /* GESCHICHTE - Bottom Left */
    .history-section {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
    }

    /* LETZTE KÄMPFE - Bottom Right */
    .fights-section {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
    }

    /* Section Titles */
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: white;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 1.5rem;
    }

    /* PORTRÄT Content */
    .portrait-content {
      color: #b8b8b8;
      font-size: 0.95rem;
      line-height: 1.7;
      text-align: justify;
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .social-links a {
      color: white;
      font-size: 1.5rem;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: #d9dc34;
    }

    /* STATISTIK Content */
    .stat-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .stat-item:last-child {
      border-bottom: none;
    }

    .stat-label {
      color: #888;
      font-size: 0.95rem;
    }

    .stat-value {
      color: white;
      font-weight: 600;
      font-size: 1rem;
    }

    .stat-value.flag {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* GESCHICHTE Content */
    .history-content {
      color: #b8b8b8;
      font-size: 0.9rem;
      line-height: 1.7;
      text-align: justify;
    }

    .history-content p {
      margin-bottom: 1rem;
    }

    /* LETZTE KÄMPFE Content */
    .fights-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .fight-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .fight-item:last-child {
      border-bottom: none;
    }

    .fight-info {
      flex: 1;
    }

    .fight-date {
      color: #888;
      font-size: 0.85rem;
      margin-bottom: 0.2rem;
    }

    .fight-opponent {
      color: white;
      font-weight: 600;
      font-size: 1rem;
    }

    .fight-result {
      color: #888;
      font-size: 0.85rem;
      white-space: nowrap;
    }

 /* 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);
      font-weight: bold;
    }

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

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

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

    /* Responsive */
    @media (max-width: 1400px) {
      .main-content {
        margin-top: -20vh;
      }
    }

    @media (max-width: 1200px) {
      .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .center-image-container,
      .portrait-section,
      .stats-section,
      .history-section,
      .fights-section {
        grid-column: 1 / 2;
        grid-row: auto;
      }

      .main-content {
        margin-top: 2rem;
      }

      .header-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
      }

      .gallery-item:nth-child(5) {
        display: none;
      }
    }

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

      .header-gallery {
        height: 60vh;
        margin-top: 60px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
      }

      .gallery-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }

      .gallery-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
      }

      .gallery-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
      }

      .gallery-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
      }

      .gallery-item:nth-child(5),
      .gallery-item:nth-child(6),
      .gallery-item:nth-child(7) {
        display: none;
      }

      .main-content {
        padding: 0 1rem 3rem;
      }

      .section-card {
        padding: 1.5rem;
      }

      .section-title {
        font-size: 1.5rem;
      }
    }
  