/* ==================== UNIVERSAL RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* ==================== NAVBAR UNIVERSAL (100% SAMA DENGAN MEMBER.CSS) ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 50px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 153, 102, 0.08);
  height: 72px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Scroll Effects - Optimized */
.navbar.scroll-up {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scroll-down {
  transform: translateY(-100%);
}

/* Logo - Simple & Fast */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  will-change: transform;
}

.logo:hover .logo-img {
  transform: translateY(-2px);
}

/* Nav Links Container - Optimized Grid */
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* Nav Links - Ultra Clean */
.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.25s ease;
  will-change: color;
}

/* Underline Effect - GPU Accelerated */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9966, #ffa500);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}

.nav-links li a:hover {
  color: #ffffff;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: #ff9966;
  font-weight: 600;
}

/* ==================== PROFILE SECTION - OPTIMIZED ==================== */
.nav-profile {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.profile-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  will-change: transform;
}

.profile-btn:hover {
  transform: scale(1.08);
}

/* Hide text completely */
.profile-btn span {
  display: none !important;
  visibility: hidden !important;
}

/* Avatar - Clean & Visible */
.profile-avatar-nav {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: block;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .profile-avatar-nav {
  border-color: #ff9966;
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.4);
}

/* Guest Icon */
.guest-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  background: linear-gradient(135deg, #c96, #ff9966);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 2px solid rgba(255, 153, 102, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.profile-btn:hover .guest-icon {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(255, 153, 102, 0.5);
}

/* Dropdown Menu - Lightweight */
.profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  list-style: none;
  display: none;
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

.profile-menu::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: rgba(15, 15, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.profile-menu[aria-hidden="false"] {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.profile-menu li {
  margin: 0;
  padding: 0;
}

.profile-menu li a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  will-change: background, color;
}

.profile-menu li a::after {
  display: none !important;
}

.profile-menu li a:hover {
  color: #ffffff !important;
  background: rgba(255, 153, 102, 0.1);
}

.profile-menu li:not(:last-child) {
  margin-bottom: 2px;
}

.profile-menu li:last-child {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==================== RESPONSIVE OPTIMIZED ==================== */
@media (max-width: 1200px) {
  .navbar {
    padding: 18px 40px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links li a {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 30px;
    height: auto;
    min-height: 70px;
  }

  .nav-links {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li a {
    padding: 9px 12px;
    font-size: 11px;
  }

  .logo-img {
    height: 42px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
    height: auto;
  }

  .nav-links {
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .nav-links li a {
    padding: 8px 10px;
    font-size: 11px;
  }

  .profile-avatar-nav,
  .guest-icon {
    width: 36px !important;
    height: 36px !important;
  }

  .profile-btn {
    min-width: 36px;
    min-height: 36px;
  }

  .logo-img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .nav-links li a {
    padding: 7px 9px;
    font-size: 10px;
  }

  .logo-img {
    height: 34px;
  }

  .profile-menu {
    min-width: 170px;
  }
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
.navbar,
.nav-links li a,
.profile-btn,
.profile-menu {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.nav-links li a::after,
.profile-avatar-nav,
.guest-icon,
.profile-menu {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.nav-links li a:hover,
.profile-btn:hover {
  transform: translateZ(0);
}

.navbar,
.nav-links,
.profile-menu {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .profile-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.98);
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

@supports (container-type: inline-size) {
  .navbar {
    container-type: inline-size;
  }
}

/* ==================== HISTORY PAGE STYLES ==================== */
.page-header-section {
  padding: 100px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.page-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 30%, rgba(255,153,102,0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(201,102,102,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: 6px;
  background: linear-gradient(135deg, #fff 0%, #c96 50%, #ff9966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  letter-spacing: 1.5px;
  font-weight: 300;
}

.history-main-content {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.band-intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(26, 26, 26, 0.5);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,153,102,0.1);
}

.band-photo-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.band-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #fff;
  font-size: 14px;
}

.intro-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.quote-symbol {
  font-size: 3.5rem;
  color: #ff9966;
  line-height: 1;
  margin-bottom: 15px;
}

.intro-box p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}

.intro-author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: #ff9966;
}

.story-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.content-box {
  background: rgba(26, 26, 26, 0.5);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,153,102,0.1);
}

.box-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255,153,102,0.2);
}

.box-icon {
  font-size: 2rem;
}

.box-title h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.box-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #ccc;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  background: rgba(26, 26, 26, 0.5);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255,153,102,0.1);
}

.sidebar-box h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ff9966;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.sidebar-box li:last-child {
  border-bottom: none;
}

.fact-label {
  color: #999;
  font-weight: 600;
}

.fact-value {
  color: #fff;
  font-weight: 400;
}

.milestone-entry {
  padding: 15px 0 15px 20px;
  border-left: 3px solid #ff9966;
  margin-bottom: 15px;
}

.milestone-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #ff9966;
  letter-spacing: 2px;
}

.milestone-desc {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 5px;
}

.social-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.social-stat:last-child {
  border-bottom: none;
}

.social-stat img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social-stat span {
  color: #ddd;
  font-size: 0.95rem;
}

.cta-area {
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(201,102,102,0.15), rgba(255,153,102,0.1));
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,153,102,0.2);
}

