body {
    background-color: black;
    color: white;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

#mobileNav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 70; 
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 65; 
    background: rgba(0, 0, 0, 0.95);
}
  
  .mobile-menu {
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      height: 60vh;
      background: rgba(0, 0, 0, 0.95);
      padding: 1.5rem;
      transform: translateY(-150%);
      transition: transform 0.3s ease;
      z-index: 40;
  }

  .mobile-menu.active {
      transform: translateY(0);
  }

  .mobile-menu ul {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
  }

  .mobile-menu .nav-link {
      display: block;
      text-align: center;
      font-size: 1.2rem;
      color: white;
      transition: color 0.3s ease;
      padding: 0.75rem;
      width: 100%;
  }
  .nav-link {
      position: relative;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      color: white;
      transition: all 0.3s ease;
  }

  .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: #FFD700;
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }

  .nav-link:hover:after {
      width: 80%;
  }

  .nav-link:hover {
      color: #FFD700;
  }
.studio-name {
    color: #FFD700;
    font-weight: bold;
    transition: color 0.3s ease;
}

.studio-name:hover {
    color: #FFC800;
}

.blog-card {
    border: 2px solid #FFD700;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.blog-image-container {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  .button-gold {
      background-color: #FFD700;
      color: black;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(255, 215, 0, 0.1);
      position: relative;
      overflow: hidden;
  }

  .button-gold:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 215, 0, 0.2);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
  }

  .button-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(255, 215, 0, 0.2);
  }

  .button-gold:hover:after {
      transform: scaleX(1);
      transform-origin: left;
  }

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: #FFC800;
    border: 2px solid rgba(0, 0, 0, 0.9);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #FFD700 rgba(0, 0, 0, 0.8);
}