* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.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(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-icon {
    width: 40px;
    height: 40px;
    /* border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 24px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.1); */
}

.age-modal h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-modal p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.enter-btn, .leave-btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    min-width: 120px;
}

.enter-btn {
    background: linear-gradient(45deg, #8A2387, #E94057, #F27121);
    color: white;
}

.leave-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.underage-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.underage-screen.show {
    display: flex;
}

/* .underage-content .age-icon {
    width: 200px;
    height: 200px;
    font-size: 48px;
    border-width: 5px;
} */

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
}

.cookie-modal.show {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.cookie-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-modal h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cookie-modal p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.accept-cookies-btn, .more-info-btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
    display: block;
    width: 100%;
    text-align: center;
}

.accept-cookies-btn {
    background: linear-gradient(45deg, #8A2387, #E94057, #F27121);
    color: white;
    margin-bottom: 10px;
}

.more-info-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background:  
                url('./assets/bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header inside Hero */
.header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 0 0 30px 30px;
    margin: 20px;

    border-radius: 16px;
background: rgba(255, 255, 255, 0.20);
box-shadow: 0 0 24px 0 rgba(144, 35, 228, 0.40);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
   
}

.disclaimer-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
 
    width: 100%;
    border-radius: 16px;
border: 1px solid #FFF;
background: #0F0417;
box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.40);
}


.disclaimer-text {
    font-size: 16px;
    color: white;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 900px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: linear-gradient(45deg, #8A2387, #E94057, #F27121);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: fit-content;
    text-decoration: none;
    border-radius: 16px;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #1B0030 0%, #9101FF 100%);
box-shadow: 0 -3px 3px 0 #1B0030 inset;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(142, 35, 135, 0.5);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 30, 50, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #8A2387;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.pink {
    background: #ff69b4;
}

.feature-icon.green {
    background: #00ff88;
}

.feature-icon.blue {
    background: #00bfff;
}

.feature-icon.yellow {
    background: #ffd700;
}

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

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

/* Experience Fun Section */
.experience-fun {
    padding: 80px 0;
    background: #1a1a1a;
}

.experience-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(90deg, #8A2387 0%, #E94057 50%, #F27121 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #1B0030 0%, #9101FF 100%);
box-shadow: 0 -3px 3px 0 #1B0030 inset;
border-radius: 16px;
border-left: 4px solid #FFF;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #9023E4 0%, #000 100%);
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.experience-item > * {
    position: relative;
    z-index: 2;
}

.number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.content p {
    line-height: 1.6;
    color: white;
    font-size: 16px;
}

/* Safe Escape Section */
.safe-escape {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.escape-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
}

.main-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.escape-features {
    margin-bottom: 40px;
}

.escape-feature {
    margin-bottom: 30px;
}

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

.escape-feature p {
    line-height: 1.6;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.escape-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.escape-image img {
    max-width: 100%;
    height: auto;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-description {
    font-size: 16px;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.game-showcase {
    display: flex;
    justify-content: center;
}

.game-frame {
    background: linear-gradient(135deg, #8A2387 0%, #E94057 50%, #F27121 100%);
    padding: 30px;
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    height: 100%;
}

.game-screen {
    background: #000;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.game-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.game-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.game-logo img {
    max-width: 300px;
    height: auto;
}

.play-now-btn {
    background: linear-gradient(45deg, #8A2387, #E94057, #F27121);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.reviews-description {
    text-align: center;
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card.last-row {
    grid-column: span 1;
}

.review-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.review-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.review-card {
    background: rgba(30, 30, 50, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #8A2387;
}

.reviewer-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reviewer-avatar img {
    max-width: 100px;
    max-height: 100px;
    /* border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8A2387; */
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.reviewer-details p {
    line-height: 1.6;
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.contact-wrapper {
    background: linear-gradient(135deg, #8A2387 0%, #E94057 50%, #F27121 100%);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;

    border-radius: 16px;
border: 1px solid #FFF;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #9023E4 0%, #000 100%), radial-gradient(286.37% 67% at 4.6% 40.8%, #2E008B 0%, #000 100%);
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contact-wrapper > * {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 16px;
}

.contact-form input::placeholder {
    color: #999;
}

.send-btn {
    width: 100%;
    background: linear-gradient(45deg, #8A2387, #E94057, #F27121);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    border-radius: 16px;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #1B0030 0%, #9101FF 100%);
box-shadow: 0 -3px 3px 0 #1B0030 inset;
}

.contact-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.disclaimer-content {
    background: rgba(30, 30, 50, 0.8);
    padding: 50px;
    border-radius: 30px;
    border: 2px solid #8A2387;

    margin: 0 auto;
    text-align: center;
}

.disclaimer-content .disclaimer-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 24px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

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

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0 30px;
}
.footer .container{
    border-radius: 32px;
background: rgba(255, 255, 255, 0.05);
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* .platform-icons .age-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8A2387, #E94057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    color: white;
} */

/* .platform-icons img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
} */

.footer-nav {
    margin-bottom: 40px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 50px;

    border-radius: 16px;
background: rgba(255, 255, 255, 0.20);
box-shadow: 0 0 24px 0 rgba(144, 35, 228, 0.40);
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

/* .responsible-gaming img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
} */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid .review-card:nth-child(4),
    .reviews-grid .review-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .escape-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .experience-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
    
    .game-frame {
        padding: 20px;
    }
    
    .header {
        margin: 10px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card,
    .review-card {
        padding: 25px;
    }
    
    .experience-item {
        padding: 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .disclaimer-content {
        padding: 30px;
    }
}
.hamburger{
    display: none !important;
}

iframe{
    min-height: 600px;
}