body,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-main)
}

#loader,
body {
    background: var(--color-bg-dark)
}

.btn-main:hover,
button:hover {
    background: var(--color-accent)
}

.nav-menu ul li a,
a {
    transition: color .3s
}

#loader,
.nav-menu ul li a:hover::after {
    width: 100%
}

.divider,
.home-content,
.lightbox,
.section-title {
    text-align: center
}

.overlay {
    left: 0;
    backdrop-filter: blur(3px)
}

.footer-links a,
a {
    text-decoration: none
}

#scrollTopBtn,
.btn-main {
    transition: background .3s, transform .3s, box-shadow .3s
}

:root {
    --color-primary: #9ABAFF;
    --color-secondary: #FFC55D;
    --color-accent: #e05a47;
    --color-bg-dark: #100C20;
    --color-bg-light: #1D1C46;
    --color-text-main: #ffffff;
    --color-text-muted: #cccccc
}

.footer-links a:hover,
.loader-icon,
.nav-menu ul li a:hover {
    color: var(--color-primary);
}

body {
    font-family: Almarai, sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth
}

.home-title,
.nav-menu ul li a,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Marcellus, serif
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

a {
    color: inherit
}

a:hover {
    color: var(--color-primary);
}

button {
    cursor: pointer;
    background: var(--color-primary);
    padding: .75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-family: Almarai, sans-serif;
    font-size: 1rem;
    transition: background .3s, transform .2s
}

button:hover {
    transform: translateY(-3px)
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light)
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 8px
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s, visibility .5s
}

.loader-icon {
    animation: 1.5s linear infinite spin
}

.btn-main,
.btn-main:hover,
.home-content,
.menu-toggle,
.nav-menu ul li a {
    color: var(--color-text-main)
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

#loader.hidden {
    opacity: 0;
    visibility: hidden
}

.btn-main {
    display: inline-block;
    background: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(139, 75, 153, .5)
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(224, 90, 71, .5)
}

#scrollTopBtn:hover,
.cookies-buttons button:hover,
.footer-section::before {
    background: var(--color-primary)
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem
}

.store-btn img {
    width: 220px;
    max-width: 100%;
    transition: transform .5s, box-shadow .5s;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(245, 196, 109, .5)
}

.store-btn:hover img {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(245, 196, 109, .7);
    animation: 1.5s infinite pulse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1.05) rotate(-1deg)
    }

    50% {
        transform: scale(1.08) rotate(1deg)
    }
}

#main-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: 0 0;
    transition: background .4s, box-shadow .4s
}

#scrollTopBtn,
.cookies-buttons button,
.nav-menu ul li a::after {
    background: var(--color-primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo img {
    max-width: 80px
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
    align-items: center
}

.nav-menu ul li a {
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    padding: .5rem
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    transition: width .3s
}

.menu-toggle {
    display: none;
    cursor: pointer
}

.sticky {
    position: fixed;
    background: var(--color-bg-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .6)
}

#home,
.home-bg {
    position: relative
}

#home {
    height: 100vh;
    width: 100%;
    overflow: hidden
}

.home-bg {
    height: 100%;
    width: 100%;
    background: url('../images/game_image_2.jpg') center center/cover no-repeat fixed
}

.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #100C20B2;
}

.home-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.logo-center img {
    max-width: 180px;
    width: 100%;
    margin-bottom: 2rem;
    animation: 1s fadeInDown
}

.home-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: 1.2s fadeInUp
}

.about-text p,
.home-subtitle {
    font-family: Almarai, sans-serif;
    color: var(--color-text-main);
}

.home-subtitle {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 2rem;
    animation: 1.5s fadeInUp
}

.section-title {
    color: var(--color-secondary)
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

.about-section,
.testimonials-section {
    background: var(--color-bg-light);
    padding: 6rem 0
}

.section-title {
    font-family: Marcellus, serif;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    animation: 1s fadeInDown
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 6rem;
    flex-wrap: wrap
}

.about-block.reverse {
    flex-direction: row-reverse
}

.about-text {
    flex: 1;
    min-width: 300px;
    animation: 1s forwards fadeInLeft
}

.about-heading {
    font-family: Marcellus, serif;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8
}

.divider,
.feature-card h3 {
    color: var(--color-primary)
}

.about-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    animation: 1s forwards fadeInRight
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.divider {
    margin: 3rem 0;
    animation: 1.5s fadeIn
}

@media (max-width:1024px) {

    .about-block,
    .about-block.reverse {
        flex-direction: column
    }

    .about-image,
    .about-text {
        animation: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.features-section,
.gallery-section {
    background: var(--color-bg-dark);
    padding: 6rem 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .6);
    cursor: pointer;
    transition: transform .4s
}

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform .4s
}

.gallery-item:hover img {
    transform: scale(1.05)
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .9)
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 12px
}

.feature-card,
.testimonial-card {
    padding: 2rem;
    border-radius: 16px;
    transition: transform .4s, box-shadow .4s;
    animation: 1s fadeInUp;
    text-align: center
}

.lightbox-caption {
    color: var(--color-text-muted);
    margin-top: 1rem;
    font-size: 1rem
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--color-text-main);
    font-size: 40px;
    font-weight: 700;
    cursor: pointer
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.feature-card {
    background: var(--color-bg-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5)
}

