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

body {
    font-family: 'Montserrat', sans-serif;
    background: rgba(16, 28, 40, 1);
    color: white;
    line-height: 1.2;
    overflow-x: hidden;
}

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

.hidden {
    display: none !important;
}

/* Modals */
.modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(0, 8, 20, 1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 20px;
}


.age-icon {
    width: 80px;
    height: 80px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    border: 3px solid white;
}

.modal h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.modal p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #cccccc;
}

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

.btn-confirm, .btn-accept {
    background: rgba(249, 226, 9, 1);

    color: rgba(20, 31, 43, 1);
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

.btn-reject {
    background: rgba(255, 1, 45, 1);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.btn-learn {
    background: transparent;
border: 1px solid rgba(249, 226, 9, 1);
    color: rgba(249, 226, 9, 1);
    text-decoration: unset;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-confirm:hover, .btn-accept:hover, .btn-reject:hover, .btn-learn:hover {
    transform: translateY(-2px);
}

/* Black Screen */
.black-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 2rem;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: unset;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: rgba(249, 226, 9, 1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Warning Banner */
.warning-banner {
  padding: 24px;
    background: rgba(0, 8, 20, 1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 70px;
}

.warning-banner img {
  width: 48px;
  height: 48px;
}

.warning-icon {
    background: white;
    color: #ff4444;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.warning-banner span {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    max-width: 820px;
    width: 100%;
    line-height: 1.1;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: url('./images/hero.png') no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;

    gap: 60px;
        z-index: 2;
    text-align: center;

}

.hero-text {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
}

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

@media (max-width:768px){
    .hero-text h1 {
      font-size: 36px;
    }
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.6;
}

.cta-button {
    display: flex;
    width: max-content;
    justify-content: center;
    align-items: center;
    background: rgba(249, 226, 9, 1);
    box-shadow: 0px 2px 12px 0px rgba(249, 226, 9, 1);

    color: rgba(20, 31, 43, 1);
    border: none;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: unset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 12px 0px rgba(255, 255, 255, 0.3) inset,
    0px -8px 18px 0px rgba(22, 9, 48, 0.3) inset;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: rgba(16, 28, 40, 1);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: white;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
    box-shadow: 0px 0px 36px 0px rgba(47, 64, 90, 0.8) inset;
background: rgba(21, 32, 44, 1);
width: 100%;
text-align: center;
    padding: 24px;
    border-radius: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width:768px){
    .feature-card--33 {
      max-width: calc(33% - 24px);
    }
     .feature-card--50 {
      max-width: calc(50% - 24px);
    }
}

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


.feature-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Top Games Section */
.top-games {
    padding: 80px 0;
}

.top-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.top-games p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #cccccc;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.game-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(249, 226, 9, 1);
    background: transparent;
}

.game-card:hover {
    transform: translateY(-10px);
}


.game-card img {
    width: 100%;
    height: 356px;
    object-fit: cover;
}

.game-card .cta-button {
  margin: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: unset;
  width: calc(100% - 48px);
}

.game-name {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  text-align: center;
  margin: 24px;
}


/* Why Choose Second Section */
.why-choose-second {
    padding: 80px 0;
}

.why-choose-second h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: white;
}

.features-grid-second {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.feature-card-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(25, 34, 104, 1);
    border-radius: 32px;
    text-align: center;
    padding: 24px;
    
    transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (min-width:768px){
   .feature-card-second--50 {
    max-width: calc(50% - 24px);
  }

  .feature-card-second--33 {
    max-width: calc(33% - 24px);
  } 
}

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

.feature-card-second h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
    line-height: 1.2;
}

.feature-number {
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 12px;
  color: rgba(249, 226, 9, 1);
}

.feature-card-second p {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 6px;
    color: white;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.about-content .cta-button {
  margin-top: 48px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
  box-shadow: 0px 0px 36px 0px rgba(47, 64, 90, 0.8) inset;

    background: rgba(21, 32, 44, 1);
    padding: 24px;
    border-radius: 12px;
    
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.rating {
    color: rgba(241, 203, 38, 1);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    font-weight: bold;
    color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-info {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 180%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(17, 23, 84, 1);
    border-radius: 15px;
    
}

.contact-icon {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
}

.contact-icon img {
    width: 25px;
    height: 25px;
}

.contact-item span {
    color: white;
    font-size: 1.1rem;
}

.contact-form {
  max-width: 740px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0px 0px 36px 0px rgba(47, 64, 90, 0.8) inset;
    background: rgba(21, 32, 44, 1);

   border: 1px solid transparent;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cccccc;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
  width: 100%;
}

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

.disclaimer {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.disclaimer-icon {

}

.disclaimer-text h3 {
    
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.disclaimer-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

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

.footer-links a:hover {
    color: rgba(249, 226, 9, 1);
}

.footer-logos {
  padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.copyright p {
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .warning-banner span {
      font-size: 18px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 46, 1);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

        .games-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .features-grid-second {
        grid-template-columns: 1fr;
    }

    .feature-card-second {
        flex-direction: column;
        text-align: center;
    }

    .disclaimer {
        flex-direction: column;
        text-align: center;
    }

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

    .modal-content {
        margin: 10px;
        padding: 30px 20px;
    }

    .modal h2 {
        font-size: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons button {
        width: 100%;
    }
}

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

    .hero-text p {
        font-size: 1rem;
    }

    .why-choose h2,
    .top-games h2,
    .why-choose-second h2,
    .about-text h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }



    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.policy {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy h1 {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 12px;
  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:450px){
    .cta-button {
      padding-left: 16px;
      padding-right: 16px;
    }
}