:root {
    --accent-color: #f2003a;
    --footer-color: #220875;
    --text-color: #1a1a1a;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

#logout {
    display: none;
}

#logout.active {
    display: inline-block;
}



body {
    background-color: var(--white);
    color: var(--text-color);
}

.breadcrumbsBanner {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.topLine {
    background-color: var(--accent-color);
    padding: 8px 0;
    font-size: 14px;
}

.topLineContainer {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.topLineContact {
    display: flex;
    gap: 20px;
}

.topLineContact a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

header {
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    width: 45px;
    margin-right: 5px;
}

.logo span {
    color: #111;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.headerButtons {
    display: flex;
    gap: 15px;
}

#error {
    text-align: center;
    color: red;
    margin-top: 15px;
}

.btn {
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btnPrimary {
    background-color: var(--accent-color);
    color: var(--white);
    position: relative;
    text-decoration: none;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.btnPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 0, 58, 0.4);
}

.btnPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;

}

.btnPrimary:hover::before {
    left: 100%;
}

.btnOutline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-sizing: border-box;
    text-decoration: none;
}

.btnOutline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.slideButtons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.sliderSection {
    padding: 160px 0;
    background: url('../img/main.jpg') center no-repeat;
    background-size: cover;
}

.sliderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide {
    display: flex;
    align-items: center;
    gap: 50px;
}

.slideContent {
    flex: 1;
}

.slideImage {
    flex: 1;
}

