/* Reset and Base Styles */

/* Floating Animation Keyframes */
@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3),
                    0px 0px 30px rgba(136, 0, 255, 0.6),
                    0px 0px 50px rgba(136, 0, 255, 0.4);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
        box-shadow: 0px 8px 25px 0px rgba(255, 255, 255, 0.4),
                    0px 0px 40px rgba(136, 0, 255, 0.8),
                    0px 0px 60px rgba(136, 0, 255, 0.6);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
        box-shadow: 0px 12px 30px 0px rgba(255, 255, 255, 0.5),
                    0px 0px 50px rgba(136, 0, 255, 1),
                    0px 0px 70px rgba(136, 0, 255, 0.8);
    }
    75% {
        transform: translateY(-8px) rotate(-0.5deg);
        box-shadow: 0px 8px 25px 0px rgba(255, 255, 255, 0.4),
                    0px 0px 40px rgba(136, 0, 255, 0.8),
                    0px 0px 60px rgba(136, 0, 255, 0.6);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3),
                    0px 0px 30px rgba(136, 0, 255, 0.6),
                    0px 0px 50px rgba(136, 0, 255, 0.4);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3),
                    0px 0px 30px rgba(136, 0, 255, 0.6),
                    0px 0px 50px rgba(136, 0, 255, 0.4);
    }
    50% {
        box-shadow: 0px 8px 25px 0px rgba(255, 255, 255, 0.5),
                    0px 0px 50px rgba(136, 0, 255, 1),
                    0px 0px 70px rgba(136, 0, 255, 0.8),
                    0px 0px 90px rgba(136, 0, 255, 0.6);
    }
    100% {
        box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3),
                    0px 0px 30px rgba(136, 0, 255, 0.6),
                    0px 0px 50px rgba(136, 0, 255, 0.4);
    }
}

/* Sparkle Animation Keyframes */
@keyframes sparkle {
    0% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(-20px) translateX(10px) scale(1);
        opacity: 1;
    }
    90% {
        transform: translateY(-100px) translateX(50px) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-150px) translateX(80px) scale(0);
        opacity: 0;
    }
}

@keyframes sparkle2 {
    0% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    15% {
        transform: translateY(-30px) translateX(-15px) scale(1);
        opacity: 1;
    }
    85% {
        transform: translateY(-120px) translateX(-40px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-180px) translateX(-60px) scale(0);
        opacity: 0;
    }
}

@keyframes sparkle3 {
    0% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    20% {
        transform: translateY(-25px) translateX(20px) scale(1);
        opacity: 1;
    }
    80% {
        transform: translateY(-110px) translateX(60px) scale(0.6);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-160px) translateX(90px) scale(0);
        opacity: 0;
    }
}

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

html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #170023;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Header Styles */
.header {
    background: rgba(136, 0, 255, 0.8);
    backdrop-filter: blur(30px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    height: 70px;
    .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
}

.menu:first-child {
    border: 1px solid #ffffff;
    border-radius: 40px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

/* Disclaimer Page Styles */
.disclaimer-main {
    margin-top: 80px;
    padding: 20px 100px;
}

.disclaimer-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 10px;
    padding: 20px 100px;
    width: 100%;
}

.disclaimer-content {
    background: linear-gradient(180deg, #020023 0%, #7200D3 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    gap: 40px;
    width: 100%;
}

.disclaimer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-stroke: 1px #ffffff;
    margin: 0;
}

.disclaimer-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #ffffff;
    text-align: left;
}

.disclaimer-text p {
    margin-bottom: 1rem;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.disclaimer-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.disclaimer-text h2:first-of-type {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(136, 0, 255, 0.3) 0%, transparent 70%);
    border-radius: 40px;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.main-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.4),
                0px 0px 30px rgba(136, 0, 255, 0.6),
                0px 0px 50px rgba(136, 0, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;

    animation: floating 6s ease-in-out infinite;

}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(136, 0, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(136, 0, 255, 0.1) 100%);
    border-radius: 30px;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 20px;
    width: 100%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #ffffff;
    text-stroke: 1px #ffffff;
    margin: 0;
    word-wrap: break-word;
}

.hero-description {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    width: 100%;
}