.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(154, 186, 255, 0.6);
}

.feature-card h3 {
    font-family: Marcellus, serif;
    font-size: 1.3rem;
    margin-bottom: 1rem
}

.feature-card p,
.testimonial-card p {
    font-family: Almarai, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-muted)
}

.feature-card span {
    display: block;
    font-family: Marcellus, serif;
    font-size: 2.5rem;
    margin-bottom: 1.4rem;
    color: var(--color-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.testimonial-card {
    background: var(--color-bg-dark);
    color: var(--color-text-main);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .6)
}

.testimonial-icon {
    color: var(--color-secondary);
    margin-bottom: 1rem
}

.testimonial-card p {
    line-height: 1.6;
    margin-bottom: 1rem
}

.testimonial-card h4 {
    font-family: Marcellus, serif;
    font-size: 1.1rem;
    color: var(--color-secondary)
}

.cookies-banner p,
.footer-section {
    font-size: .95rem;
    text-align: center
}

.footer-section {
    background: var(--color-bg-dark);
    padding: 3rem 0 2rem;
    position: relative
}

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

.footer-top {
    display: flex;
    align-items: center;
    gap: 2rem
}

.footer-logo img {
    max-width: 60px
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.cookies-banner,
.cookies-buttons {
    display: flex;
    gap: 1rem
}

.footer-links a {
    transition: color .3s
}

.footer-contact p {
    padding: .4rem 0;
    line-height: 1.4rem;
}

.footer-contact {
    color: #8382A1;
}

.footer-bottom {
    color: #8382A1;
}

.footer-bottom {
    margin-top: 1rem;
    font-size: .9rem
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    width: 80%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .3
}

#scrollTopBtn {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    color: var(--color-bg-dark);
    border: none;
    border-radius: 50%;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(154, 186, 255, 0.6);
    width: 56px;
    height: 56px;
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(154, 186, 255, 0.6);
}

.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg-light);
    padding: 1rem 2rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .4);
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
    z-index: 10000;
    animation: 1s fadeInUp
}

.cookies-banner a {
    color: var(--color-secondary);
    text-decoration: underline
}

.cookies-buttons button {
    border: none;
    padding: .5rem 1rem;
    border-radius: 8px;
    color: var(--color-bg-dark);
    font-weight: 700;
    cursor: pointer;
    transition: background .3s
}

.hidden {
    display: none
}

.privacy-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #0e0e1a, #1a1a2e);
    color: #f1f1f1;
    font-family: Marcellus, Almarai, sans-serif;
    animation: 1.5s ease-in-out fadeIn
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .05);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5)
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #fff
}

.privacy-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #d4af37
}

.privacy-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #f1f1f1
}

.privacy-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0
}

.privacy-container ul {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 25px
}

.privacy-container ul li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ccc
}

.privacy-footer {
    text-align: center;
    font-size: 16px;
    color: #999;
    margin-top: 60px
}

.breadcrumb-link,
.privacy-container a {
    color: gold;
    text-decoration: underline
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.privacy-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background: url('../images/game_image_8.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px
}

.privacy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, .65);
    backdrop-filter: blur(6px);
    z-index: 1
}

.privacy-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: 1.5s ease-in-out fadeIn
}

.privacy-banner-title {
    font-family: Marcellus, serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px
}

.breadcrumb {
    font-size: 18px;
    color: #ccc
}

.breadcrumb-current {
    color: #fff
}

@media (max-width:768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-bg-light);
        transition: right .4s;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .nav-menu.active {
        right: 0
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 3
    }

    .home-title {
        font-size: 2rem
    }

    .home-subtitle {
        font-size: 1rem
    }

    .logo-center img {
        max-width: 140px
    }

    .lightbox-content {
        width: 95%
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .store-buttons {
        flex-direction: column
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem
    }

    #scrollTopBtn {
        padding: .75rem;
        font-size: 1.2rem;
        bottom: 1.5rem;
        right: 1.5rem
    }

    .privacy-container {
        padding: 30px
    }

    .privacy-banner-title,
    .privacy-title {
        font-size: 36px
    }

    .privacy-container h2 {
        font-size: 28px
    }

    .privacy-container h3 {
        font-size: 22px
    }

    .breadcrumb,
    .privacy-container p,
    .privacy-container ul li {
        font-size: 16px
    }

    .privacy-banner {
        height: 250px
    }
}

.store-coming-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background: linear-gradient(99.96deg, #1D7ED9 0%, #190C20 100%);
    border: 1px solid #fff;
    border-radius: 16px;
    box-shadow: 0px 6px 12px 0px #000000B2;
    text-decoration: none;
    margin-top: 30px;
    transition: .3s ease-in-out
}

.store-coming-soon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .8)
}

.store-coming-soon-text {
    font-family: Marcellus, Almarai, sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center
}

@media (max-width:768px) {
    .store-coming-soon {
        padding: 14px 20px
    }

    .store-coming-soon-text {
        font-size: 16px
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.details-section {
    padding: 180px 0 60px;
    line-height: 24px;
}

.details-section h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.details-section h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.details-section ul {
    list-style-type: disc;
    padding-left: 24px;
}

.details-section p {
    margin-bottom: 20px;
}

.details-section a {
    color: #9abaff;
    font-weight: 600;
}
