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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #281e14;
  --text-primary: #ffffff;
  --text-secondary: #8c877d;
  --accent: #f7c537;
  --accent-secondary: #e39114;
  --accent-tertiary: #cf6f20;
  --accent-glow: rgba(247, 197, 55, 0.5);
  --border: #281e14;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.stage-lights {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.light-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
}

.light-2 {
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
  animation: float2 25s ease-in-out infinite;
}

.light-3 {
  bottom: -10%;
  left: 30%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
  animation: float3 30s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.15); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.2); }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: --;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1.2rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--accent);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .hi {
        margin-bottom: 0.5rem !important;
        font-size: 1.2rem;
    }

    .name {
        font-size: 2.8rem;
        margin-top: 0.5rem;
    }

    .hero {
        padding-top: 100px;
    }
}

@supports (backdrop-filter: blur(10px)) {
    @media (max-width: 768px) {
        .nav-menu {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }
    }
}

.logo {
  display: flex;
  align-items: center;
  height: 35px;
}

.logo img {
  height: 120px !important;
  max-height: 120px !important;
  max-width: 130px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

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

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

.section-title {
  font-size: 3rem;
  font-weight: 750;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  position: relative;
  z-index: 1;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 700px;
}

.hi {
  display: block;
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: -2rem;
  margin-left: 0.2rem;
  font-weight: 750;
}

.name {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(180deg, var(--accent-tertiary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.6rem 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--bg-primary);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.console-visual {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  border: 1px solid var(--border);
  border-radius: 5px;
  backdrop-filter: blur(5px);
}

.fader {
  width: 120px;
  height: 400px;
  background: linear-gradient(to top, var(--accent), transparent);
  border-radius: 5px;
  position: relative;
  animation: faderMove 3s ease-in-out infinite;
}

.fader:nth-child(1) { animation-delay: 0s; height: 150px; }
.fader:nth-child(2) { animation-delay: 0.1s; height: 180px; }
.fader:nth-child(3) { animation-delay: 0.2s; height: 200px; }
.fader:nth-child(4) { animation-delay: 0.3s; height: 170px; }
.fader:nth-child(5) { animation-delay: 0.4s; height: 140px; }

@keyframes faderMove {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

.about {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-content {
  margin: 0 auto;
  text-align: right;
}

.about-title {
  font-size: 3rem;
  font-weight: 750;
  text-align: right;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0rem;
  line-height: 1.5;
}

.volunteer-note {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2rem;
  text-align: center;
}

.volunteer-note strong {
  color: var(--accent-secondary);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-5px);
}

.testimonial-card:nth-child(odd) {
  margin-left: 0;
  margin-right: 0%;
}

.testimonial-card:nth-child(even) {
  margin-left: 0%;
  margin-right: 0;
}

.quote-marks {
  position: absolute;
  font-size: 8rem;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
  color: var(--accent);
}

.quote-mark-open {
  top: 10px;
  left: 20px;
}

.quote-mark-close {
  bottom: -30px;
  right: 20px;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-attribution {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.attribution-details {
  flex: 1;
}

.attribution-name {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.attribution-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.work {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.work-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.work-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px var(--accent-glow);
  transform: translateY(-5px);
}

.work-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.work-card:hover .work-image {
  opacity: 0.5;
}

.work-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-primary);
  font-size: 1.3rem;
}

.work-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.experience {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-secondary));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 30px var(--accent-glow), 0 0 50px var(--accent-glow); }
}

.timeline-date {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.timeline-date:hover {
  background: var(--bg-secondary);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.timeline-content h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.role {
  display: block;
  color: var(--accent-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px var(--accent-glow);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--accent-secondary);
}

footer {
  padding: 2rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .hero {
      flex-direction: column;
      text-align: center;
      padding-top: 120px;
      min-height: auto;
      padding-bottom: 4rem;
  }

  .hero-content {
      max-width: 100%;
  }

  .name {
      font-size: 4rem;
  }

  .hero-tags {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
      padding: 100px 2rem 3rem;
      min-height: auto;
  }

  .name {
      font-size: 3rem;
  }

  .hero-subtitle {
      font-size: 1.2rem;
  }

  .nav-menu {
      gap: 1rem;
      font-size: 0.85rem;
  }

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

  .console-visual {
      transform: scale(0.8);
  }

  .timeline {
      padding-left: 1.5rem;
  }

  .timeline-item {
      padding-left: 2rem;
  }

  .testimonial-card {
      padding: 2rem;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }

  .quote-marks {
      font-size: 5rem;
  }

  .quote-mark-open {
      top: 5px;
      left: 10px;
  }

  .quote-mark-close {
      bottom: -20px;
      right: 10px;
  }

  .testimonial-text {
      font-size: 1.05rem;
  }
}
