@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-purple: #4A1B66;
    --secondary-purple: #6B2D8A;
    --accent-green: #00A86B;
    --accent-yellow: #D4AF37;
    --text-white: #FFFFFF;
    --text-light: #F8F8FF;
    --gradient-bg: linear-gradient(135deg, #4A1B66 0%, #6B2D8A 50%, #8B4A9C 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', 'Blauer Nue', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 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: var(--gradient-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.age-modal-content .age-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: 1.2rem;
    margin: 0 auto 1.5rem;
}

.age-modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-modal-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-primary {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #008f5a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-purple);
}

.underage-screen {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: white;
}

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

.age-icon-large {
    background: #FF4444;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.cookie-modal-content {
    max-width: 600px;
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cookie-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-modal-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

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

/* Header */
.header {
    margin: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--accent-green);
}

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

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

/* Entertainment Notice */
.entertainment-notice {
    background: var(--accent-yellow);
    color: var(--primary-purple);
    padding: 1.2rem 2rem;
    margin: 0 2rem 3rem;
    border-radius: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    justify-content: center;
}

.age-badge {
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    margin: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);

    text-decoration: none;
    border-radius: 16px;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #019D6E 0%, #005038 100%);
box-shadow: 0 -3px 3px 0 #001E15 inset;
}

.cta-button:hover {
    background: #008f5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card.green {
    background: var(--accent-green);
    color: white;
}

.benefit-card.yellow {
    background: var(--accent-yellow);
    color: var(--primary-purple);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.benefit-card p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.games-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.games-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.games-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.game-showcase {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.game-card {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

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

.play-btn {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--primary-purple);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #c49d2e;
    transform: translateX(-50%) translateY(-3px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.service-card.yellow {
    background: var(--accent-yellow);
    color: var(--primary-purple);
}

.service-card.green {
    background: var(--accent-green);
    color: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-card p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Gaming Space Section */
.gaming-space {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.gaming-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.gaming-text {
    flex: 1;
}

.gaming-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gaming-text > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.gaming-features {
    background: var(--accent-green);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.feature {
    margin-bottom: 2rem;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    line-height: 1.6;
    font-size: 1rem;
}

.gaming-image {
    flex: 1;
    text-align: center;
}

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

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card {
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent-green);
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.review-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.review-card p {
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-form input {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(74, 27, 102, 0.2);
    border-radius: 10px;
    background: white;
    color: var(--primary-purple);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input::placeholder {
    color: rgba(74, 27, 102, 0.6);
}

.contact-form button {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form button:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

.contact-info {
    text-align: center;
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.disclaimer-section {
    max-width: 900px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-badge {
    margin-bottom: 2rem;
}

.age-icon-small {
    background: #FF4444;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
}

.about h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.platform-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.icon.age-icon {
    background: #FF4444;
    font-weight: bold;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-size: 1rem;
}

.footer-nav a:hover {
    color: var(--accent-green);
    opacity: 1;
}



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

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

.copyright p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: -2px;
        right: -2px;
        background: rgba(74, 27, 102, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        backdrop-filter: blur(10px);
        border-radius: 0 0 15px 15px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-top: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .header {
        margin: 1rem;
    }

    .entertainment-notice {
        margin: 0 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        font-size: 0.9rem;
        padding: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        margin: 0 1rem;
    }

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

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

    .container {
        padding: 0 1rem;
    }

    .benefits h2,
    .games-header h2,
    .services h2,
    .reviews h2,
    .contact h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gaming-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

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

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

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

    .footer-partners {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .platform-icons {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }

    .age-modal-content h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        margin: 0 1rem 3rem;
        padding: 2rem;
    }
}

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

    .benefit-card,
    .service-card {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.service-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-white: #FFFFFF;
        --primary-purple: #2D1B42;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

*{
    opacity: 1 !important;
}
iframe{
    min-height: 600px;
}