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

body {
    font-family: 'Cairo', sans-serif;
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 2px solid #3498db;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

.btn-cta {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #1A4A87 0%, #4487CA 100%);
box-shadow: 0 -3px 3px 0 #19365A inset;
}

.btn-cta:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-send {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.btn-send:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-modal .age-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.cookie-modal .cookie-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

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

.modal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
}

.modal-content button {
    margin: 10px;
    min-width: 150px;
}

/* Underage Screen */
.underage-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10001;
    color: white;
    text-align: center;
}

.underage-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.underage-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 30px;
}

.underage-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.underage-content p {
    font-size: 24px;
    opacity: 0.8;
}

/* Header */
.header {
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

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

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

.nav a:hover {
    color: #3498db;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Age Warning Top */
.age-warning-top {
    padding: 80px 0 20px;
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
}

.age-warning {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;

    border-radius: 16px;
border: 1px solid #FFF;
background: #E54539;
box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.40);
justify-content: center;
}

.age-badge {
    background: white;
    color: #e74c3c;
    padding: 8px 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    min-width: 50px;
    text-align: center;
}

.age-warning p {
    color: white;
    font-size: 16px;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 40px 0 80px;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.age-warning {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.age-badge {
    background: white;
    color: #e74c3c;
    padding: 8px 15px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    min-width: 50px;
    text-align: center;
}

.age-warning p {
    color: white;
    font-size: 16px;
    margin: 0;
}

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

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #bdc3c7;
    line-height: 1.8;
}

.hero-image {
    text-align: center;
}

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

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #f1c40f;
}

.benefits-container {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    padding: 50px;
    border-radius: 25px;

    border-radius: 16px;
border: 1px solid #000;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #E5B570 0%, #FDF79E 100%);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);

    border-radius: 16px;
border: 1px solid #000;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #E5B570 0%, #FDF79E 100%);
}

.privacy-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);

    border-radius: 16px;
border: 1px solid #000;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #E5B570 0%, #FDF79E 100%);
}

.benefit-card h3,
.privacy-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p,
.privacy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #f1c40f;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f1c40f;
}

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

/* Games Section */
.games {
    padding: 80px 0;
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
}

.games-header {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.games-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.games-header p {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.game-showcase {
    text-align: center;
}

.game-container {
    background: #95a5a6;
    padding: 30px;
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.game-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #7f8c8d;
    padding: 20px;
}

.game-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f1c40f;
}

.reviews-intro {
    text-align: center;
    font-size: 18px;
    color: white;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.review-card p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #f1c40f;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: white;
}

.about-text p {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

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

.contact-wrapper {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-wrapper h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #f1c40f;
}

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

.contact-form-wrapper {
    background: rgba(52, 73, 94, 0.8);
    padding: 40px;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.contact-form input:focus {
    outline: none;
    border-color: #3498db;
}

.contact-info {
    padding: 40px 0;
}

.contact-item {
    margin-bottom: 25px;
    font-size: 16px;
    color: white;
}

.contact-item strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
}

.disclaimer-wrapper {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    /* background: linear-gradient(45deg, #e74c3c, #c0392b); */
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 30px;
}

.disclaimer h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.disclaimer p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
}

/* Footer */
.footer {
    background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.footer-icons .age-icon {
    background: white;
    color: #2c3e50;
    padding: 8px 12px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}



.footer-icons img:hover {
    filter: brightness(1);
}
.footer-logo{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-logo h3 {
    font-size: 24px;
    color: white;
    margin: 0;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
}



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

.footer-copyright p {
    color: white;
    font-size: 14px;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .benefits-top {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-column {
        gap: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid .review-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .games-header,
    .contact-wrapper,
    .disclaimer-wrapper {
        padding: 30px 20px;
    }
    
    .benefits-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .benefits h2,
    .services h2,
    .games-header h2,
    .reviews h2,
    .about-text h2,
    .contact-wrapper h2 {
        font-size: 28px;
    }
    
    .disclaimer h2 {
        font-size: 24px;
    }
    
    .benefit-card,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .underage-content h1 {
        font-size: 36px;
    }
    
    .underage-content p {
        font-size: 18px;
    }
    
    .service-item h3 {
        font-size: 20px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
}

/* Header Scroll Effect */
.header.scrolled {
    background: rgba(44, 62, 80, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: radial-gradient(50% 50% at 50% 50%, #202F42 0%, #101A26 100%);
        transition: right 0.3s ease;
        padding: 30px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav.mobile-open {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.mobile-menu-toggle{
    display: none !important;
}