/* Game Pages - Universal CSS */
/* Основные цвета из главной страницы */
:root {
    --primary: #FF004D;
    --secondary: #8F00FF;
    --green: #53D624;
    --dark: #240A0A;
    --white: #fff;
    --gray: #848484;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Wrapper */
.wrapper {
    max-width: 1310px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 25px 0;
    transition: 0.3s ease all;
    background: transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 15px 0;
}

.header > .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 5px;
}

.header__nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 15px 20px;
    background: rgba(255, 0, 77, 0.25);
    transition: 0.25s ease all;
}

.header__nav-link:hover,
.header__nav-link.active {
    background-color: var(--primary);
    box-shadow: 0px 14px 20px rgba(255, 0, 0, 0.5);
}

.header__button a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background-color: #fff;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    transition: 0.25s ease all;
}

.header__button a:hover {
    background-color: var(--primary);
    color: #fff;
}

.header__button a:hover svg path {
    fill: #fff;
}

.header__burger {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.header__burger span {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.25s ease all;
}

.header__burger span::before,
.header__burger span::after {
    position: absolute;
    content: "";
    width: inherit;
    height: inherit;
    background-color: inherit;
    left: 0;
    border-radius: 4px;
    transition: 0.25s ease all;
}

.header__burger span::before { top: -11px; }
.header__burger span::after { top: 11px; }

.header__burger.active span {
    transform: rotate(45deg);
}

.header__burger.active span::before { display: none; }
.header__burger.active span::after {
    top: 0;
    transform: rotate(-90deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 77, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(143, 0, 255, 0.15) 0%, transparent 50%);
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__text h1 {
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hero__text h1 span {
    color: var(--primary);
}

.hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-style: italic;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    transition: 0.25s ease all;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0px 14px 30px rgba(255, 0, 77, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 20px 40px rgba(255, 0, 77, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark);
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow effect container */
.hero__logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__game-logo {
    max-width: 400px;
    position: relative;
    z-index: 2;
}

/* Light glow - use class "glow-light" on wrapper */
.hero__logo-wrapper.glow-light::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Dark glow - use class "glow-dark" on wrapper */
.hero__logo-wrapper.glow-dark::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Color glow - primary color */
.hero__logo-wrapper.glow-color::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 77, 0.3) 0%, rgba(143, 0, 255, 0.15) 40%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}


/* Floating animation for logo */
.hero__game-logo {
    animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section Headings */
.section {
    padding: 100px 0;
}

.section__heading {
    text-align: center;
    margin-bottom: 60px;
}

.section__heading h2 {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: #fff;
}

.section__subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-top: 15px;
    font-style: italic;
}

/* About Game Section */
.about-game {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.about-game__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-game__text h3 {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-game__text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-game__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-game__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.about-game__feature svg {
    color: var(--green);
    flex-shrink: 0;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s ease all;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.advantage-card__icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.advantage-card__title {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
}

.advantage-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing__grid--two-items {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    transition: 0.3s ease all;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card__header {
    padding: 40px 30px 20px;
}

.pricing-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__icon.green { background: var(--green); }
.pricing-card__icon.red { background: var(--primary); }
.pricing-card__icon.purple { background: var(--secondary); }

.pricing-card__icon svg {
    fill: #fff;
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 5px;
}

.pricing-card__specs {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pricing-card__spec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.pricing-card__spec span:first-child {
    color: var(--gray);
}

.pricing-card__spec span:last-child {
    font-weight: 700;
}

.pricing-card__price {
    padding: 30px;
}

.pricing-card__old-price {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.pricing-card__new-price {
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: var(--primary);
}

.pricing-card__new-price span {
    font-size: 18px;
    font-weight: 400;
}

.pricing-card__promo {
    font-size: 12px;
    color: var(--green);
    font-weight: 700;
    margin-top: 5px;
}

.pricing-card__button {
    padding: 0 30px 30px;
}

.pricing-card__button .btn {
    width: 100%;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 40px 0;
    text-align: center;
}

.promo-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-banner__text {
    color: #fff;
}

.promo-banner__text h3 {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
}

.promo-banner__text p {
    font-size: 16px;
    opacity: 0.9;
}

.promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

/* Locations Section */
.locations {
    background: #fff;
}

.locations__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    transition: 0.3s ease all;
}

.location-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-card__flag {
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-card__flag svg {
    border-radius: 6px;
    display: block;
}

.location-card__info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-card__info p {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0d0d1a 0%, #000 100%);
    padding: 60px 0 30px;
    position: relative;
}

.footer > .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo img {
    height: 35px;
    opacity: 0.7;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    max-width: 500px;
    text-align: right;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__text h1 {
        font-size: 40px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__image {
        order: -1;
    }

    .hero__game-logo {
        max-width: 300px;
    }

    .about-game__content {
        grid-template-columns: 1fr;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .header {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 20px;
    }

    .header__nav.active {
        display: flex;
    }

    .header__nav-link {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .header__button {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero__text h1 {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section__heading h2 {
        font-size: 28px;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .about-game__features {
        grid-template-columns: 1fr;
    }

    .locations__grid {
        grid-template-columns: 1fr;
    }

    .promo-banner__content {
        flex-direction: column;
    }

    .footer > .wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer__copy {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__text h1 {
        font-size: 26px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 14px;
    }

    .hero__game-logo {
        max-width: 200px;
        padding: 20px;
    }

    .section__heading h2 {
        font-size: 22px;
        padding: 10px 20px;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .pricing-card__new-price {
        font-size: 32px;
    }

    .promo-code {
        font-size: 18px;
        padding: 12px 20px;
    }
}