.hero-description p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: #ffffff;
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 280px;
    margin: 20px auto 0;
}

.btn-play {
    background: #8800FF;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-play:hover {
    background: #7700DD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 0, 255, 0.4);
}

.hero-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    animation: floating 9s ease-in-out infinite;
    animation-delay: 1s;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(136, 0, 255, 0.2) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
}

.game-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0px 0px 20px rgba(136, 0, 255, 0.6));
    transition: all 0.3s ease;
}

.game-logo:hover {
    filter: drop-shadow(0px 0px 30px rgba(136, 0, 255, 0.8));
    transform: scale(1.02);
}

/* Popular Game Section */
.popular-game {
    padding: 20px 100px;
}

.game-section {
    background: rgba(136, 0, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* Sparkle elements */
.game-section::before,
.game-section::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffffff 0%, #8800FF 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.game-section::before {
    top: 20%;
    left: 15%;
    animation: sparkle 3s ease-in-out infinite;
    animation-delay: 0s;
}

.game-section::after {
    top: 30%;
    right: 20%;
    animation: sparkle2 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Additional sparkle elements */
.game-section .sparkle-1,
.game-section .sparkle-2,
.game-section .sparkle-3,
.game-section .sparkle-4,
.game-section .sparkle-5 {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffffff 0%, #ff8c00 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.game-section .sparkle-1 {
    top: 15%;
    left: 25%;
    animation: sparkle 8.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.game-section .sparkle-2 {
    top: 25%;
    right: 15%;
    animation: sparkle2 9.2s ease-in-out infinite;
    animation-delay: 1.5s;
}

.game-section .sparkle-3 {
    top: 35%;
    left: 10%;
    animation: sparkle3 7.8s ease-in-out infinite;
    animation-delay: 2s;
}

.game-section .sparkle-4 {
    top: 45%;
    right: 25%;
    animation: sparkle 11.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.game-section .sparkle-5 {
    top: 55%;
    left: 20%;
    animation: sparkle2 6.2s ease-in-out infinite;
    animation-delay: 2.5s;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-stroke: 1px #ffffff;
    margin: 0;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #F1F1F1;
    margin: 0;
}

.games-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
}

.game-image {
    width: 500px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 500px;
}

/* About Game Section */
.about-game {
    padding: 20px 100px;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 0;
    box-shadow: 0px 4px 20px 0px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 40px;
    width: 100%;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-stroke: 1px #ffffff;
    margin: 0;
}

.about-description {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex-shrink: 0;
}

.forest-image {
    width: 400px;
    height: 205px;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid #ffffff;
}

/* Contact Section */
.contact-section {
    padding: 20px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.subscribe-widget {
    background: #2E2E2E;
    border-radius: 20px;
    padding: 60px;
    width: 700px;
    max-width: 100%;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 24px;
    text-align: center;
}

.contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2em;
    text-transform: uppercase;
    color: #ffffff;
    text-stroke: 1px #ffffff;
    margin: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 12px;
    justify-content: center;
}

.email-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.email-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.email-info span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
}

.form-group label {
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3em;
    color: #ffffff;
    margin: 0;
}

.form-group input,
.form-group textarea {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3em;
    color: #999999;
    align-self: stretch;
    gap: 10px;
}

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

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.btn-contact {
    background: #8800FF;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: stretch;
    text-align: center;
}

.btn-contact:hover {
    background: #7700DD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 0, 255, 0.4);
}

/* Footer */
.footer {
    background: #170023;
    padding: 40px 100px;
    width: 1440px;
    max-width: 100%;
    margin:auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.footer-disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 24px;
}

.footer-disclaimer p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #ffffff;
    margin: 0;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 6.35px;
}

.age-badge {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 17.14px;
    line-height: 1.25em;
    color: #ffffff;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    gap: 24px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    margin: 0;
    border-left: 3px solid rgba(136, 0, 255, 0.5);
    padding-left: 15px;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;

    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popup-content h2,
.popup-content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.popup-content p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background: #8800FF;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #7700DD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 0, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 350px;
    z-index: 1500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-link {
    color: #8800FF;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 100px;
    }

    .hero-content {
        flex-direction: row;
        gap: 60px;
    }

    .main-container {
        flex: 1;
        max-width: 900px;
    }

    .hero-image {
        flex-shrink: 0;
        width: 500px;
        height: 500px;
    }

    .about-description {
        flex-direction: row;
        gap: 40px;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex-shrink: 0;
    }

    .footer-links {
        flex-direction: row;
        justify-content: space-between;
    }

    .popup-buttons {
        justify-content: center;
    }

    .cookie-buttons {
        justify-content: space-between;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        animation: floating 7s ease-in-out infinite;
        animation-delay: 0.3s;
    }

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

    .hero-image {
        width: 400px;
        height: 400px;
        animation: floating 9s ease-in-out infinite;
        animation-delay: 1s;
    }

    .game-image {
        width: 400px;
        height: 320px;
    }

    .about-description {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* Optimize sparkles for tablet */
    .game-section::before,
    .game-section::after {
        width: 3.5px;
        height: 3.5px;
    }
    
    .game-section .sparkle-1,
    .game-section .sparkle-2,
    .game-section .sparkle-3,
    .game-section .sparkle-4,
    .game-section .sparkle-5 {
        width: 2.5px;
        height: 2.5px;
    }
}

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

    .header {
        height: 60px;
    }

    .header-content {
        gap: 10px;
    }

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

    .header-container {
        gap: 10px;
    }

    .menu {
        padding: 8px 12px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero {
        margin-top: 60px;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        animation: floating 8s ease-in-out infinite;
        animation-delay: 0.5s;
    }

    .main-container {
        padding: 40px 20px;
        max-width: 100%;
    }

    .hero-main {
        padding: 0;
        gap: 15px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2em;
    }

    .hero-description {
        width: 100%;
        padding: 20px;
    }

    .hero-description p {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 280px;
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
        height: 350px;
        animation: floating 10s ease-in-out infinite;
        animation-delay: 1.5s;
    }

    .game-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .popular-game,
    .about-game {
        padding: 20px;
    }

    .game-section {
        padding: 40px 20px;
        gap: 30px;
    }
    
    /* Optimize sparkles for mobile */
    .game-section::before,
    .game-section::after {
        width: 3px;
        height: 3px;
    }
    
    .game-section .sparkle-1,
    .game-section .sparkle-2,
    .game-section .sparkle-3,
    .game-section .sparkle-4,
    .game-section .sparkle-5 {
        width: 2px;
        height: 2px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

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

    .game-buttons {
        width: 100%;
        max-width: 400px;
    }

    .about-content {
        padding: 40px 20px;
        gap: 30px;
    }

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

    .about-description {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

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

    .forest-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .contact-section {
        padding: 20px;
    }

    .subscribe-widget {
        padding: 30px 20px;
        width: 100%;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .email-info span {
        font-size: 16px;
    }

    .footer {
        padding: 30px 20px;
    }

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

    .footer-disclaimer p {
        font-size: 14px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-copyright {
        padding-left: 10px;
        border-left-width: 2px;
    }
    
    .footer-copyright p {
        font-size: 14px;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Disclaimer page mobile styles */
    .disclaimer-main {
        margin-top: 60px;
        padding: 20px;
    }

    .disclaimer-container {
        padding: 20px;
    }

    .disclaimer-content {
        padding: 30px 20px;
        gap: 30px;
    }

    .disclaimer-title {
        font-size: 24px;
    }

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

    .disclaimer-text h2 {
        font-size: 18px;
        margin: 1.5rem 0 0.75rem 0;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 359px) {
    .container {
        padding: 0 15px;
    }
    .nav-link {
        font-size: 9px;
    }
    .hero-description {
        padding: 8px;
    }
    .main-container {
        padding: 16px;
    }

    .hero-main,
    .game-section,
    .about-content,
    .subscribe-widget,
    .disclaimer-content {
        padding: 14px 8px;
    }

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

    .section-header h2,
    .about-content h2,
    .contact-header h2,
    .disclaimer-title {
        font-size: 20px;
    }
}

/* Force prevent horizontal scroll */
html {
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    max-width: 100%;
    word-wrap: break-word !important;
}