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

:root {
    --blue: #2E47D5;
    --light-blue: #2E47D5;
    --black: #000000;
    --dark: #0a0a0a;
    --gray: #111111;
    --white: #FFFFFF;
    --twitter: #1DA1F2;
    --facebook: #4267B2;
}

body {
    font-family: 'Marhey', cursive;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-popup {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    border: 2px solid var(--white);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-box h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cookie-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-box a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 20px;
}

.cookie-accept,
.cookie-refuse {
    flex: 1;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: 'Marhey', cursive;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-accept {
    background: var(--blue);
    color: var(--white);
    border: none;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.brand img {
    width: 26px;
    height: 26px;
}

.brand span {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: 0.3s;
}

.nav a:hover {
    color: var(--blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: var(--black);
    z-index: 2000;
    transition: 0.3s;
    padding: 30px;
}

.sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sidebar-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
}

.hero {
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
}

.badge {
    background: var(--blue);
    padding: 8px 35px;
    border-radius: 25px;
    display: inline-block;
    transform: rotate(-2deg);
}

.blue {
    color: var(--light-blue);
}

.hero-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.players-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid var(--black);
    margin-left: -20px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.number {
    font-size: 4.5rem;
    font-weight: 700;
}

.btn {
    background: var(--blue);
    color: var(--white);
    padding: 18px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Marhey', cursive;
}

.btn:hover {
    background: #3A5FCC;
}

.text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px;
    font-weight: 400;
}

.ticker {
    background: var(--blue);
    padding: 25px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: slide 25s linear infinite;
    width: max-content;
}

.ticker-content span {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 60px;
    letter-spacing: 2px;
    white-space: nowrap;
    color: #000000;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about {
    padding: 80px 0;
}

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

.img {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 50px;
    object-fit: cover;
}

.about-col h2 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
}

.card-blue {
    background: var(--blue);
    padding: 70px 50px;
    border-radius: 35px;
}

.card-blue h3 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1;
}

.card-blue p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.why {
    padding: 100px 0 60px;
}
.why .wrapper {
    display: flex;
    justify-content: flex-end;
}

.why-content {
    text-align: left;
    max-width: 600px;
}

.why-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;

}
h2{
    color: #FEFCF9;
font-family: Marhey;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 90%; /* 28.8px */
text-transform: uppercase;
}

.why-content p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    font-weight: 400;
}

.different {
    padding: 80px 0 100px;
}

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

.different-col h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.list {
    list-style: none;
    margin-bottom: 50px;
}

.list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.list strong {
    font-weight: 600;
}

.different-col img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.statistics {
    padding: 80px 0 100px;
    background: var(--dark);
}

.stat-item {
    background: var(--gray);
    padding: 50px;
    border-radius: 35px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 50px;
    align-items: center;
}

.stat-badge {
    background: var(--blue);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
}

.stat-badge h3 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-badge p {
    font-size: 1rem;
    font-weight: 400;
}

.labels {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.labels span {
    color: var(--light-blue);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-text h4 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.footer {
    padding: 80px 0 50px;
    background: var(--black);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-block p,
.footer-block a {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 12px;
    display: block;
}

.footer-block a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.footer-block a:hover {
    color: var(--blue);
}

.socials {
    display: flex;
    gap: 20px;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.3s;
}

.icon.twitter {
    background: var(--twitter);
}

.icon.facebook {
    background: var(--facebook);
}

.icon:hover {
    transform: scale(1.1);
}

.icon img {
    width: 28px;
    height: 28px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.copyright p {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-layout,
    .different-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .why-content {
        text-align: left;
    }

    .why-content p {
        margin-left: 0;
    }

    .cookie-popup {
        width: 95%;
        padding: 30px 20px;
        bottom: 20px;
    }

    .cookie-btns {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .number {
        font-size: 3rem;
    }

    .about-col h2 {
        font-size: 2.2rem;
    }

    .different-col h2 {
        font-size: 2rem;
    }

    .stat-badge h3 {
        font-size: 3.5rem;
    }

    .card-blue h3 {
        font-size: 4.5rem;
    }

    .why-content h2 {
        font-size: 2.2rem;
    }

    .stat-text h4 {
        font-size: 1.3rem;
    }

    .stat-item {
        padding: 30px;
    }

    .ticker-content span {
        font-size: 1.8rem;
        margin: 0 40px;
    }

    .sidebar {
        width: 100%;
    }
}



.games-section {
    padding: 80px 0 100px;
    background: var(--black);
    padding-top: 120px;
}

.games-header {
    margin-bottom: 60px;
}

.games-badge {
    background: var(--blue);
    display: inline-block;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(-5deg);
}

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

.games-row {
    display: flex;
    gap: 30px;
    height: 400px;
}

.game-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: block;
    transition: transform 0.3s;
    flex: 1;
}

.game-card.large {
    flex: 2;
}

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

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

@media (max-width: 968px) {
    .games-row {
        flex-direction: column;
        height: auto;
    }

    .game-card {
        height: 250px;
    }

    .game-card.large {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .games-row {
        gap: 20px;
    }

    .game-card {
        height: 200px;
    }

    .games-badge {
        font-size: 2rem;
        padding: 12px 40px;
    }
}



.game-detail {
    padding: 100px 0;
    background: var(--black);
}

.game-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.game-detail-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-detail-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.game-detail-left h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
}

.game-detail-right {
    background: var(--blue);
    padding: 80px 60px;
    border-radius: 40px;
}

.game-detail-right h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.game-detail-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 968px) {
    .game-detail-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .game-detail-left h2 {
        font-size: 3rem;
    }

    .game-detail-right {
        padding: 60px 40px;
    }

    .game-detail-right h3 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .game-detail {
        padding: 60px 0;
    }

    .game-detail-left h2 {
        font-size: 2.5rem;
    }

    .game-detail-right {
        padding: 40px 30px;
    }

    .game-detail-right h3 {
        font-size: 1.8rem;
    }

    .game-detail-right p {
        font-size: 1rem;
    }
}


.game-detail .btn{
    max-width: 220px;
}