/* Font loading */
@font-face {
  font-family: 'Hiragino Sans';
  src: url('../assets/hiragino-sans.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #181818;
  color: #fff;
  font-family: 'Hiragino Sans', sans-serif;
}

/* Light mode styles */
@media (prefers-color-scheme: light) {
  body {
    background: #f5f5f5;
    color: #333;
  }
}

/* Home page specific background */
body.home-page {
  background: linear-gradient(135deg, #021e04, #0a3d0f);
  position: relative;
}

@media (prefers-color-scheme: light) {
  body.home-page {
    background: linear-gradient(135deg, #e8f5e8, #d4f0d4);
  }
}

.navbar {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: light) {
  .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-brand:hover {
  color: #5fff00;
}

@media (prefers-color-scheme: light) {
  .nav-brand {
    color: #333;
  }
  
  .nav-brand:hover {
    color: #128319;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
}

@media (prefers-color-scheme: light) {
  .nav-menu li a {
    color: #333;
  }
}

.nav-menu li a:hover {
  color: #5fff00;
  background: rgba(95, 255, 0, 0.1);
  transform: translateY(-1px);
}

.nav-menu li a:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

/* Active navigation link styling */
.nav-menu li a.active {
  color: #5fff00;
  background: rgba(95, 255, 0, 0.2);
  border: 1px solid rgba(95, 255, 0, 0.3);
}

.mobile-menu-checkbox {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

@media (prefers-color-scheme: light) {
  .mobile-menu-toggle span {
    background: #333;
  }
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 70px 2rem 2rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.logo {
  max-width: 300px;
  width: 80vw;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(95, 255, 0, 0.6)) drop-shadow(0 0 40px rgba(95, 255, 0, 0.3));
}

/* Image styling */
.profile-image, .portfolio-image {
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}

.profile-image {
  max-width: 200px;
  width: 40vw;
}

.portfolio-image {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 0 0 rgb(94, 255, 0);
}

/* Page titles (excluding home page) */
.page-title {
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-top: 2rem;
  font-weight: 800;
  text-align: center;
  text-shadow: 2px 0 0 rgb(94, 255, 0);
}

@media (prefers-color-scheme: light) {
  .page-title {
    text-shadow: 2px 0 0 rgb(18, 131, 25);
  }
}

/* Glassmorphism base styles */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: border-width 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(95, 255, 0, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: light) {
  .glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .glass-card:hover {
    border-color: rgba(18, 131, 25, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.1);
  }
}

.intro-section {
  text-align: center;
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 2rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
}

@media (prefers-color-scheme: light) {
  .intro-text {
    color: #555;
  }
}

/* About Me page styling */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  text-align: center;
  padding: 0 2rem;
  padding-top: 2rem;
}

.about-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  max-width: 900px;
}

.about-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.profile-image {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  margin-bottom: 0;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .about-content {
    text-align: center;
  }
  
  .profile-image {
    max-width: 200px;
  }
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  text-align: left;
}

@media (prefers-color-scheme: light) {
  .about-text {
    color: #555;
  }
}

.skills-section {
  margin-top: 2rem;
  padding: 2rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  text-align: left;
}

.skills-list li {
  padding: 0.5rem 0;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.skills-list li:before {
  content: "•";
  color: #5fff00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (prefers-color-scheme: light) {
  .skills-list li {
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .skills-list li:before {
    color: #128319;
  }
}

.skills-list li:last-child {
  border-bottom: none;
}

/* Portfolio page styling */
.portfolio-section {
  max-width: 1000px;
  text-align: center;
  padding: 0 2rem;
  padding-top: 2rem;
}

.portfolio-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-category-title {
  font-size: 2rem;
  color: #5fff00;
  margin: 2rem 0 1.5rem 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (prefers-color-scheme: light) {
  .portfolio-category-title {
    color: #128319;
  }
}

@media (prefers-color-scheme: light) {
  .portfolio-intro {
    color: #555;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.portfolio-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

@media (prefers-color-scheme: light) {
  .portfolio-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-item:hover {
    border-color: rgba(18, 131, 25, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.1);
  }
}

.portfolio-item:hover {
  border-color: rgba(95, 255, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

.portfolio-description h3 {
  margin: 1rem 0 0.5rem 0;
  color: #5fff00;
}

@media (prefers-color-scheme: light) {
  .portfolio-description h3 {
    color: #128319;
  }
}

.portfolio-description p {
  color: #e0e0e0;
  line-height: 1.5;
  margin: 0;
}

@media (prefers-color-scheme: light) {
  .portfolio-description p {
    color: #555;
  }
}

.portfolio-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(95, 255, 0, 0.1);
  border: 1px solid rgba(95, 255, 0, 0.3);
  border-radius: 12px;
  color: #5fff00;
}

@media (prefers-color-scheme: light) {
  .portfolio-note {
    background: rgba(18, 131, 25, 0.1);
    border: 1px solid rgba(18, 131, 25, 0.3);
    color: #128319;
  }
}

/* Terms of Service page styling */
.terms-section {
  max-width: 800px;
  text-align: left;
  padding: 0 2rem;
  padding-top: 2rem;
}

.terms-content {
  padding: 2rem;
}

.terms-content h2 {
  color: #5fff00;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

@media (prefers-color-scheme: light) {
  .terms-content h2 {
    color: #128319;
  }
}

.terms-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-group:last-child {
  border-bottom: none;
}

.terms-group h3 {
  color: #5fff00;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

@media (prefers-color-scheme: light) {
  .terms-group h3 {
    color: #128319;
  }
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list li {
  padding: 0.5rem 0;
  color: #e0e0e0;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

@media (prefers-color-scheme: light) {
  .terms-list li {
    color: #555;
  }
}

.terms-list li:before {
  content: "•";
  color: #5fff00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (prefers-color-scheme: light) {
  .terms-list li:before {
    color: #128319;
  }
}

.terms-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(95, 255, 0, 0.1);
  border: 1px solid rgba(95, 255, 0, 0.3);
  border-radius: 12px;
  color: #5fff00;
  text-align: center;
}

@media (prefers-color-scheme: light) {
  .terms-note {
    background: rgba(18, 131, 25, 0.1);
    border: 1px solid rgba(18, 131, 25, 0.3);
    color: #128319;
  }
}

/* Email styling */
.email-obfuscated {
  font-family: monospace;
  color: #5fff00;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: text;
}

.email-obfuscated:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(95, 255, 0, 0.5);
}

@media (prefers-color-scheme: light) {
  .email-obfuscated {
    color: #128319;
  }
  
  .email-obfuscated:hover {
    color: #021e04;
    text-shadow: none;
  }
}

.at-symbol, .dot-symbol {
  color: #888;
  font-size: 0.9em;
}

/* Uniform link styling across the site */
a {
  color: #5fff00;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(95, 255, 0, 0.5);
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #5fff00, transparent);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* Exclude navbar links from uniform styling */
.nav-menu li a,
.nav-menu li a::after {
  color: #fff;
  text-shadow: none;
}

.nav-menu li a:hover {
  color: #5fff00;
  text-shadow: none;
}

.nav-menu li a::after {
  display: none;
}

/* Light mode navbar text overrides */
@media (prefers-color-scheme: light) {
  .nav-menu li a {
    color: #333 !important;
  }
  
  .nav-menu li a:hover {
    color: #128319 !important;
  }
  
  .nav-menu li a.active {
    color: #128319 !important;
  }
}

/* Contact page enhanced styling */
.contact-section {
  max-width: 900px;
  text-align: center;
  padding: 0 2rem;
  padding-top: 2rem;
}

.contact-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-color-scheme: light) {
  .contact-intro {
    color: #555;
  }
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-method {
  padding: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-color-scheme: light) {
  .contact-method {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}

.contact-method:hover {
  border-color: rgba(95, 255, 0, 0.3);
}

@media (prefers-color-scheme: light) {
  .contact-method:hover {
    border-color: rgba(18, 131, 25, 0.3);
  }
}

.contact-method h2 {
  color: #5fff00;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

@media (prefers-color-scheme: light) {
  .contact-method h2 {
    color: #128319;
  }
}

.social-links, .direct-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.social-links li, .direct-contact li {
  padding: 0.8rem 0;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

@media (prefers-color-scheme: light) {
  .social-links li, .direct-contact li {
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.social-links li:last-child, .direct-contact li:last-child {
  border-bottom: none;
}

.social-links li:hover, .direct-contact li:hover {
  background: rgba(95, 255, 0, 0.05);
  border-radius: 8px;
}

@media (prefers-color-scheme: light) {
  .social-links li:hover, .direct-contact li:hover {
    background: rgba(18, 131, 25, 0.1);
    border-radius: 8px;
  }
}

.social-links strong, .direct-contact strong {
  color: #5fff00;
  margin-right: 0.5rem;
  min-width: 80px;
  flex-shrink: 0;
}

@media (prefers-color-scheme: light) {
  .social-links strong, .direct-contact strong {
    color: #128319;
  }
  
  .social-links a, .direct-contact a {
    color: #128319 !important;
  }
  
  .social-links a:hover, .direct-contact a:hover {
    color: #021e04 !important;
    text-shadow: none;
  }
  
  .social-links a::after, .direct-contact a::after {
    background: linear-gradient(90deg, #128319, transparent);
  }
}

/* Contact form enhanced styling */
.contact-form-section {
  margin: 4rem 0;
  padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-color-scheme: light) {
  .contact-form-section {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}

.contact-form-section:hover {
  border-color: rgba(95, 255, 0, 0.3);
}

@media (prefers-color-scheme: light) {
  .contact-form-section:hover {
    border-color: rgba(18, 131, 25, 0.3);
  }
}

.contact-form-section h2 {
  color: #5fff00;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

@media (prefers-color-scheme: light) {
  .contact-form-section h2 {
    color: #128319;
  }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #5fff00;
  font-weight: 500;
}

@media (prefers-color-scheme: light) {
  .form-group label {
    color: #128319;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

@media (prefers-color-scheme: light) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #333;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5fff00;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(95, 255, 0, 0.1);
}

@media (prefers-color-scheme: light) {
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #128319;
    box-shadow: 0 0 0 3px rgba(18, 131, 25, 0.1);
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

@media (prefers-color-scheme: light) {
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }
}



.submit-button {
  background: linear-gradient(135deg, #5fff00, #128319);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

@media (prefers-color-scheme: light) {
  .submit-button {
    background: linear-gradient(135deg, #128319, #0a4d0f);
  }
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 255, 0, 0.3);
}

@media (prefers-color-scheme: light) {
  .submit-button:hover {
    box-shadow: 0 8px 25px rgba(18, 131, 25, 0.6), 0 0 20px rgba(18, 131, 25, 0.4);
  }
}

.submit-button:active {
  transform: translateY(0);
}

/* Form message styling */
.form-message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: rgba(16, 131, 25, 0.1);
  border: 2px solid #128319;
  color: #128319;
}

.form-message.error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 2px solid #f44336;
  color: #f44336;
}

/* Dark mode form messages */
@media (prefers-color-scheme: dark) {
  .form-message.success {
    background-color: rgba(95, 255, 0, 0.1);
    border-color: #5fff00;
    color: #5fff00;
  }
  
  .form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
  }
}

/* Response time styling */
.response-time {
  margin-top: 3rem;
  padding: 1.5rem;
  color: #5fff00;
  text-align: center;
  background: rgba(95, 255, 0, 0.1) !important;
  border: 1px solid rgba(95, 255, 0, 0.3) !important;
  border-radius: 16px !important;
}

@media (prefers-color-scheme: light) {
  .response-time {
    color: #128319;
    background: rgba(18, 131, 25, 0.1) !important;
    border: 1px solid rgba(18, 131, 25, 0.3) !important;
  }
}

.response-time h3 {
  margin-bottom: 0.5rem;
  color: #5fff00;
}

@media (prefers-color-scheme: light) {
  .response-time h3 {
    color: #128319;
  }
}

/* Commissions page styling */
.commissions-section {
  max-width: 1000px;
  text-align: center;
  padding: 0 2rem;
  padding-top: 2rem;
}

.commissions-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-color-scheme: light) {
  .commissions-intro {
    color: #555;
  }
}

.commission-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .commission-types {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .commissions-section {
    padding: 0 1rem;
    padding-top: 1rem;
  }
  
  .commission-type {
    padding: 1.5rem;
  }
  
  .commission-requirements,
  .get-started {
    padding: 1.5rem;
    margin: 2rem 0;
  }
}

.commission-type {
  padding: 2rem;
  text-align: left;
}

.commission-type h2 {
  color: #5fff00;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
}

@media (prefers-color-scheme: light) {
  .commission-type h2 {
    color: #128319;
  }
}

.pricing-info, .commission-process {
  margin-bottom: 2rem;
}

.pricing-info h3, .commission-process h3 {
  color: #5fff00;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

@media (prefers-color-scheme: light) {
  .pricing-info h3, .commission-process h3 {
    color: #128319;
  }
}

.pricing-list, .process-list, .requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li, .process-list li, .requirements-list li {
  padding: 0.5rem 0;
  color: #e0e0e0;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
}

@media (prefers-color-scheme: light) {
  .pricing-list li, .process-list li, .requirements-list li {
    color: #555;
  }
}

.pricing-list strong, .process-list strong, .requirements-list strong {
  color: #5fff00;
  margin-right: 0.5rem;
  min-width: 80px;
  flex-shrink: 0;
}

@media (prefers-color-scheme: light) {
  .pricing-list strong, .process-list strong, .requirements-list strong {
    color: #128319;
  }
}

.pricing-list li:before, .process-list li:before, .requirements-list li:before {
  content: "•";
  color: #5fff00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (prefers-color-scheme: light) {
  .pricing-list li:before, .process-list li:before, .requirements-list li:before {
    color: #128319;
  }
}

.process-list li {
  padding-left: 1.5rem;
}

.commission-requirements {
  margin: 3rem 0;
  padding: 2rem;
  text-align: left;
}

.commission-requirements h2 {
  color: #5fff00;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
}

@media (prefers-color-scheme: light) {
  .commission-requirements h2 {
    color: #128319;
  }
}

.get-started {
  margin: 3rem 0;
  padding: 2rem;
  text-align: center;
}

.get-started h2 {
  color: #5fff00;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

@media (prefers-color-scheme: light) {
  .get-started h2 {
    color: #128319;
  }
}

.get-started p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.pricing-info p {
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

@media (prefers-color-scheme: light) {
  .pricing-info p {
    color: #555;
  }
  
  .pricing-info a {
    color: #128319 !important;
  }
  
  .pricing-info a:hover {
    color: #021e04 !important;
    text-shadow: none;
  }
  
  .pricing-info a::after {
    background: linear-gradient(90deg, #128319, transparent);
  }
}

@media (prefers-color-scheme: light) {
  .get-started p {
    color: #555;
  }
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #5fff00, #128319);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.cta-button::after {
  display: none;
}

@media (prefers-color-scheme: light) {
  .cta-button {
    background: linear-gradient(135deg, #128319, #0a4d0f);
  }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 255, 0, 0.3);
}

@media (prefers-color-scheme: light) {
  .cta-button:hover {
    box-shadow: 0 8px 25px rgba(18, 131, 25, 0.6), 0 0 20px rgba(18, 131, 25, 0.4);
  }
}

.cta-button:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 2rem 0 6rem 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  @media (prefers-color-scheme: light) {
    .nav-menu {
      background: rgba(255, 255, 255, 0.95);
    }
  }
  
  .mobile-menu-checkbox:checked ~ .nav-menu {
    right: 0;
  }
  
  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .mobile-menu-checkbox:checked ~ .nav-menu li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Staggered animation delays for mobile menu items */
  .mobile-menu-checkbox:checked ~ .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu-checkbox:checked ~ .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu-checkbox:checked ~ .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
  .mobile-menu-checkbox:checked ~ .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
  .mobile-menu-checkbox:checked ~ .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
  .mobile-menu-checkbox:checked ~ .nav-menu li:nth-child(6) { transition-delay: 0.6s; }
  
  .nav-menu li a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    display: block;
    text-align: center;
    min-width: 200px;
  }
  
  .nav-menu li a:hover {
  background: rgba(95, 255, 0, 0.2);
  transform: scale(1.05);
}
  
  /* Disable active link interactions in mobile menu */
  .nav-menu li a.active {
    cursor: default;
    pointer-events: none;
  }
  
  .nav-menu li a.active:hover {
  background: rgba(95, 255, 0, 0.2);
  transform: none;
}
  
  /* Light mode mobile menu text overrides */
  @media (prefers-color-scheme: light) {
    .nav-menu li a {
      color: #333 !important;
    }
    
    .nav-menu li a:hover {
      color: #128319 !important;
    }
    
    .nav-menu li a.active {
      color: #128319 !important;
    }
  }
}

/* Response Page Styling */
.response-actions {
  text-align: center;
  margin: 2rem 0;
}

.response-actions p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-buttons .submit-button {
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.action-buttons .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dark mode action buttons */
@media (prefers-color-scheme: dark) {
  .action-buttons .submit-button {
    background-color: #5fff00;
    color: #000;
  }
  
  .action-buttons .submit-button:hover {
    background-color: #4cd900;
    border-color: #5fff00;
  }
}

/* Light mode action buttons */
@media (prefers-color-scheme: light) {
  .action-buttons .submit-button {
    background-color: #128319;
    color: #fff;
  }
  
  .action-buttons .submit-button:hover {
    background-color: #0f6b15;
    border-color: #128319;
  }
}