/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Navigation Styles */
.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #667eea;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-section {
  display: flex;
  flex-direction: column;
}

.site-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2d3748;
  margin: 0;
}

.brand-highlight {
  color: #667eea;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

.menu-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .menu-links {
    display: flex;
  }
}

.menu-item {
  color: #4a5568;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item:hover,
.menu-item.current {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.toggle-line {
  width: 25px;
  height: 3px;
  background: #667eea;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active .toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.current {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Hero Banner */
.hero-banner {
  padding: 4rem 0;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text-area {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 500;
}

/* Promotion Zone */
.promotion-zone {
  padding: 4rem 0;
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.promo-header-section {
  text-align: center;
  margin-bottom: 3rem;
}

.promo-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-intro-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-showcase {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .benefits-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-orange {
  border-color: #ff6b35;
}

.card-blue {
  border-color: #4299e1;
}

.card-green {
  border-color: #48bb78;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.benefit-desc {
  color: #718096;
  font-weight: 500;
}

.promo-action-area {
  text-align: center;
}

.promo-action-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f093fb);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.promo-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Content Area */
.content-area {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-blocks {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .content-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .content-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.block-header {
  padding: 1.5rem;
}

.block-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.block-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.block-body {
  padding: 0 1.5rem 1.5rem;
}

.block-text {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.block-meta {
  color: #718096;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Detailed Info Section */
.detailed-info {
  padding: 4rem 0;
}

.info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-panel {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(102, 126, 234, 0.3);
}

.panel-header {
  text-align: center;
  margin-bottom: 2rem;
}

.panel-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.panel-content {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
}

.panel-content p {
  margin-bottom: 1.5rem;
}

/* Notice Area */
.notice-area {
  padding: 2rem 0;
}

.notice-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.notice-card {
  background: linear-gradient(135deg, #ff6b35, #f093fb);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.notice-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.notice-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 3px solid #667eea;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-info {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright-text {
  color: #718096;
  font-weight: 500;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #667eea;
}

.dmca-badge img {
  height: auto;
  max-width: 100px;
}

/* Page Specific Styles */
.page-logo-area {
  text-align: center;
  padding: 2rem 0;
}

.logo-container {
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-logo-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.page-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin: 2rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-content-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.content-text-area {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
}

.content-text-area p {
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-action-area {
  text-align: center;
  margin-top: 2rem;
}

.page-action-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.page-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Utility Classes */
.menu-active {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 640px) {
  .nav-container {
    padding: 1rem;
  }

  .hero-text-area {
    padding: 2rem;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .promo-main-title {
    font-size: 2rem;
  }

  .page-main-title {
    font-size: 2rem;
  }

  .info-panel,
  .main-content-card {
    padding: 2rem;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
  .main-navigation,
  .site-footer,
  .mobile-overlay,
  .mobile-toggle {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .page-wrapper {
    background: white;
  }
}
