/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== COOKIE CONSENT ==================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid #ff6b35;
    transform: translateY(100%);
    transition: transform 0.3s 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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-decline {
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ff6b35;
    color: #ffffff;
}

.btn-accept:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 8px;
    border-radius: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
}

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

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

.btn-primary {
    background: #ff6b35;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

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

.hero-subtitle {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.4;
    display: inline-block;
    font-weight: 400;
    width: 30%;
}

.hero-title {
    font-size: 7vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==================== REALM SECTION ==================== */
.realm {
    padding: 80px 0;
   
}

.realm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
}

.realm-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.realm-note {
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
}

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-title-white {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.btn-explore {
    display: block;
    margin: 0 auto;
    background: #ff6b35;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

/* ==================== GAME MODES SECTION ==================== */
.game-modes {
    padding: 80px 0;
    background: #1a1a1a;
}

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

.modes-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modes-intro {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.mode-item {
    margin-bottom: 30px;
}

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

.mode-item p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

/* ==================== INFINITE SECTION ==================== */
.infinite {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-title-center {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 2px;
    position: relative;
}

.sect-tit {
    text-transform: uppercase;
}

.infinite-image {
    width: 100%;
    margin: -100px auto 0;
}

.infinite-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* ==================== OUR GAMES SECTION ==================== */
.our-games {
    padding: 100px 0 80px;
    background: #1a1a1a;
}

.games-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.games-intro-text p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
}

.games-main-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1.1;
}

.game-list {
    display: flex;
    flex-direction: column;
}

.game-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-item:last-child {
  
}

.game-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.game-description {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.8;
}

.game-image {
    display: flex;
    justify-content: flex-end;
    height: 240px;
     border-radius: 15px;
     overflow: hidden;
     margin-left: auto;
     max-width: 355px;
     width: 100%;
}

.game-image img {
    width: 100%;
   object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: #000000;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: #999999;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-email,
.footer-phone {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
}

.footer-social-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
    color: #ffffff;
}

.social-icon.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1023px) {
    .burger-btn {
        display: flex;
    }

    .btn-primary {
        display: none;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding: 40px 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

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

    .nav-link {
        font-size: 18px;
        color: #fff;
    }

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

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

    .hero-subtitle {
        display: block;
        width: 100%;
    }

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

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

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

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

    .games-main-title {
        font-size: 56px;
    }

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

    .game-image {
        justify-content: center;
    }

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

    .footer-links {
        align-items: center;
    }

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

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

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

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

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

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

    .section-title-white {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .realm {
        padding: 60px 0;
    }

    .stats {
        padding: 60px 0;
    }

    .game-modes {
        padding: 60px 0;
    }

    .infinite {
        padding: 60px 0;
    }

    .our-games {
        padding: 60px 0;
    }

    .games-main-title {
        font-size: 42px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 18px;
    }

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

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

    .game-item {
        padding: 40px 0;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .logo a {
        font-size: 20px;
    }

    .nav {
        width: 100%;
        right: -100%;
    }
}

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

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

    .games-main-title {
        font-size: 36px;
    }

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

    .stat-number {
        font-size: 32px;
    }

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

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

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

              
                

                