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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #f5f5f5;
    color: #333;
    padding: 40px;
    border-radius: 24px;
    max-width: 420px;
    text-align: left;
}

.cookie-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #555;
}

.cookie-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.cookie-btn.accept {
    background: #2d5016;
    color: white;
    margin-bottom: 12px;
}

.cookie-btn.accept:hover {
    background: #3d6820;
}

.cookie-btn.decline {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-btn.decline:hover {
    background: #d0d0d0;
}

/* Header */
.header {
    background: linear-gradient(135deg, #5dd400 0%, #7ae637 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 60px 60px;
    margin: 0 20px;

    border-radius: 65px;
border-bottom: 1px solid #1F2937;
background: #59CD00;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;

    text-decoration: none;
}

.logo img {
    height: 32px;
}

.nav {
    display: flex;
    gap: 48px;
}

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

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 40px 0 60px;
}

.hero-content {
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
    border-radius: 60px;
    padding: 80px 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
    position: relative;
    overflow: hidden;
    padding-top: 40px;

    border-radius: 69px;
background: #2E2E2E;
}

.hero-text {
    flex: 1;
    padding-bottom: 80px;
}

.hero-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 52px;
    color: #a4d96c;
    margin-bottom: 8px;
    line-height: 1.1;
    font-weight: 400;

    background: linear-gradient(90deg, #59CD00 0%, #DEFFC5 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 58px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.1;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 680px;
}

.hero-image {
    flex: 0 0 auto;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #5dd400 0%, #7ae637 100%);
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(93, 212, 0, 0.3);

    border-radius: 15px;
border: 3px solid #4EF500;
background: linear-gradient(180deg, #1E6000 0%, #4EF500 49.04%, #1E6000 100%);
box-shadow: 0 0 46.2px 1px rgba(78, 245, 0, 0.46);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(93, 212, 0, 0.4);
}

/* About Section */
.about {
    padding: 60px 0;
}

.about-content {
    background: linear-gradient(135deg, #a4d96c 0%, #c5e89e 100%);
    border-radius: 60px;
    padding: 100px 100px;
    display: flex;
    align-items: center;
    gap: 100px;

    border-radius: 69px;
background: #4EF500;
}

.about-image {
    flex: 0 0 auto;
    max-width: 420px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    color: #1a1a1a;
}

.section-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 64px;
    margin-bottom: 32px;
    line-height: 1.1;
    font-weight: 400;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.philosophy {
    font-weight: 700;
    margin-top: 28px;
    color: #1a1a1a;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
}

.advantages .container {
    padding: 0 40px;
}

.advantages-wrapper {
    background: linear-gradient(180deg, #2d5016 0%, #234010 100%);
    border-radius: 60px;
    padding: 80px 100px 100px;

    border-radius: 69px;
background: #1A5300;
}

.advantages .section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 80px;
}

.advantages-list {
    display: grid;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
}

.advantage-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.advantage-item p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Games Section */
.games {
    padding: 60px 0;
}

.games .container {
    padding: 0 40px;
}

.games-wrapper {
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
    border-radius: 60px;
    padding: 80px 100px 100px;
}

.games .section-title {
    text-align: center;
    color: #a4d96c;
    margin-bottom: 80px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
}

.game-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    max-width: 325px;
}

.game-card:hover {
    transform: scale(1.03);
}

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

/* CTA Section */
.cta {
    padding: 60px 0;
}

.cta .container {
    padding: 0 40px;
}

.cta-wrapper {
    background: linear-gradient(180deg, #2d5016 0%, #234010 100%);
    border-radius: 60px;
    padding: 80px 120px;
    text-align: center;

    border-radius: 69px;
background: #1A5300;
}

.cta-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.2;
    font-weight: 400;
}

.cta-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Contacts Section */
.contacts {
    padding: 80px 0 60px;
    background: #1a1a1a;
}

.contacts .section-title {
    text-align: center;
    color: #4EF500;
    margin-bottom: 48px;
}

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

.contact-item {
    font-size: 17px;
    margin-bottom: 12px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-item .icon {
    font-size: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 32px;
}

.footer .container {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footer-logo img {
    height: 32px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.twitter {
    background: #5dd400;
}

.social-icon.twitter::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.social-icon.facebook {
    background: #5dd400;
}

.social-icon.facebook::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 3.667h-3.533v7.98H9.101z'/%3E%3C/svg%3E");
}

.social-icon:hover {
    transform: scale(1.1);
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        padding: 60px 60px 0;
        gap: 60px;
    }

    .about-content {
        padding: 80px 80px;
        gap: 80px;
    }

    .advantages-wrapper,
    .games-wrapper,
    .cta-wrapper {
        padding: 60px 80px 80px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 50px;
    }

    .section-title {
        font-size: 56px;
    }

    .hero-image {
        max-width: 400px;
    }

    .about-image {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .header {
        border-radius: 0 0 40px 40px;
        margin: 0 10px;
    }

    .header .container {
        padding: 0 20px;
    }

    .nav {
        gap: 32px;
        font-size: 15px;
    }

    .hero-content {
        padding: 50px 40px 0;
        gap: 40px;
    }

    .hero-text {
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 44px;
    }

    .hero-image {
        max-width: 350px;
    }

    .about-content {
        padding: 60px 60px;
        gap: 60px;
    }

    .about-image {
        max-width: 300px;
    }

    .section-title {
        font-size: 48px;
    }

    .advantages-wrapper,
    .games-wrapper,
    .cta-wrapper {
        padding: 50px 60px 70px;
    }

    .games-grid {
        gap: 30px;
    }
}

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

    .header {
        border-radius: 0 0 30px 30px;
    }

    .header .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        height: 28px;
    }

    .nav {
        gap: 24px;
        font-size: 14px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 32px 0;
        border-radius: 40px;
    }

    .hero-text {
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-image {
        max-width: 320px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
        border-radius: 40px;
    }

    .about-image {
        max-width: 280px;
    }

    .section-title {
        font-size: 42px;
    }

    .about-text p {
        font-size: 15px;
    }

    .advantages-wrapper,
    .games-wrapper,
    .cta-wrapper {
        padding: 40px 32px 60px;
        border-radius: 40px;
    }

    .advantages-list {
        gap: 36px;
    }

    .advantage-item h3 {
        font-size: 20px;
    }

    .advantage-item p {
        font-size: 15px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-title {
        font-size: 42px;
    }

    .cta-text {
        font-size: 15px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
}

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

    .header .container {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .nav {
        gap: 16px;
        font-size: 13px;
    }

    .hero-content {
        padding: 32px 24px 0;
    }

    .hero-text {
        padding-bottom: 32px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image {
        max-width: 280px;
    }

    .btn-primary {
        padding: 16px 40px;
        font-size: 15px;
    }

    .about-content {
        padding: 40px 28px;
    }

    .about-image {
        max-width: 240px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-text p {
        font-size: 14px;
    }

    .advantages-wrapper,
    .games-wrapper,
    .cta-wrapper {
        padding: 36px 24px 50px;
    }

    .advantages .section-title,
    .games .section-title {
        margin-bottom: 50px;
    }

    .advantages-list {
        gap: 28px;
    }

    .advantage-item h3 {
        font-size: 18px;
    }

    .advantage-item p {
        font-size: 14px;
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-text {
        font-size: 14px;
    }

    .contact-item {
        font-size: 15px;
        flex-direction: column;
        gap: 4px;
    }

    .cookie-content {
        padding: 32px 24px;
        margin: 20px;
    }

    .cookie-content h2 {
        font-size: 24px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .cookie-btn {
        padding: 14px;
        font-size: 14px;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-logo img {
        height: 28px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon::before {
        width: 22px;
        height: 22px;
    }
}



/* Game Detail Section */
.game-detail {
    padding: 60px 0;
}

.game-detail .container {
    padding: 0 40px;
}

.game-detail-wrapper {
    background: linear-gradient(135deg, #5dd400 0%, #7ae637 100%);
    border-radius: 60px;
    padding: 80px 100px;
    color: #1a1a1a;
}

.game-detail-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 64px;
    margin-bottom: 40px;
    line-height: 1.1;
    font-weight: 400;
    color: #1a1a1a;
}

.game-detail-image {
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    max-width: 400px;
}

.game-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 325px;
}

.game-detail-description {
    margin-bottom: 40px;
}

.game-detail-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.game-detail-subtitle {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 40px;
    margin-bottom: 28px;
    line-height: 1.2;
    font-weight: 400;
    color: #2d2d2d;
}

.game-detail-features {
    list-style: none;
    margin-bottom: 48px;
    padding-left: 0;
}

.game-detail-features li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    color: #1a1a1a;
}

.game-detail-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    font-size: 24px;
    color: #2d5016;
}

.btn-play {
    display: inline-block;
    background: linear-gradient(135deg, #2d5016 0%, #3d6820 100%);
    color: #ffffff;
    padding: 18px 56px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.4);

    border-radius: 15px;
border: 3px solid #4EF500;
background: linear-gradient(180deg, #1E6000 0%, #4EF500 49.04%, #1E6000 100%);
box-shadow: 0 0 46.2px 1px rgba(78, 245, 0, 0.46);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .game-detail-wrapper {
        padding: 60px 60px;
    }

    .game-detail-title {
        font-size: 56px;
    }

    .game-detail-subtitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .game-detail-wrapper {
        padding: 50px 40px;
        border-radius: 40px;
    }

    .game-detail-title {
        font-size: 48px;
    }

    .game-detail-image {
        max-width: 100%;
    }

    .game-detail-description p,
    .game-detail-features li {
        font-size: 15px;
    }

    .game-detail-subtitle {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .game-detail-wrapper {
        padding: 40px 28px;
    }

    .game-detail-title {
        font-size: 40px;
    }

    .game-detail-description p,
    .game-detail-features li {
        font-size: 14px;
    }

    .game-detail-subtitle {
        font-size: 28px;
    }

    .game-detail-features li {
        padding-left: 24px;
    }

    .btn-play {
        padding: 16px 48px;
        font-size: 15px;
    }
}