/* ========================================
   GLOBAL STYLES & RESET
======================================== */

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

:root {
    --primary-red: #FF3D3D;
    --dark-bg: #0A0A0A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-gray: #333333;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

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

/* ========================================
   COOKIE CONSENT
======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    border-top: 2px solid var(--primary-red);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    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;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-red);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-decline {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.cookie-accept {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    z-index: 1000;
    border-bottom: 1px solid var(--border-gray);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--white);
}

.logo-star {
    color: var(--primary-red);
    font-size: 28px;
    margin: 0 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 61, 61, 0.4);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.burger-line {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.title-text {
    color: var(--white);
}

.title-star {
    line-height: 1;
    margin: 0 -20px;
    width: 18%;
    position: relative;
    z-index: 3;
}

.title-star svg {
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(12px, 2vw, 16px);
    letter-spacing: 3px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.image-frame {
    position: relative;
    padding: 15px;
    background-color: var(--primary-red);
    transform: rotate(-2deg);
    transition: var(--transition);
    overflow: hidden;
}

.image-frame:nth-child(2) {
    transform: rotate(2deg);
}

.image-frame:nth-child(3) {
    transform: rotate(-1deg);
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 61, 61, 0.4);
}

.image-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ========================================
   ABOUT SECTION
======================================== */

.about {
    background-color: var(--primary-red);
    padding: 80px 0;
    margin: 60px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.8;
    font-weight: 500;
    color: #000;
}

/* ========================================
   ZENVORIAX SECTION
======================================== */

.zenvoriax {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.game-card {
    position: relative;
}

.game-image {
    width: 100%;

    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
}

.game-image:hover {
    transform: scale(1.05);
   
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-btn {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
}

.game-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 61, 61, 0.4);
}

/* ========================================
   PLAY FOR FREE SECTION
======================================== */

.play-free {
    background-color: var(--primary-red);
    padding: 80px 0;
    margin: 80px 0;
}

.section-title-large {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.section-description {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 60px;
    max-width: 800px;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
}

.game-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.game-icon {
    width: 140px;
    height: 140px;

    overflow: hidden;
    flex-shrink: 0;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    flex: 1;
}

.game-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-play {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    white-space: nowrap;
}

.btn-play:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* ========================================
   FEATURE IMAGE SECTION
======================================== */

.feature-image {
    padding: 60px 0;
}

.feature-img-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 61, 61, 0.2);
}

.feature-img-wrapper img {
    width: 100%;
    height: auto;
}

/* ========================================
   CONNECT SECTION
======================================== */

.connect {
    background-color: var(--primary-red);
    padding: 100px 0;
    text-align: center;
}

.connect-title {
    font-size: clamp(10vw, 12vw, 140px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
}

.connect-title span svg {
    width: 100%;
}

.c-st {
  width: 11%;
  display: inline-block;
}

.c-arr {
    width: 21%;
  display: inline-block;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.footer-list a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.social-link:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 61, 61, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media screen and (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
        transition: right 0.4s ease;
        border-left: 2px solid var(--primary-red);
    }

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

    .desktop-btn {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

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

    .btn-play {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 20px;
    }

    .logo-star {
        font-size: 24px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .about {
        padding: 60px 0;
        margin: 40px 0;
    }

    .zenvoriax {
        padding: 60px 0;
    }

    .play-free {
        padding: 60px 0;
        margin: 60px 0;
    }

    .connect {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

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

    .hero-subtitle {
        letter-spacing: 1px;
    }

    .title-text {
        font-size: 11vw;
    }

    .image-frame img {
        height: 250px;
    }

    .game-image {
      
    }

    .section-title-large {
        letter-spacing: 2px;
    }

    .section-description {
        letter-spacing: 1px;
    }

    .game-icon {
       
    }

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

    .game-desc {
        font-size: 13px;
    }
    .connect-title {
        font-size: 10vw;
    }
}

              .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;
              }

              
                

                