.slideImage img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subTitle {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title span {
    color: var(--accent-color);
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.sliderSection .title {
    color: #fff;
    font-size: 52px;
}

.sliderSection .description {
    color: #fff;
}

.featuresSection {
    padding: 80px 0;
}

.sectionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 50px;
}

.sectionTitle h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.sectionTitle p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featureCard {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.featureCard:hover {
    transform: translateY(-10px);
}

.featureIcon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.featureTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featureText {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.aboutSection {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.aboutContainer {
    display: flex;
    align-items: center;
    gap: 50px;
}

.aboutContent {
    flex: 1;
}

.aboutImage {
    flex: 1;
}

.aboutImage img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gamesSection {
    padding: 80px 0;
}

.gamesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
}

.gameCard {
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #f5f5f5;
}

.gameCard:hover {
    transform: translateY(-10px);
}

.gameImage {
    height: 220px;
    overflow: hidden;
}

.gameImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sec-line {
    display: inline-block;
    height: 22px;
    width: 152px;
    background-color: #f2003a;
    -webkit-clip-path: path("M 90.552 11.123 L 152 22 L 76.112 22 L 75.888 22 L 0 22 L 61.448 11.123 L 57.521 4.449 L 75.801 0.095 L 75.801 0 L 76 0.047 L 76.199 0 L 76.199 0.095 L 94.479 4.449 L 90.552 11.123 Z");
    clip-path: path("M 90.552 11.123 L 152 22 L 76.112 22 L 75.888 22 L 0 22 L 61.448 11.123 L 57.521 4.449 L 75.801 0.095 L 75.801 0 L 76 0.047 L 76.199 0 L 76.199 0.095 L 94.479 4.449 L 90.552 11.123 Z");
    margin-bottom: 13px;
}

.gameCard:hover .gameImage img {
    transform: scale(1.1);
}

.gameContent {
    padding: 20px 20px;
}

.gameCard:nth-child(2) {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.gameCard:nth-child(2) .gameImage {
    order: 2;
}

.gameCard:nth-child(2) .gameContent {
    order: 1;
}

.gameCard:nth-child(5) {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.gameCard:nth-child(5) .gameImage {
    order: 2;
}

.gameCard:nth-child(5) .gameContent {
    order: 1;
}

.gameTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gameDescription {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.gameRating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #ffc107;
}

.gameBtn {
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    margin-top: 0px;
    display: inline-block;
}

.pricingSection {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.pricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricingCard {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.pricingCard:hover {
    transform: translateY(-10px);
}

.pricingCard.popular {
    border: 2px solid var(--accent-color);
    position: relative;
}

.popularTag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricingTitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricingPrice {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.pricingPrice span {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

.pricingFeatures {
    list-style: none;
    margin-bottom: 30px;
}

.pricingFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.whyUsSection {
    padding: 80px 0;
}

.whyUsContainer {
    display: flex;
    align-items: center;
    gap: 50px;
}

.whyUsImage {
    flex: 1;
}

.whyUsImage img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whyUsContent {
    flex: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background-color: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
}

.faqSection {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faqContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.faqContainer .left {
    flex: 1;
}

.faqContainer .right {
    line-height: 0;
    flex: 1;
}

.faqContainer .right img {
    width: 100%;
    border-radius: 10px;
}

.faqItem {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faqQuestion {
    background-color: var(--white);
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqQuestion i {
    transition: transform 0.3s;
}

.faqAnswer {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faqItem.active .faqQuestion i {
    transform: rotate(45deg);
}

.faqItem.active .faqAnswer {
    max-height: 300px;
    padding: 0 20px 20px;
}

footer {
    background-color: #111;
    color: var(--white);
    padding: 60px 0 20px;
}

.footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footerTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footerLogo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footerLogo span {
    color: var(--accent-color);
}

.footerAbout {
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footerLinks {
    display: flex;
    gap: 85px;
}

.footerLinks h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footerLinks ul {
    list-style: none;
}

.footerLinks ul li {
    margin-bottom: 10px;
}

.footerLinks ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footerLinks ul li a:hover {
    color: var(--white);
}

.footerContact {
    max-width: 300px;
    width: 100%;
}

.footerContact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footerContact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modalContent {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.closeModal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

.modalTitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-color);
}

.formGroup {
    margin-bottom: 20px;
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.formGroup input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.formGroup input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.formSubmit {
    width: 100%;
    margin-top: 10px;
}

.formFooter {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.formFooter a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}


.breadcrumbsBanner {
    background-color: #f8f9fa;
    padding: 40px 0;

}

.breadcrumbsBanner h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: #f2003a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs span {
    color: #555;
}


.aboutHero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.aboutHero .sectionContainer {
    display: flex;
    align-items: center;
    gap: 50px;
}

.aboutHeroContent {
    flex: 1;
    position: relative;
    z-index: 2;
}

.aboutHeroImage {
    flex: 1;
    position: relative;
}

.imageWrapper {
    position: relative;
}

.aboutHeroImage .mainImage {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.aboutHeroImage .shape1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #f2003a;
    border-radius: 30px;
    top: -30px;
    left: -30px;
    z-index: 0;
    transform: rotate(45deg);
    opacity: 0.2;
}

.aboutHeroImage .shape2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 15px solid #220875;
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 0;
    opacity: 0.2;
}


.aboutTimeline {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.subTitle {
    color: #f2003a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.title span {
    color: #f2003a;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #f2003a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timelineItem {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timelineItem.left {
    left: 0;
    text-align: right;
}

.timelineItem.right {
    left: 50%;
    text-align: left;
}

.timelineContent {
    padding: 30px 60px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timelineYear {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #f2003a;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.timelineItem.left .timelineYear {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.timelineItem.right .timelineYear {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.timelineItem h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timelineItem p {
    color: #555;
    line-height: 1.6;
}


.aboutMission {
    padding: 100px 0;
    background-color: white;
}

.missionGrid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.missionImage {
    flex: 1;
    position: relative;
}

.missionImage .mainImage {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floatingElement {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #220875;
    color: white;
    padding: 20px;
    border-radius: 15px;
    width: 180px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 8, 117, 0.2);
}

.floatingElement i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #f2003a;
}

.floatingElement h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.floatingElement p {
    font-size: 14px;
    opacity: 0.8;
}

.missionContent {
    flex: 1;
}

.missionItem {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.missionIcon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 0, 58, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.missionIcon i {
    font-size: 24px;
    color: #f2003a;
}

.missionText h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.missionText p {
    color: #555;
    line-height: 1.6;
}


.aboutStats {
    padding: 40px 0 30px 0;
    background-color: #220875;
    color: white;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.statItem {
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s;
}

.statItem:hover {
    transform: translateY(-10px);
}

.statNumber {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f2003a;
}

.statTitle {
    font-size: 20px;
    opacity: 0.8;
}


@media (max-width: 1024px) {

    .aboutHero .sectionContainer,
    .missionGrid {
        flex-direction: column;
    }

    .timeline::before {
        left: 30px;
    }

    .floatingElement {
        right: 10px;
    }

    .timelineItem {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }

    .timelineItem.left,
    .timelineItem.right {
        left: 0;
    }

    .timelineItem.left .timelineYear,
    .timelineItem.right .timelineYear {
        left: -30px;
        right: auto;
    }

    .statsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .statsGrid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 28px;
    }
}


.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-family: 'Barlow', sans-serif;
    transform: translateY(120%);
    transition: transform 0.3s ease-out;
    border: 1px solid #e0e0e0;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-popup-content {
    padding: 20px;
}

.cookie-header h3 {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-size: 18px;
}

.cookie-header p {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-options {
    margin-bottom: 20px;
}

.cookie-option {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-option-title {
    margin-left: 10px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
}

.cookie-option-desc {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.4;
    padding-left: 42px;
}


.cookie-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

input:checked+.cookie-slider {
    background-color: #f2003a;
}

input:checked+.cookie-slider:before {
    transform: translateX(16px);
}

input:disabled+.cookie-slider {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

input:disabled+.cookie-slider:before {
    background-color: #f5f5f5;
}

.cookie-slider.round {
    border-radius: 34px;
}

.cookie-slider.round:before {
    border-radius: 50%;
}


.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
}

.accept-all {
    background-color: #f2003a;
    color: white;
}

.accept-all:hover {
    background-color: #d90032;
}

.accept-selected {
    background-color: #220875;
    color: white;
}

.accept-selected:hover {
    background-color: #1a065e;
}

.reject-all {
    background-color: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.reject-all:hover {
    background-color: #e9ecef;
}

@media (max-width: 480px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

.policy-hero {
    background-color: #220875;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.policy-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.policy-content {
    padding: 60px 0;
    background-color: #fff;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #f2003a;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.policy-section strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 0;
    }

    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-content {
        padding: 40px 0;
    }
}




.gamesCta {
    background-color: #220875;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gamesCta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.ctaContent {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.gamesCta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.gamesCta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ctaButtons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gamesCta .btn {
    min-width: 200px;
    font-size: 16px;
    padding: 12px 24px;
}

.gamesCta .btnOutline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
}

.gamesCta .btnOutline:hover {
    background-color: white;
    color: #220875;
}

@media (max-width: 768px) {
    .gamesCta {
        padding: 60px 0;
    }

    .gamesCta h2 {
        font-size: 28px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
    }

    .gamesCta .btn {
        width: 100%;
    }
}

.categoriesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.categoryCard {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.categoryCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.categoryIcon {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 0, 58, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.categoryIcon i {
    font-size: 30px;
    color: #f2003a;
}

.categoryCard h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.categoryCard p {
    color: #555;

    line-height: 1.6;
    font-size: 15px;
}

.categoryLink {
    color: #f2003a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.categoryLink:hover {
    color: #220875;
}

.categoryLink i {
    transition: transform 0.3s;
}

.categoryLink:hover i {
    transform: translateX(5px);
}

.gameCategories {
    padding: 80px 0;
    background-color: #f9f9f9;
}

@media (max-width: 1024px) {
    .categoriesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categoriesGrid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 28px;
    }
}

    
    .subscription-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .subscription-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }
    
    .subscription-header .subTitle {
        color: #f2003a;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .subscription-header .title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a1a1a;
    }
    
    .subscription-header .description {
        color: #555;
        font-size: 18px;
        line-height: 1.6;
    }
    
    .subscription-form-container {
        max-width: 800px;
        margin: 0 auto;
        background-color: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .subscription-form {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
    }
    
    .form-group {
        flex: 1;
        margin-bottom: 15px;
    }
    
    .form-group.full-width {
        flex: 0 0 100%;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #1a1a1a;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #f2003a;
        outline: none;
        box-shadow: 0 0 0 3px rgba(242,0,58,0.1);
    }
    
    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 12px;
    }
    
    .checkbox-group {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .checkbox-group input {
        width: auto;
    }
    
    .checkbox-group label {
        margin-bottom: 0;
        font-weight: 400;
    }
    
    .checkbox-group a {
        color: #f2003a;
        text-decoration: none;
    }
    
    .checkbox-group a:hover {
        text-decoration: underline;
    }
    
    .submit-btn {
        background-color: #f2003a;
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
    }
    
    .submit-btn:hover {
        background-color: #d90032;
        transform: translateY(-2px);
    }
    
    .success-message {
        display: none;
        background-color: #d4edda;
        color: #155724;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .success-message i {
        font-size: 24px;
    }
    
    .success-message p {
        margin: 0;
    }
    
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        
        .subscription-header .title {
            font-size: 28px;
        }
        
        .subscription-form-container {
            padding: 30px 20px;
        }
    }




















































@media (max-width: 1024px) {
    .featuresGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gamesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricingGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricingCard:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .gameCard:nth-child(2) {
        background: #f8f9fa;
        display: flex;
        flex-direction: column;
    }

    .gameCard:nth-child(2) .gameImage {
        order: 1;
    }

    .gameCard:nth-child(2) .gameContent {
        order: 2;
    }

    .gameCard:nth-child(5) {
        background: #f8f9fa;
        display: flex;
        flex-direction: column;
    }

    .gameCard:nth-child(5) .gameImage {
        order: 1;
    }

    .gameCard:nth-child(5) .gameContent {
        order: 2;
    }
}

@media (max-width: 768px) {
    .mobileMenuBtn {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: left 0.3s;
        padding: 20px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        margin-top: 40px;
    }

    .headerButtons {
        display: none;
    }

    .slide {
        flex-direction: column;
    }

    .aboutContainer,
    .whyUsContainer {
        flex-direction: column;
    }

    .footerTop {
        flex-direction: column;
        gap: 40px;
    }

    .footerLinks {
        flex-direction: column;
        gap: 30px;
    }

    .faqContainer {
        flex-direction: column;
    }
}

@media(max-width: 767px){
    .contactContainer{
        flex-direction: column!important;
    }
}

@media (max-width: 576px) {

    .featuresGrid,
    .gamesGrid,
    .pricingGrid {
        grid-template-columns: 1fr;
    }

    .pricingCard:last-child {
        grid-column: span 1;
        width: 100%;
    }

    .title {
        font-size: 32px;
    }
    .timelineItem{
        padding-left: 30px;
    }
    .timeline::before{
        left: 15px;
    }
}