.cta-area h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.cta-area p {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: linear-gradient(135deg, #c96, #ff9966);
  color: #fff;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #ff9966;
  color: #ff9966;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,153,102,0.3);
}

/* ==================== FOOTER STYLES ==================== */
.footer {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #ffffff;
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c96, #ff9966, #ffa500, #ff9966, #c96);
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.footer::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 102, 102, 0.15), transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.glow-circle {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 153, 102, 0.12), transparent);
  border-radius: 50%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.brand-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c96, #ff9966);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  box-shadow: 0 4px 20px rgba(201, 102, 102, 0.4);
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 102, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 153, 102, 0.6); }
}

.brand-name h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px;
  background: linear-gradient(90deg, #ffffff, #ff9966);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-name p {
  font-size: 10px;
  color: #ff9966;
  letter-spacing: 2px;
  font-weight: 600;
}

.tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #cccccc;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 102, 102, 0.1);
  border: 1px solid rgba(201, 102, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ff9966;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #c96, #ff9966);
  color: #000;
  box-shadow: 0 5px 20px rgba(201, 102, 102, 0.5);
  border-color: #ff9966;
}

.links-section h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ff9966;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.links-list a {
  color: #cccccc;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.links-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #ff9966;
  transition: width 0.3s ease;
}

.links-list a:hover {
  color: #ff9966;
  padding-left: 15px;
}

.links-list a:hover::before {
  width: 10px;
}

.follow-section h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ff9966;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.follow-section p {
  font-size: 12px;
  color: #999999;
  line-height: 1.4;
  margin-bottom: 15px;
}

.follow-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.follow-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(201, 102, 102, 0.1);
  border: 1px solid rgba(201, 102, 102, 0.3);
  border-radius: 8px;
  text-decoration: none;
  color: #cccccc;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.follow-btn:hover {
  background: linear-gradient(135deg, #c96, #ff9966);
  color: #000;
  border-color: #ff9966;
  transform: translateX(5px);
  box-shadow: 0 3px 15px rgba(201, 102, 102, 0.4);
}

.follow-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.follow-btn .follower-count {
  margin-left: auto;
  font-size: 11px;
  opacity: 0.7;
}

.contact-info {
  margin-top: 15px;
}

.contact-info p {
  color: #999999;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-phone {
  color: #ff9966;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-phone:hover {
  color: #ffa500;
  text-shadow: 0 0 10px rgba(255, 153, 102, 0.5);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 102, 102, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.copyright {
  color: #666666;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff9966;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .page-header-section {
      padding: 80px 15px 30px;
  }

  .band-intro-section {
      grid-template-columns: 1fr;
      padding: 30px 20px;
  }

  .history-main-content {
      padding: 40px 15px;
  }

  .story-layout {
      grid-template-columns: 1fr;
  }

  .cta-buttons {
      flex-direction: column;
  }

  .cta-button {
      width: 100%;
  }

  .footer {
      padding: 30px 0 15px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 20px;
  }

  .footer-container {
      padding: 0 20px;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }

  .footer-bottom-links {
      flex-wrap: wrap;
      justify-content: center;
  }
}