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

body {
    font-family: 'Ubuntu', sans-serif;
    background: rgba(22, 9, 48, 1);
    color: white;
    line-height: 1.6;
    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: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 20px;
    border: 2px solid #e91e63;
}

.age-modal-content {
    border: 2px solid #ff4444;
}

.cookie-modal-content {
    border: 2px solid #e91e63;
}

.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: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-reject {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-learn {
    background: linear-gradient(45deg, #6b6b7d, #555563);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    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;
}

.nav-menu a:hover {
    color: #e91e63;
}

.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(22, 9, 48, 1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 80px;
}

.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: 670px;
    width: 100%;
    line-height: 1.1;
}

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

.hero-content {
    padding: 0 20px;
    max-width: 800px;
    gap: 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

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

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

.cta-button {
    display: flex;
    width: max-content;
    background: linear-gradient(180deg, #FD2479 0%, #8D34FD 100%);
    border: 2px solid;
    border-image-source: linear-gradient(180deg, #FFFFFF 0%, #441A73 100%);
    box-shadow: 0px 4px 12px 0px rgba(255, 255, 255, 1) inset,
    0px -8px 18px 0px rgba(22, 9, 48, 1) inset;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    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;
}

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

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

.feature-card {
    background: rgba(40, 30, 61, 1);
    padding: 24px;
    border-radius: 32px;
    text-align: center;
    border: 2px solid rgba(233, 30, 99, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #e91e63;
}

.feature-icon {
  
    margin: 0 auto 20px;
 
    display: flex;
    align-items: center;
    justify-content: center;
}


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

.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: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.game-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(251, 37, 123, 1);
    transition: transform 0.3s ease;
    background: rgba(40, 30, 61, 1);
}

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

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

.game-card .cta-button {
  margin: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: unset;
}

.game-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.game-button:hover {
    transform: translateX(-50%) translateY(-3px);
}

/* 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(40, 30, 61, 1);
    border-radius: 32px;
    text-align: center;
    padding: 24px;
    border: 2px solid rgba(233, 30, 99, 0.3);
    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);
    border-color: #e91e63;
}

.feature-number {
   background: linear-gradient(180deg, #FD2479 0%, #8D34FD 100%);
   box-shadow: 0px 4px 12px 0px rgba(255, 255, 255, 1) inset,
   0px -8px 18px 0px rgba(22, 9, 48, 1) inset;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

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

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

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

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

.about-image {
  height: 346px;
}

.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;
  margin-left: auto;
  margin-right: auto;
}

/* 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: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(40, 30, 61, 1);
    padding: 24px;
    border-radius: 32px;
    border: 2px solid rgba(233, 30, 99, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
}

.rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

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

.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 1fr;
    gap: 24px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border-radius: 15px;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e91e63, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background: rgba(22, 9, 48, 1);
   border: 1px solid rgba(68, 26, 115, 1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.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;
    border-top: 1px solid rgba(233, 30, 99, 0.3);
}

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

.disclaimer-icon {
    background: #ff4444;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    border: 3px solid white;
}

.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: 20px;
    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;
}

.footer-links a:hover {
    color: #ff4444;
}

.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;
    }

    .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;
    }

    .games-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;
}

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

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