/* ============================================= */
/* Navbar Styles                                 */
/* ============================================= */

.navbar {
  position: fixed;
  top: 20px;
  left: 40px;
  width: 95%;
  height: 90px;
  border-radius: 10px;
  z-index: 100;
  background: rgba(249, 246, 255, 0.02),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 50%,
      rgba(255, 255, 255, 0.08) 100%
    );
  backdrop-filter: blur(25px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.navbar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  opacity: 0.8;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 200px;
  max-width: 350px;
}

.nav-left a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo-container:hover {
  border-color: rgba(255, 63, 174, 0.3);
  box-shadow:
    0 0 20px rgba(255, 63, 174, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.logo-container::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 63, 174, 0.4) 20%,
    rgba(136, 80, 255, 0.4) 50%,
    rgba(53, 210, 255, 0.4) 80%,
    transparent
  );
  border-radius: 1px;
  opacity: 0.8;
}

.nav-left .logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 63, 174, 0.4))
    drop-shadow(0 0 6px rgba(136, 80, 255, 0.3));
  transition: all 0.3s ease;
}

.nav-left .logo:hover {
  filter:
    drop-shadow(0 0 20px rgba(255, 63, 174, 0.6))
    drop-shadow(0 0 10px rgba(136, 80, 255, 0.5))
    drop-shadow(0 0 30px rgba(53, 210, 255, 0.3));
  transform: scale(1.05);
}

.logo-text {
  margin: 0;
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--accent-pink) 0%,
    var(--accent-purple) 50%,
    var(--accent-cyan) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 63, 174, 0.3);
  transition: all 0.3s ease;
}

.logo-container:hover .logo-text {
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-pink) 50%,
    var(--accent-amber) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 63, 174, 0.5);
}

.logo-subtitle {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.9;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-container:hover .logo-subtitle {
  color: var(--accent-cyan);
  opacity: 1;
  text-shadow: 0 0 10px rgba(53, 210, 255, 0.5);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  width: auto;
  max-width: calc(100% - 400px);
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  flex-shrink: 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 10px;
  white-space: nowrap;
  min-width: fit-content;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 174, 0.1),
    rgba(136, 80, 255, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.link-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.link-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 63, 174, 0.4) 0%,
    rgba(136, 80, 255, 0.4) 50%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover .link-glow {
  width: 100px;
  height: 100px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  z-index: 2;
}

.login-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--accent-pink) 0%,
    var(--accent-purple) 100%
  );
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(255, 63, 174, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-btn::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.5s ease;
}

