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

body {
    font-family: 'Lexend', sans-serif;
    line-height: 1.3;
    color: #ffffff;
    background: rgba(7, 23, 27, 1);
    min-height: 100vh;
}

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

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

.modal-content {
    background: linear-gradient(135deg, #045B6E 0%, #07171B 100%);

    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.modal-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(91.2deg, #E4C548 0%, #314618 96%);
box-shadow: 0px -3px 3px 0px rgba(213, 190, 73, 1) inset;

    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: unset;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 190, 73, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 190, 73, 0.4);
}

.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(7, 23, 27, 1);
    border-bottom: 1px solid rgba(45, 31, 55, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar {
    padding: 10px 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;
}

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

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

.nav-menu a {
    color: rgba(209, 213, 219, 1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: rgba(0, 152, 152, 1);
}

.header-info {
  background: rgba(0, 152, 152, 1);
  color: #fff;
  padding: 15px 0;
  margin-top: 80px;
}

.header-info .container {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  justify-content: center;
}

.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;
    align-items: center;

}

.hero-content {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    align-items: center;
    gap: 20px;
}

.hero-icon img {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    
}

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

/* Section Styles */
section {
    padding: 60px 0;
    background: linear-gradient(135deg, #045B6E 0%, #07171B 100%);


}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
    color: rgba(209, 213, 219, 1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlights Section */
.highlights {
    background: rgba(7, 23, 27, 1);
}

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

.highlight-item {
  display: flex;
  background: rgba(255, 255, 255, 0.1);

  gap: 8px;
  border-width: 1px 1px 1px 4px;

border-style: solid;

border-color: rgba(255, 255, 255, 0.2);

border-radius: 10px;
    padding: 20px;
    align-items: center;
   
    transition: transform 0.3s ease;
}

.highlight-item:first-child {
  border-color: rgba(228, 197, 72, 1);
}

.highlight-item:nth-child(3) {
  border-color: rgba(128, 198, 179, 1);
}

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

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon img {
    width: 100px;
    height: 100px;
}

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

.highlight-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.highlight-item p {
    font-size: 14px;
    color: rgba(209, 213, 219, 1);
    line-height: 1.5;
}

/* Top Pick Section */
.top-pick {
    text-align: center;
}

.game-showcase {
    position: relative;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-showcase > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    min-height: 300px;
    object-fit: cover;
}

.game-block {
 position: absolute;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 300px;
}

.game-block img {
  height: 135px;
  width: auto;
}

.game-btn {

}

/* Why Choose Section */
.why-choose {
    background: rgba(7, 23, 27, 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-radius: 12px;
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: rgba(228, 197, 72, 1);
    transition: transform 0.3s ease;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  border-color: rgba(128, 198, 179, 1);
}

.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-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;
  border-radius: 10px;
  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;
}

/* User Feedback Section */
.user-feedback {
    background: rgba(7, 23, 27, 1);
}

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

.feedback-card {
    background: rgba(255, 255, 255, 0.1);
    border-width: 1px 1px 1px 4px;
    border-style: solid;
    border-color: rgba(128, 198, 179, 1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

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

.user-info img {
    width: 80px;
    height: 80px;
    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 */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
}
.registration-form {
    background: rgba(255, 255, 255, 0.1);
  height: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 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(15, 41, 42, 1);
   border: 1px solid rgba(101, 255, 237, 1);
    border-radius: 10px;
    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 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.disclaimer h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.disclaimer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: rgba(7, 23, 27, 1);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    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;
}

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

.footer-nav a:hover {
  color: rgba(0, 152, 152, 1);
}

.footer-certifications {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

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

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

.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(170, 0, 255, 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, 0.8);
        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: 28px;
    }
    
    .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;
    }
    
    .hero p,
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .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: #fff;
  color: #000000;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

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

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