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

:root {
    --primary-color: #e63946;
    --secondary-color: #f77f00;
    --dark-bg: #0C0909;
    --dark-section: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, #e63946 0%, #f77f00 100%);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-decline {
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-accept {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.btn-decline:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary-color);
}

.logo img {
    width: 30px;
}

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

.nav-link {
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 4px 16px;
    border-radius: 24px;
border: 1px solid #FFF;
    transition: var(--transition);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero .container {
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

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

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.h-descr {
    max-width: 190px;
   width: 15.8%;
   position: absolute;
   top: 0;
   left: 20px;
   font-size: 14px;
   font-weight: 300;
}

.hero-cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-card {
    max-width: 190px;
   width: 15.8%;
    transition: transform 0.3s ease;
}

.hero-card-mid {
  max-width: 780px;
  width: 65%;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    max-width: 510px;
    width: 100%;
    margin: -20% auto 0;
    position: relative;
    z-index: 3;
    border-radius: 30px;
border: 1px solid #E21C1C;
background: rgba(226, 28, 28, 0.30);
backdrop-filter: blur(6px);
padding: 20px;
text-align: center;
}

.hero-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.about-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.about-arrow:hover {
    transform: scale(1.1) rotate(45deg);
}

/* ===================================
   Great Moments Section
   =================================== */
.moments {
    padding: 120px 0;
    background: var(--dark-bg);
}

.moments-grid {
   width: 100%;
   max-width: 940px;
   height: 724px;
    gap: 20px;
    margin: 60px auto 0;
}

.moments-grid img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.moment-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.moment-card:hover {
    transform: scale(1.05);
}

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 120px 0;
   
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.features-image,
.features-image-right {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.features-image img,
.features-image-right img {
    width: 100%;
    height: auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.stats-grid {
    display: flex;
   flex-direction: column;
    gap: 20px;
 
}

.stat-item {
    background: rgba(230, 57, 70, 0.1);
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===================================
   Connect Section
   =================================== */
.connect {
    padding: 120px 0;
    background: var(--dark-bg);
}

.connect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.connect-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.connect-image img {
    width: 100%;
}

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

.connect-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
}

.connect-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.connect-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.connect-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Games Section
   =================================== */
.games {
    padding: 120px 0;
    background: var(--dark-section);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    max-width: 900px;
    width: 100%;
    margin: 60px auto 0;
}

.game-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 120px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-address,
.contact-phone,
.contact-email {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-image img {
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
   
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.footer-logo img {
    width: 30px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.g-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet and below */
@media screen and (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .burger-btn {
        display: flex;
    }

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

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

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-image-right {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .connect-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .connect-features {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .moments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
       
    }

    .hero-cards {
        gap: 20px;
        flex-wrap: wrap;
        
    }

    .h-descr {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .hero-card {
        flex: 0 1 36%;
        width: 100%;
        order: 2;
        max-width: 100%;
    }

    .hero-card-mid {
        flex: 0 1 100%;
        width: 80%;
        order: 1;
        max-width: 650px;
    }

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

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

    .about,
    .moments,
    .features,
    .connect,
    .games,
    .contact {
        padding: 60px 0;
    }

    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-accept,
    .btn-decline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-cards {
        gap: 15px;
    }

    .hero-card {
       
    }

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

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

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

              
                

                