/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html ,body {
    font-family: "Noto Serif JP", serif;
    background: #0a0a0a;
    color: white;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Gradient Text */
  .gradient-text {
    background: linear-gradient(90deg, #ff2d55 0%, #8a2be2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
  }
  
  /* Mobile/Desktop Display Controls */
  .desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
  
    .mobile-only {
      display: block;
    }
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #0a0a0a99;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  
  .nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 61px;
    min-width: 0;
  }
  
  .logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  .cta-button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    background: #ff2d55;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    color: white;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
    white-space: nowrap;
  }
  
  .cta-button img {
    width: 20px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.4);
  }
  
  /* Hero Section - Fixed mobile padding issue */
  .hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 1000px; /* Desktop only */
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .TictokBadge {
    background-color: #ff2d55e5;
    color: #ffffff;
    max-width: 182px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: start;
    max-width: 1200px;
    padding: 0 20px;
    margin-left: 20px;
    padding-top: 1000px; /* Desktop only */
  }
  
  .hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .hero-cta-button {
    background: #ff2d55;
    height: 60px;
    border: none;
    padding: 10px 50px;
    border-radius: 35px;
    color: white;
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 45, 85, 0.5);
  }
  
  .hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
  }
  
  /* Mobile Hero Fixes */
  @media (max-width: 768px) {
    .hero-section {
      padding-bottom: 0; /* Remove large padding on mobile */
      height: auto;
      min-height: 100vh;
      padding: 80px 0 60px;
    }
  
    .hero-content {
      padding-top: 0; /* Remove large padding on mobile */
      margin-left: 0;
      text-align: center;
      padding: 0 15px;
    }
  
    .hero-title {
      font-size: 2.8rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .hero-cta-button {
      padding: 15px 30px;
      font-size: 1rem;
      height: auto;
    }
  }
  
  /* Why Choose Section */
  .why-choose-section {
    position: relative;
    padding: 120px 0;
    background: #1a1a1a;
  }
  
  .gd-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    z-index: -1;
  }
  
  .gd-top {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
    z-index: -1;
  }
  
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .registration-grid {
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    gap: 40px;
    margin-top: 60px;
  }

  .registration2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    gap: 40px;
  }
  
  /* Swiper Carousel Styles */
  .swiper {
    width: 100%;
    padding: 20px 0 50px;
  }
  
  .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
  }
  
  .swiper-pagination {
    bottom: 10px !important;
  }
  
  .swiper-pagination-bullet {
    background: #ff2d55;
    opacity: 0.5;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
  }
  
  .feature-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 0.8px solid #1f2937;
    border-radius: 20px;
    max-width: 396px;
    width: 100%;
    padding: 20px 30px;
    text-align: start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .feature-card2 {
    background: linear-gradient(90deg, rgba(255, 45, 85, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border: 0.8px solid #1f2937;
    border-radius: 20px;
    max-width: 396px;
    width: 100%;
    padding: 20px 10px;
    text-align: start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 40px;
  }
  
  .feature-card3 {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 0.8px solid #1f2937;
    border-radius: 20px;
    max-width: 609px;
    width: 100%;
    padding: 20px 18px;
    text-align: start;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .number-circle {
    background-color: #FF2D55;
    width: 39px;
    height: 40px;
    border-radius: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    left: -15px;
  }
  
  .feature-card2:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 45, 85, 0.3);
    box-shadow: 0 20px 40px rgba(255, 45, 85, 0.1);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 45, 85, 0.3);
    box-shadow: 0 20px 40px rgba(255, 45, 85, 0.1);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 2rem;
  }
  
  .onefive {
    color: #ffffff;
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
  }
  
  .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
  }
  
  .feature-description {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.7;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 120px 0;
    background: #1a1a1a;
    text-align: center;
    position: relative;
  }
  
  .Registration-section {
    padding: 120px 0;
    background: #1a1a1a;
    text-align: center;
    position: relative;
  }
  
  .pricing-content {
    margin: 0 auto;
  }
  
  .pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  
  .pricing-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 50px;
  }
  
  .pricing-cta-button {
    background: #ff2d55;
    border: none;
    max-width: 250px;
    width: 100%;
    padding: 20px 20px;
    border-radius: 35px;
    color: white;
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
    white-space: nowrap;
  }


  .registration-cta-button {
    background: #ff2d55;
    border: none;
    max-width: 300px;
    width: 100%;
    padding: 20px 20px;
    border-radius: 35px;
    color: white;
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
    white-space: nowrap;
  }
  
  .pricing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 45, 85, 0.5);
  }

  .registration-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 45, 85, 0.5);
  }
  
  .gd-top-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 100%;
  }
  
  .check__check {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .check__check h5 {
    color: #d1d5db;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  
  /* Live Experience Section */
  .live-experience-section {
    padding: 120px 0;
    background: #0a0a0a;
  }
  
  .live-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 60px;
  }
  
  .live-content img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .live-text {
    padding-left: 20px;
  }
  
  .live-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
  }
  
  .live-description {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .live-features {
    list-style: none;
    margin-bottom: 40px;
  }
  
  .live__div {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .live__div h5 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    text-align: start;
  }
  
  .live__div p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: start;
  }
  
  .hybrid-tag {
    background-color: #ff2d55e5;
    max-width: 141px;
    border-radius: 9999px;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .live-cta-button {
    background: #ff2d55;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    color: white;
    font-family: "Noto Serif JP", serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .live-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    position: relative;
    padding: 120px 0;
    background: #1a1a1a;
  }
  
  .Succesful-section {
    padding: 120px 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 45, 85, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .testimonials-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
  }
  
  .testimonial-card {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .success-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
  }
  
  .first-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .first-div h5 {
    background-color: #ff2d5533;
    color: #ff2d55;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 9999px;
    max-width: 66px;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
  }
  
  .last-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
  }
  
  .last-div p {
    color: #6b7280;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  
  .last-div h5 {
    color: #ff2d55;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 45, 85, 0.3);
    box-shadow: 0 15px 30px rgba(255, 45, 85, 0.1);
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .testimonial-role {
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 120px 0;
    background: #0a0a0a;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 60px auto 0;
  }
  
  .faq-item {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 0px 30px;
    border-radius: 16px;
    border: 0.8px solid #1f2937;
    margin-bottom: 0;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 30px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    color: #ff2d55;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
  }
  
  .faq-answer.active {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 30px;
  }
  
  .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
  }
  
  /* Download Section */
  .download-section {
    padding: 120px 0;
    background: linear-gradient(355.56deg, rgba(255, 45, 85, 0.1) -280.11%, #0a0a0a 96.4%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  .download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .download-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
  }
  
  .download-qr {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .download-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    width: 770px;
    min-height: 533.6px;
    border-radius: 16px;
    border: 0.8px solid #1f2937;
  }
  
  .qr-code {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .qr-code img {
    display: block;
  }
  
  .download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .download-button {
    padding: 15px 30px;
    border-radius: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 200px;
    margin-top: 20px;
  }
  
  .download-button.primary {
    background: #ff2d55;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.3);
  }
  
  .download-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
  }
  
  .download-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .download-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .qr-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: start;
  }
  
  .qr-flex h5 {
    color: #d1d5db;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  
  /* Footer */
  .footer {
    background: #000000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  
  .footer p {
    text-align: start;
  }
  
  .footer button {
    background: #ff2d5533;
    max-width: 384px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 9999px;
    padding: 10px 20px;
    color: #ffffff;
  }
  
  .socials {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .socials-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
  }
  
  .footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 0 15px;
    }
  
    .nav-container {
      padding: 0 15px;
      height: 70px;
    }
  
    .logo {
      font-size: 18px;
    }
  
    .cta-button {
      padding: 10px 20px;
      font-size: 13px;
    }
  
    .section-title {
      font-size: 2.2rem;
    }
  
    .pricing-title {
      font-size: 2.5rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .registration-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .registration2-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
  
    .live-content {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  
    .live-text {
      padding-left: 0;
      text-align: center;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .testimonials-grid2 {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .download-qr {
      flex-direction: column;
      gap: 40px;
    }
  
    .download-content {
      width: 100%;
      min-height: auto;
      padding: 30px 20px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
  
    .footer button {
      max-width: 100%;
    }
  
    .socials {
      justify-content: center;
    }
  
    .socials-text {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .why-choose-section,
    .pricing-section,
    .live-experience-section,
    .testimonials-section,
    .faq-section,
    .download-section,
    .Registration-section,
    .Succesful-section {
      padding: 80px 0;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.2rem;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .pricing-title {
      font-size: 2rem;
    }
  
    .feature-card,
    .feature-card3,
    .success-card,
    .testimonial-card {
      max-width: 100%;
    }
  
    .swiper-slide {
      padding: 0 10px;
    }
  }
  
  /* Animation Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  