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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #F5E6D3;
    color: #000000;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.cookie-content a {
    color: #FF6B3D;
    text-decoration: underline;
}

.cookie-accept {
    background-color: #FF6B3D;
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background-color: #FF8559;
}

/* Header */
.header {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #FFB700;
    font-size: 28px;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
}

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

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #FFB700;
}

.nav-cta {
    background-color: #FF6B3D;
    color: #000000;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #FF8559;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
}

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

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

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

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

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 427px;
    width: 100%;
}

.social-icons img {
    width: 100%;
}

.icon-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFB700;
    transition: transform 0.3s ease;
}

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

.hero-title h1 {
    font-size: 120px;
    line-height: 1;
    letter-spacing: 5px;
    position: relative;
    color: #010400;
text-shadow: 4px 4px 0 #FFB727;
font-family: "Bebas Neue";
font-size: 16vw;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 222px */
text-transform: uppercase;
}



/* Play Connect Section */
.play-connect {
   
    padding: 80px 0;

}

.play-connect-content {
    display: flex;
   
}

.play-connect-left {
    padding: 20px;
    background: #010400;
    max-width: 344px;
    width: 100%;
}

.play-connect-left h2 {
    color: #FEF1E0;
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.play-connect-right {
    max-width: 196px;
    width: 100%;
}

.play-connect-right img {
    width: 100%;
    height: auto;
    display: block;
}

.play-connect-text {
    align-self: center;
     font-size: 16px;
  margin-left: 50px;
    line-height: 1.6;
}

.play-connect-text p {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #FF6B3D;
    color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #FF8559;
}

.btn-secondary {
    display: inline-block;
    background-color: #FF6B3D;
    color: #000000;
    padding: 15px 50px;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
    margin-top: 40px;
}

.btn-secondary:hover {
    background-color: #FF8559;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: flex;
    gap: 20px;
    position: relative;
    max-width: 481px;
}

.about-images img {
    width: 100%;
}

.image-box {
    padding: 15px;
    width: 280px;
}

.image-box.orange {
    background-color: #FF6B3D;
    position: relative;
    z-index: 2;
}

.image-box.yellow {
    background-color: #FFB700;
    margin-top: 60px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 70px;
   
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Ready to Play Section */
.ready-to-play {
    padding: 80px 0;
    text-align: center;
}

.ready-to-play h2 {
    font-size: 80px;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

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

.game-card {
    position: relative;
}

.game-card-inner {
    background-color: #FFB700;
    padding: 15px;
    transition: transform 0.3s ease;
}

.game-card-inner:hover {
    transform: translateY(-10px);
}

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

.game-title {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #FF6B3D;
    font-size: 48px;
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Adventure Section */
.adventure-section {
    padding: 80px 0;
}

.adventure-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.adventure-text {
    flex: 1;
}

.adventure-text h2 {
    font-size: 70px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.adventure-text p {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.adventure-images {
    display: flex;
    gap: 20px;
    max-width: 546px;
    width: 100%;
}

.adventure-images img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo h3 {
    color: #FFB700;
    font-size: 32px;
    letter-spacing: 3px;
}

.footer-contact p {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: #FFB700;
}

.footer-social img {
    width: 100%;
   
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    letter-spacing: 1px;
}

.a-p {
    display: flex;
padding: 24px;
justify-content: center;
align-items: center;

    border-radius: 10px;
background: #FFB727;
box-shadow: 0 0 22.7px 0 rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-title h1 {
       
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .about-content {
        flex-direction: column;
    }

    .about-images {
        flex-direction: column;
        align-items: center;
    }

    .image-box.yellow {
        margin-top: 0;
    }

    .adventure-content {
        flex-direction: column-reverse;
    }

    .adventure-images {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 60px;
    }

    .hero-title h1 {
       font-size: 24vw;
    }

    .social-icons {
        margin-top: -40%;
    }

    .hero-title h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .play-connect-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .play-connect-left {
        padding: 20px;
    }

    .play-connect-left h2 {
       
    }

    .play-connect-right img {
        height: 100%;
        object-fit: cover;
    }

    .play-connect-text {
        margin-left: 0;
        flex: 0 1 100%;
        padding-top: 40px;
    }

    .about-text h2 {
        font-size: 50px;
    }

    .ready-to-play h2 {
        font-size: 50px;
    }

    .game-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .game-card {
        width: 100%;
        flex: 0 1 45%;
    }

    .adventure-text h2 {
        font-size: 50px;
    }

    .adventure-images {
        flex-direction: column;
    }

    .adventure-images img {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .game-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }

    .hero-title h1 {
        
    }

    .play-connect-left h2 {
        
    }

    .about-text h2,
    .adventure-text h2,
    .ready-to-play h2 {
        font-size: 38px;
    }

    .image-box {
        width: 100%;
    }

    .about-text p,
    .adventure-text p,
    .play-connect-text p {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 18px;
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                