/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

/* Scroll Indicator Wrapper */
.scroll-indicator-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.scroll-indicator {
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out 0.6s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  margin: 0 auto 10px;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: #f8f9fa;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.boss-list h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #f7f7f7);
  border-radius: 2px;
}

/* Service Description */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Boss List */
.boss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.boss-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.boss-item:hover {
  transform: translateY(-3px);
  border-color: #667eea;
}

/* Difficulty Badge */
.difficulty-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Support multiple badges side-by-side */
.boss-item .badge-group {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.boss-item .badge-group .difficulty-badge {
  position: static;
  transform: none;
}

.difficulty-badge.easy {
  background: linear-gradient(45deg, #81c784, #a5d6a7);
  color: white;
}

.difficulty-badge.normal {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  color: white;
}

.difficulty-badge.hard {
  background: linear-gradient(45deg, #f44336, #ef5350);
  color: white;
}

.difficulty-badge.chaos {
  background: linear-gradient(45deg, #f44336, #ef5350);
  color: white;
}

.difficulty-badge.etc {
  background: linear-gradient(45deg, #9c27b0, #ba68c8);
  color: white;
}

.boss-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.spec {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c;
}

.price-mini {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e74c3c;
}

.price-notice {
  position: relative;
  top: -10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #667eea;
}

.price-note {
  text-align: center;
  margin-top: 2rem;
  color: #ffffff;
  font-style: italic;
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
}

.faq-item p {
  padding: 1.5rem;
  margin: 0;
  color: #555;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-cta {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.disclaimer {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* Trust Section */
.trust {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.trust h2 {
  color: white;
}

.trust h2::after {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.trust-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Job Experience Section */
.job-experience {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
}

.job-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.job-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-category {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #667eea;
}

.job-category:hover {
  transform: translateY(-5px);
}

.category-title {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}

.job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.job-item {
  background: linear-gradient(135deg, #a8b5ff, #c4a8ff);
  color: #2d3748;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(168, 181, 255, 0.2);
  transition: all 0.3s ease;
}

.job-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 181, 255, 0.3);
  background: linear-gradient(135deg, #9bb0ff, #b8a0ff);
}

.job-note {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.job-note p {
  margin: 0;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2rem;
  }

  .service-grid,
  .boss-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .service-card,
  .boss-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .faq-item p {
    padding: 1rem;
  }
}

/* Mobile Responsive for Trust Section */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 1.5rem;
  }
}

/* Mobile Responsive for Job Experience Section */
@media (max-width: 768px) {
  .job-categories {
    grid-template-columns: 1fr;
  }

  .job-category {
    padding: 1.5rem;
  }

  .job-list {
    gap: 0.6rem;
  }

  .job-item {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .job-note {
    padding: 1.2rem 1.5rem;
  }

  .job-note p {
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.cta-button:focus,
.footer-cta:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
  }

  .cta-button {
    background: #fff;
    color: #000;
  }
}

.discord-proof {
  margin-top: 2.5rem;
  text-align: center;
}
.discord-proof img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.discord-caption {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.85;
}
