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

body {
    font-family: 'Afacad', sans-serif;
    background: linear-gradient(135deg, #0a1426 0%, #1e3a5f 50%, #0a1426 100%);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin: 20px;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #a855f7;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Age Warning Banner */
.age-warning {
  
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 12px 25px;
    margin: 120px 20px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    text-align: center;
    justify-content: center;

    border-radius: 16px;
border: 1px solid #FFF;
background: #000;
box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.40);
display: flex;
align-items: center;

}

/* Hero Section */
.hero {
    padding: 40px 0 120px;
    position: relative;
    background: url('./assets/bg.png') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 20, 38, 0.4) 0%, rgba(30, 58, 95, 0.2) 50%, rgba(10, 20, 38, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    margin-left: 60px;
}

/* .age-badge {
    background: white;
    color: black;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
} */

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;

    border-radius: 40px;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #FE3FCE 0%, #4F195A 100%);
box-shadow: 0 -3px 3px 0 #4F195A inset;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1426 0%, #1e3a5f 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    color: white;
    text-align: left;
}

.features-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Games Section */
.games {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1426 100%);
}

.game-showcase {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.game-showcase h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.game-showcase > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.game-frame {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 30px;
}

.game-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

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

.play-button {
    background: white;
    color: #333;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1426 0%, #1e3a5f 100%);
}

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

.magician-section {
    text-align: center;
}

.magician-image {
    width: 350px;
    height: 450px;
    object-fit: contain;
}

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

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.about-feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.about-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a7a 100%);
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.testimonials-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
    object-fit: cover;
}

.testimonial h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.6;
}

/* Why Play Section */
.why-play {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1426 0%, #1e3a5f 100%);
}

.why-play-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-play-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.pure-fun {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.pure-fun::before {
    content: '⭐';
}

.start-playing {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
}

.start-playing::before {
    content: '🎁';
}

.compatible {
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
}

.compatible::before {
    content: '📱';
}

.secure {
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 100%);
}

.secure::before {
    content: '🛡️';
}

.why-play-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.why-play-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1426 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 60px 0;
    align-items: start;
}

.contact-form {
    background: none;
    padding: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-family: 'Afacad', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-info {
    text-align: left;
    padding-top: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 1rem;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 80px auto 0;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.disclaimer-icon {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.disclaimer-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a1426 0%, #1e3a5f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.app-icons {
    display: flex;
    gap: 20px;
    justify-content: left;
    margin-bottom: 60px;
}

.app-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 18px;
}

.app-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* .responsible-gaming {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 40px;
} */

/* .responsible-gaming img {
    height: 50px;
    margin: 0 15px;
} */

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

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1426 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    max-width: 450px;
    margin: 20px;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.modal h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.modal p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.6;
    font-size: 1rem;
}

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

.modal-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
}

.modal-btn.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
}

.cookie-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.age-restricted {
    background: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

.age-restricted-content {
    text-align: center;
    color: white;
}

.age-restricted-content .age-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.age-restricted-content h2 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .age-warning {
        margin: 80px 15px 0 15px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero .container {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

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

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

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

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

    .why-play-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .modal-content {
        margin: 15px;
        padding: 30px 25px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header {
        margin: 15px;
        padding: 12px 25px;
    }

    .age-warning {
        margin: 100px 10px 0 10px;
        padding: 8px 15px;
        font-size: 12px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features,
    .games,
    .about,
    .testimonials,
    .why-play,
    .contact {
        padding: 60px 0;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .game-image img {
        height: 250px;
    }

    .magician-image {
        width: 280px;
        height: 350px;
    }

    .features-container,
    .game-showcase {
        padding: 30px 20px;
    }
}
.mobile-menu{
    display: none !important;
}

iframe{
    min-height: 600px;
}