/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TikTok Sans', sans-serif;
    line-height: 1.4;
    font-size: 18px;
    color: #ffffff;
    background: rgba(18, 21, 29, 1);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(18, 21, 29, 1);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    max-width: 1000px;
    width: 90%;
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.modal-content p {

    margin-bottom: 30px;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
   max-width: 100%;
     padding: 12px 30px;
    font-weight: 900;
    font-size: 24px;
     cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: unset;
    border: none;
    background: transparent;
}

/* Button Styles */
.btn-primary {
    box-shadow: 0px 2px 16px 0px rgba(74, 195, 50, 1),
    0px -4px 4px 0px rgba(73, 212, 36, 1) inset,
    0px 4px 4px 0px rgba(62, 230, 177, 1) inset;
    color: rgba(74, 195, 50, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    box-shadow: 0px 2px 16px 0px rgba(212, 36, 39, 1),
    0px -4px 4px 0px rgba(212, 36, 39, 1) inset,
    0px 4px 4px 0px rgba(230, 62, 114, 1) inset;
    color: rgba(212, 36, 39, 1);
}

.btn-secondary:hover {
  transform: translateY(-2px);

}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* Black Screen */
.black-screen-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.black-screen-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.black-screen-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 21, 29, 1);
    border-bottom: 1px solid rgba(45, 31, 55, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: unset;
    text-transform: uppercase;
}

.logo {
    width: 28px;
    height: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: rgba(241, 59, 62, 1);
}

.header-info {
  background: linear-gradient(180deg, #181B27 0%, #4C1516 100%);
  border-top: 1px solid rgba(35, 40, 50, 1);
  color: #fff;
  padding: 15px 0;
  margin-top: 66px;
}

.header-info .container {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  justify-content: center;
  max-width: 1000px;
}

.header-info svg {
  flex-shrink: 0;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    display: flex;
    background: url(./images/hero.png) no-repeat center;
    background-size: cover;

}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.section-subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
}

