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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 24px;
    z-index: 1000;
    display: none;
    border: 1px solid #333;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-popup.show {
    display: block;
}

.cookie-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cookie-content p {
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-btn.accept {
    background: #9ACD32;
    color: #000;
}

.cookie-btn.accept:hover {
    background: #8FBC1F;
}

.cookie-btn.decline,
.cookie-btn.more {
    background: transparent;
    color: #fff;
    border: 1px solid #333;
}

.cookie-btn.decline:hover,
.cookie-btn.more:hover {
    background: #333;
}

/* Cookie More Info Popup */
.cookie-more-info {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

.cookie-more-info.show {
    display: flex;
}

.cookie-more-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    border: 1px solid #333;
}

.cookie-more-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cookie-more-content p {
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cookie-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-buttons-vertical .cookie-btn {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    background: #0a0a0a;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    color: #9ACD32;
}

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

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #9ACD32;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
    padding-top: 100px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-text {
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-final {
    font-size: 16px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 4px;
    opacity: 0.8;
}

.shape-1 {
    width: 32px;
    height: 32px;
    background: #4CAF50;
    top: 15%;
    left: 15%;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 24px;
    height: 24px;
    background: #4CAF50;
    top: 25%;
    right: 20%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 16px;
    height: 16px;
    background: #2196F3;
    bottom: 40%;
    left: 25%;
    animation: float 7s ease-in-out infinite;
}

.shape-4 {
    width: 20px;
    height: 20px;
    background: #2196F3;
    bottom: 25%;
    right: 30%;
    animation: float 5s ease-in-out infinite reverse;
}

.shape-5 {
    width: 28px;
    height: 28px;
    background: #4CAF50;
    top: 45%;
    left: 8%;
    transform: rotate(45deg);
    animation: float 9s ease-in-out infinite;
}

.shape-6 {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    top: 35%;
    right: 12%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-7 {
    width: 24px;
    height: 24px;
    background: #2196F3;
    bottom: 60%;
    right: 40%;
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}

.shape-8 {
    width: 16px;
    height: 16px;
    background: #00BCD4;
    bottom: 15%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-9 {
    width: 32px;
    height: 32px;
    background: #4CAF50;
    bottom: 10%;
    left: 40%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.shape-10 {
    width: 20px;
    height: 20px;
    background: #00BCD4;
    top: 60%;
    right: 8%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* How to Start Section */
.how-to-start {
    padding: 100px 0;
    background: #111111;
}

.how-to-start .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffffff;
}

.how-text p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.how-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Why Different Section */
.why-different {
    padding: 100px 0;
    background: #0a0a0a;
}

.why-different h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature {
    background: #2a2a2a;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #3a3a3a;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: #111111;
}

.games-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.games-intro {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.game-card {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #3a3a3a;
    display: flex;
    gap: 24px;
}

.game-icon {
    flex-shrink: 0;
}

.game-icon img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.game-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.3;
}

.game-content p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.5;
}

.game-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.game-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.game-content li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
    line-height: 1.4;
}

.game-content li::before {
    content: "•";
    color: #9ACD32;
    position: absolute;
    left: 0;
}

.google-play-btn {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.google-play-btn:hover {
    opacity: 0.8;
}

.google-play-btn img {
    height: 40px;
    width: auto;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.reviews-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #ffffff;
}

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

.review-card {
    background: #2a2a2a;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #3a3a3a;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #111111;
}

.contact-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #ffffff;
}

.contact-section > p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 60px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9ACD32;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #9ACD32;
    color: #000;
    border: none;
    border-radius: 12px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #8FBC1F;
}

.contact-email {
    text-align: center;
    margin-top: 40px;
}

.contact-email p {
    font-size: 18px;
    color: #9ACD32;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .nav-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: none;
    }
    header .container{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .hero {
        padding: 40px 0 80px;
        text-align: center;
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .hero-description,
    .hero-text,
    .hero-final {
        font-size: 16px;
    }

    .how-to-start .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .how-content h2 {
        font-size: 32px;
    }

    .why-different h2,
    .games-section h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: 32px;
    }

    .features-grid,
    .games-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        flex-direction: column;
        text-align: center;
    }

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

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

    .cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

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

    .cookie-more-content {
        padding: 24px;
        margin: 16px;
    }
}

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

    .how-content h2,
    .why-different h2,
    .games-section h2,
    .reviews-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .game-card {
        padding: 24px;
    }

    .feature,
    .review-card {
        padding: 24px;
    }
}