.btn-icon {
  font-size: 16px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.btn-text {
  font-size: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.4s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(255, 63, 174, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:hover .btn-glow {
  width: 80px;
  height: 80px;
}

.mobile-menu-btn {
  position: relative;
  bottom: 5px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  flex-shrink: 0;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 1px;
  background: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0.8);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.mobile-menu-btn:hover .hamburger-line {
  background: rgba(255, 255, 255, 0.9);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(4, 1, 17, 0.95) 0%,
    rgba(13, 6, 33, 0.92) 50%,
    rgba(21, 10, 47, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-content {
  position: relative;
  z-index: 51;
  max-width: 400px;
  margin: 80px auto 0;
  padding: 120px 32px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-menu {
  position: relative;
  bottom: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.3s ease-out forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link {
  display: block;
  margin-bottom: 8px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  color: rgba(51, 51, 51, 0.8);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.admin-link {
  color: rgba(51, 51, 51, 1);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(51, 51, 51, 0.1);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav-link.admin-link {
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.2),
    rgba(138, 43, 226, 0.2)
  );
  border-color: rgba(255, 20, 147, 0.3);
  color: rgba(51, 51, 51, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile menu'de giriş butonu için özel stil */
.mobile-nav-item:last-child .mobile-nav-link {
  background: linear-gradient(
    135deg,
    var(--accent-pink),
    var(--accent-purple)
  );
  color: white;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.mobile-nav-item:last-child .mobile-nav-link:hover {
  transform: translateX(5px) translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* ============================================= */
/* Gallery Page Navbar Protection                */
/* ============================================= */

/* Navbar'ı gallery sayfasında koruma */
body:has(.modern-gallery) .navbar {
  position: fixed !important;
  top: 20px !important;
  left: 40px !important;
  width: 95% !important;
  height: 90px !important;
  z-index: 100 !important;
}

body:has(.modern-gallery) .nav-link {
  font-size: 13px !important;
  padding: 8px 12px !important;
}

body:has(.modern-gallery) .login-btn {
  font-size: 12px !important;
  padding: 8px 16px !important;
}

/* ============================================= */
/* Responsive Adjustments                        */
/* ============================================= */

@media (max-width: 1215px) and (min-width: 600px) {
  .navbar {
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 70px;
  }
  .nav-container {
    padding: 0 16px;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
  .nav-center {
    display: none;
  }
  .nav-right .login-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Sağdan Sidebar Tasarımı */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu-content {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, 
      rgba(15, 15, 30, 0.98) 0%,
      rgba(25, 15, 40, 0.98) 50%,
      rgba(15, 25, 35, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 0;
  }
  
  .mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
  }
  
  /* Sidebar Header */
  .mobile-menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, 
      rgba(255, 20, 147, 0.1) 0%,
      rgba(138, 43, 226, 0.1) 50%,
      rgba(0, 191, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Close Button */
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
  }
  
  .mobile-menu-close:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.4);
    transform: scale(1.1);
  }
  
  .mobile-menu-close::before,
  .mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
  }
  
  .mobile-menu-close::before {
    transform: rotate(45deg);
  }
  
  .mobile-menu-close::after {
    transform: rotate(-45deg);
  }
  
  /* Sidebar Content */
  .mobile-nav-menu {
    position: relative;
    top: 100px;
    padding: 40px 30px;
    list-style: none;
    margin: 0;
  }
  
  .mobile-nav-item {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.4s ease-out forwards;
  }
  
  .mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
  .mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
  .mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
  .mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
  .mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }
  .mobile-nav-item:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-nav-link {
    display: block;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent,
      rgba(255, 20, 147, 0.1),
      transparent);
    transition: left 0.5s ease;
  }
  
  .mobile-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 20, 147, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.2);
  }
  
  .mobile-nav-link:hover::before {
    left: 100%;
  }
  
  /* Admin Link Özel Stil */
  .mobile-nav-link.admin-link {
    background: linear-gradient(135deg, 
      rgba(255, 20, 147, 0.2),
      rgba(138, 43, 226, 0.2));
    border-color: rgba(255, 20, 147, 0.4);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
  }
  
  .mobile-nav-link.admin-link:hover {
    background: linear-gradient(135deg, 
      rgba(255, 20, 147, 0.3),
      rgba(138, 43, 226, 0.3));
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
  }
  
  /* Sidebar Footer */
  .mobile-menu-content::after {
    content: 'Bolu Dans Sanat Merkezi';
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 599px) {
  .navbar {
    top: 8px;
    left: 8px;
    right: 8px;
    height: 60px;
  }
  .nav-container {
    padding: 0 8px;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
  .nav-center {
    display: none;
  }
  .nav-right .login-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    width: 28px;
    height: 28px;
  }
  .hamburger-line {
    width: 14px;
    height: 1px;
  }
  .nav-left {
    min-width: 80px;
    max-width: 150px;
  }
  .logo-text {
    font-size: 20px;
  }
  
  /* Eski menü sistemi - orta overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(4, 1, 17, 0.95) 0%,
      rgba(13, 6, 33, 0.92) 50%,
      rgba(21, 10, 47, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .mobile-menu-content {
    position: relative;
    z-index: 51;
    max-width: 400px;
    margin: 80px auto 0;
    padding: 120px 32px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 1);
    animation: slideDown 0.4s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .mobile-nav-menu {
    position: relative;
    bottom: 100px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-nav-item {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.3s ease-out forwards;
  }
  
  .mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
  .mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
  .mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
  .mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
  .mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }
  
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-nav-link {
    display: block;
    margin-bottom: 8px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid transparent;
    color: rgba(51, 51, 51, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .mobile-nav-link:hover,
  .mobile-nav-link.admin-link {
    color: rgba(51, 51, 51, 1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(51, 51, 51, 0.1);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-nav-link.admin-link {
    background: linear-gradient(
      135deg,
      rgba(255, 20, 147, 0.2),
      rgba(138, 43, 226, 0.2)
    );
    border-color: rgba(255, 20, 147, 0.3);
    color: rgba(51, 51, 51, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 768px) and (min-width: 600px) {
  .navbar {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 65px;
  }
  .nav-container {
    padding: 0 12px;
  }
  .nav-left {
    min-width: 100px;
    max-width: 180px;
  }
  .logo-container {
    gap: 6px;
    padding: 4px 8px;
  }
  .logo-container::after {
    display: none;
  }
  .logo-text {
    font-size: 24px;
  }
  .logo-subtitle {
    font-size: 9px;
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    width: 32px;
    height: 32px;
  }
  .hamburger-line {
    width: 16px;
    height: 1.5px;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 8px;
    left: 8px;
    right: 8px;
    height: 60px;
  }
  .nav-container {
    padding: 0 8px;
  }
  .nav-left {
    min-width: 80px;
    max-width: 150px;
  }
  .logo-text {
    font-size: 20px;
  }
  .mobile-menu-btn {
    width: 28px;
    height: 28px;
  }
  .hamburger-line {
    width: 14px;
    height: 1px;
  }
}