.hero p {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: rgba(209, 213, 219, 1);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Highlights Section */
.highlights {
  
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.btn-main {
  display: flex;
  background: linear-gradient(180deg, #46C89A 0%, #4AC332 100%);
  box-shadow: 0px 2px 16px 0px rgba(74, 195, 50, 1),
  0px -4px 4px 0px rgba(73, 212, 36, 1) inset,
  0px 4px 4px 0px rgba(62, 230, 177, 1) inset;
  border: none;
  display: flex;
  padding: 16px 70px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-top: 24px;
  width: max-content;
  max-width: 100%;
  color: rgba(18, 49, 13, 1);
  text-decoration: unset;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
}

.highlight-item {

border-radius: 12px;
 background: linear-gradient(180deg, #174E3B 0%, #141C25 100%);
  gap: 8px;
border: 1px solid rgba(35, 40, 50, 1);
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
}

.highlight-item .content {
  
   padding: 24px;
     display: flex;
  position: relative;
  flex-direction: column;
  height: 100%;
  align-items: center;
  text-align: center;
    border-radius: 8px;
}

.highlight-item:hover {
    transform: translateY(-5px);
}


.highligt-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-item h3 {
    font-size: 28px;
    font-weight: 700;
}

.highlights .btn-main {
  margin-left: auto;
  margin-right: auto;
}
/* Top Pick Section */
.top-pick {
    text-align: center;
    
}

.game-showcase {
    position: relative;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: rgba(14, 16, 28, 1);
    border: 1px solid  rgba(35, 40, 50, 1);
    border-radius: 16px;
    margin-top: 40px;
}

.game-showcase > img {
    width: 100%;
    height: 248px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.game-block {
  padding: 24px;
}

.game-block .btn-main {
  width: 100%;
}


/* Why Choose Section */
.why-choose {
    background: rgba(11, 23, 28, 1);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 30px;
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: rgba(72, 98, 228, 1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Meet Section */
.meet-section {
  

}
.meet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.meet-keys {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  
  margin-bottom: 50px;
}

.meet-title {
  color: rgba(128, 198, 179, 1);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}

.meet-left .section-title {
  text-align: left;
}

.meet-list {
  list-style-type: disc;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(203, 213, 225, 1);
}

.meet-list li {
  list-style-position: inside;
}

.meet-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(209, 213, 219, 1);
    line-height: 1.6;
}

.meet-right {
    text-align: center;
}

.meet-right img {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    border-radius: 8px;
}

/* User Feedback Section */
.user-feedback {
  
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.feedback-card {
    transition: transform 0.3s ease;
}

.feedback-card .content {
  padding: 20px;
  text-align: left;
  align-items: flex-start;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.user-info img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.user-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

.feedback-card p {
    font-size: 14px;
    color: rgba(209, 213, 219, 1);
    line-height: 1.5;
    font-style: italic;
}

/* Registration Section */

.registration {
  
}
.contact-content {
 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
}
.registration-form {
    background: rgba(14, 16, 28, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(67, 102, 255, 0.2);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    background: rgba(24, 26, 38, 1);

  border: 1px solid rgba(49, 51, 57, 1);
  border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(170, 0, 255, 1);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.registration-form .btn-large {
    width: 100%;
}

.contact-img {
  width: 100%;
  height: auto;
}

.contact-col {
  display: flex;
  flex-direction: column;
}

.contact-info .section-subtitle {
  margin-bottom: 12px;
  text-align: left;
}

.contact-col span {
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0px;
}

.contact-col .section-subtitle {
  text-decoration: unset;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Disclaimer */
.disclaimer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.disclaimer-info {
  display: flex;
  flex-direction: column;
}

.disclaimer h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 6px;

}

.disclaimer p {
    font-size: 18px;
    line-height: 1.6;
}

/* Footer */
.footer {
   background: rgba(8, 11, 19, 1);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: unset;
}

.footer-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-nav a:hover {
  color: rgba(241, 59, 62, 1);
}

.footer-certifications {
    display: flex;
    gap: 40px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 24px;
    /* background: rgba(14, 16, 28, 1);
    border: 1px solid rgba(67, 102, 255, 0.2);
    border-radius: 100px;
    padding: 12px; */
    justify-content: center;
}

.footer-certifications img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(241, 59, 62, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

      /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(7, 23, 27, 1);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.mobile-open {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(0, 152, 152, 0.6);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .footer-info {
      justify-content: center;
    }

    .footer-certifications {
      flex-wrap: wrap;
      justify-content: center;
    }

    section {
      padding: 40px 0;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
      grid-template-columns: 1fr;
    }
    
    
    .hero h1 {
        font-size: 36px;
    }

    .game-block {
      bottom: 0;
      padding: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .highlights-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .meet-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .meet-left h2 {
        font-size: 28px;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
      grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .modal-buttons button {
      width: 100%;
    }
    
    .hero p,
    .section-subtitle {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.policy {
  background: rgba(14, 16, 28, 1);
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content li {
  list-style-position: inside;
}

.policy-content a {
  color: inherit;
  text-decoration: unset;
}

@media (max-width:768px){
    .game-showcase {
      padding: 20px;
    }

}

 /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: #ff6b6b !important;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 50px !important;
            height: 50px !important;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px !important;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            background: #fff !important;
            opacity: 0.5 !important;
        }

        .swiper-pagination-bullet-active {
            background: #ff6b6b !important;
            opacity: 1 !important;
        }
        .swiper-container {
          overflow: hidden;
        }

        .registration-form span {
          font-weight: 600;
        }

        .registration-form .col {
          padding-top: 16px;
          border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .game-showcase iframe {
          border-radius: 12px;
          width: 100%;
          aspect-ratio: 1000/562;
          height: auto;
        }

        .thank-you-content {
          border-radius: 16px;
        }

        @media (min-width:768px){
          .swiper-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
          }
        }

        @media (max-width:768px){
            .btn-main {
              font-size: 20px;
              padding: 16px 40px;
            }
            .header-info .container {
              font-size: 18px;
              text-align: left;
            }
            .disclaimer {
              flex-direction: column;
              align-items: center;
            }
        }