* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  overflow-y: auto !important;
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #3365b0;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a5492;
}

img {
  max-width: 100%;
  height: auto;
}

a:focus,
button:focus {
  outline: 2px solid #3365b0;
  outline-offset: 2px;
}

::selection {
  background-color: #3365b0;
  color: #fff;
}

::-moz-selection {
  background-color: #3365b0;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

a {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.modern-nav {
  background: rgba(16, 16, 16, .95);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: all .3s ease;
}

.modern-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -.5px;
}

.nav-logo span {
  color: #3365b0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3365b0;
}

.mobile-menu-toggle {
  display: none;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .5rem;
}

.hero-section {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #192c59 0%, #060606 100%);
  position: relative;
  overflow: hidden;
  padding: 1.2rem 2rem;
}

.hero-content {
  max-width: 1000px;
  text-align: center;
  z-index: 2;
}

.hero-profile-img {
  width: 300px;
  height: 300px;
  border-radius: 5%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid rgba(51, 101, 176, .3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.hero-name {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
}

.hero-name span {
  color: #3365b0;
}

.hero-title {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 3rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.featured-on {
  margin-top: 6rem;
}

.featured-on h5 {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2rem;
  font-weight: 500;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logos img {
  height: 65px;
  width: auto;
  opacity: .7;
  transition: all .3s ease;
  filter: grayscale(100%);
}

.brand-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #3365b0;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all .3s ease;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(51, 101, 176, .3);
}

.cta-button:hover {
  background: #2a5492;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(51, 101, 176, .5);
  color: #fff;
}

.page-header {
  background: linear-gradient(135deg, #192c59 0%, #060606 100%);
  padding: 0.5rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3365b0, transparent);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .7);
  max-width: 600px;
  margin: 0 auto;
}

.imdb-link {
  display: inline-block;
  padding: .75rem 2rem;
  background: rgba(245, 197, 24, .1);
  border: 2px solid #f5c518;
  color: #f5c518;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all .3s ease;
  font-size: 1rem;
  margin-top: 1rem;
}

.imdb-link:hover {
  background: #f5c518;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, .3);
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.voice-reel {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 1rem;
  transition: all .3s ease;
}

.voice-reel h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.video-wrapper.playing .play-button-overlay {
  display: none;
}

.credits-block {
  display: block;
  margin: 0 auto;
  max-width: 900px;
}

.credit-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 1.2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.credit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #3365b0;
  transition: height .3s ease;
}

.credit-year {
  color: #3365b0;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.credit-title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.credit-characters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.character-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.character-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(51, 101, 176, .3);
  margin-bottom: .5rem;
  transition: all .3s ease;
}

.character-image:hover {
  border-color: #3365b0;
  transform: scale(1.05);
}

.character-name {
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
  line-height: 1.3;
}

.credit-link {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.credit-link:hover {
  color: #3365b0;
  gap: .75rem;
}

.credit-link::after {
  content: '→';
  transition: transform .3s ease;
}

.credit-link:hover::after {
  transform: translateX(4px);
}

.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  transition: all .3s ease;
  width: 100%;
}

.contact-container:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(51, 101, 176, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3365b0, #2a5492);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(51, 101, 176, .3);
}

.contact-heading {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-email {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3365b0, #2a5492);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all .3s ease;
  font-size: 1.125rem;
  box-shadow: 0 4px 20px rgba(51, 101, 176, .3);
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(51, 101, 176, .5);
  color: #fff;
}

.imdb-container {
  margin-bottom: 3rem;
  text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    background: rgba(16, 16, 16, .98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 2rem 2rem;
    gap: 2rem;
    transition: right .3s ease;
    border-left: 1px solid rgba(255, 255, 255, .1);
    align-items: flex-start;
    z-index: 1002;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1003;
    position: relative;
  }

  .hero-name {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.25rem;
  }

  .hero-profile-img {
    width: 150px;
    height: 150px;
  }

  .brand-logos img {
    height: 40px;
  }

  .nav-container {
    padding: 0 1rem;
  }

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

  .voice-reel {
    padding: 2rem 1.5rem;
  }

  .voice-reel h2 {
    font-size: 1.5rem;
  }

  .contact-container {
    padding: 3rem 2rem;
  }

  .contact-heading {
    font-size: 1.5rem;
  }

  .contact-text {
    font-size: 1rem;
  }

  .contact-email {
    font-size: 1rem;
    padding: .875rem 2rem;
  }

  .content-section {
    padding: 2rem 1rem;
  }

  .credits-block {
    max-width: 100%;
    padding: 0;
  }

  .credit-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .credit-year {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .credit-title {
    font-size: 1.1rem;
  }

  .character-card {
    max-width: 100px;
  }

  .character-image {
    width: 80px;
    height: 80px;
  }

  .character-name {
    font-size: .8rem;
  }

  .credit-characters {
    gap: .75rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }

  .brand-logos {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .modern-nav,
  .mobile-menu-toggle {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
