@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
body {
    margin: 0;
    padding: 0;
    background-color: #131313;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 136, 0, 0.35) 0, rgba(255, 136, 0, 0) 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 160, 60, 0.25) 0, rgba(255, 160, 60, 0) 45%);
    background-attachment: scroll;
    font-family: 'Unbounded', cursive;
}
header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 1200px;
    margin: auto;
    margin-top: 20px;
    border-radius: 40px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border)
}

.logo {
    width: 75px;
    height: 75px;
    border-radius: 30%;
    cursor: pointer;
    display: block;
}
.nav a {
    text-decoration: none;
    color: black;
    padding: 10px;
    position: relative;
}

.nav a.active {
    color: #ff8800;
    font-weight: 700;
}

.nav a.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 10px;
    right: 10px;
    height: 2px;
    border-radius: 999px;
    background-color: #ff8800;
}
.burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease;
}
.start {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Unbounded', cursive;
    width: 200px;
    height: 50px;
    font-size: 16px;
    text-align: center;
    background-color: #ff8800;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
.rocket {
    width: 20px;
    height: 20px;
}
.online-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    color: white;
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(46, 204, 113, 1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
    }
}

.hero {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-text, .hero-online, .hero-img {
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-online {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.hero-online:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-closed-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.click-cursor {
    position: relative;
    z-index: 1;
    animation: cursor-press 1.8s ease-in-out infinite;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}

.click-ring {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.click-ring.r1 {
    animation: ring-pulse 1.8s ease-out infinite;
}

.click-ring.r2 {
    animation: ring-pulse 1.8s ease-out infinite 0.5s;
}

@keyframes cursor-press {
    0%, 60%, 100% { transform: scale(1) translate(0, 0); }
    80%            { transform: scale(0.85) translate(1px, 2px); }
}

@keyframes ring-pulse {
    0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.hero-img {
    margin: 0 auto;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 136, 0, 0.3));
}

.hero .start {
    z-index: 1;
    align-self: center;
    box-shadow: 0 10px 25px rgba(255, 136, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .start:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 136, 0, 0.6);
}

.rocket-hero {
    width: 20px;
    height: 20px;
    padding: 0px;
}

.news {
    width: 1200px;
    margin: 50px auto;
    color: white;
    justify-self: center;
}
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prev, .next {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: none;
    background-color: #ff8800;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.prev:disabled, .next:disabled {
    background-color: #555;
    opacity: 0.5;
    cursor: not-allowed;
}
.news-cont {
    display: flex;
    align-items: center;

}
.news,
.old-news {
    width: 50%;
    margin: 50px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.old-news {
    filter: blur(2px);
}

.news-anim-out {
    opacity: 0;
    transform: translateY(10px);
}

.news-anim-in {
    opacity: 1;
    transform: translateY(0);
}

.play {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
.right {
    width: 35%;

}

.left {
    display: flex;
    flex-direction: column;
    width: 35%;
    background: rgba(255, 255, 255, 0.575);
    backdrop-filter: blur(40px) saturate(180%);
    height: 500px;
    border-radius: 40px;
}
.left h2 {
    color: rgb(0, 0, 0);
    margin-left: 10px;
    font-size: 35px;
}
.switcher {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 4px;
    width: 90%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.switch {
    flex: 1;
    border-radius: 999px;
    border: none;
    background-color: transparent;
    color: #333;
    width: auto;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.switch-active {
    background-color: #ff8800;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 136, 0, 0.55);
}

.switch:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.switch-active:hover {
    background-color: #ff951a;
    transform: translateY(-1px);
}

.ip {
    margin-top: 50px;
}

.play-text {
    margin-left: 30px;
}

.play-text a {
    text-decoration: none;
    color: black;
    
}
.play-text a:hover {
    color: gray;
}
.copy {
    width: 20px;
    height: 20px;
}
.ip:hover {
    cursor: pointer;
    color: gray;
}
.quickstart-hint {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 24px;
    padding: 14px 22px;
    border-radius: 14px;
    background: #1a6fa3;
    border: 1px solid #2196c8;
    color: #fff;
    font-family: 'Unbounded', cursive;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(34, 158, 217, 0.35);
}
.quickstart-hint:hover {
    background: #1e84c0;
    box-shadow: 0 6px 24px rgba(34, 158, 217, 0.55);
}
@keyframes modalBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes modalContIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(-24px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: modalBackdropIn 0.25s ease;
}
.modal-cont {
    margin: auto;
    width: 50%;
    border-radius: 15px;
    background-color: #ffffff;
    backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: modalContIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.close {
    border-radius: 10px;
    border: none;
    background-color: #ff8800;
    width: 150px;
    height: 50px;
}
.closed {
    display: none;
}

/* Map section */
.map {
    width: 100%;
    padding: 120px 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.map p:first-child {
    margin: 0;
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: 2px;
}

.map p:nth-child(2) {
    margin: 8px 0 0;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: lowercase;
}

.map p:nth-child(2)::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
    animation: pulse-dot 2s infinite;
}

.map-img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75) contrast(1.15);
}

.map-card {
    position: relative;
    margin-top: 32px;
    width: min(960px, 92%);
    height: 260px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.15) 0, transparent 55%),
        radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.4) 0, transparent 60%),
        linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent 25%, transparent 75%, rgba(0, 0, 0, 0.75));
    pointer-events: none;
}

.open-map {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    font-family: 'Unbounded', cursive;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.open-map:hover {
    transform: translate(-50%, calc(-50% - 2px));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    background-color: #ffffff;
}

/* ── Support banner ── */
.support-banner {
    width: min(900px, 92%);
    margin: 0 auto 40px;
}

.support-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(34, 158, 217, 0.15), rgba(34, 158, 217, 0.05));
    border: 1px solid rgba(34, 158, 217, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.support-banner-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(34, 158, 217, 0.2);
    border: 1px solid rgba(34, 158, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29b6e8;
}

.support-banner-text {
    flex: 1;
}

.support-banner-text h3 {
    color: white;
    font-size: 16px;
    margin: 0 0 4px;
}

.support-banner-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

.support-banner-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(34, 158, 217, 0.25);
    border: 1px solid rgba(34, 158, 217, 0.45);
    color: #29b6e8;
    font-family: 'Unbounded', cursive;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.support-banner-btn:hover {
    background: rgba(34, 158, 217, 0.45);
    color: white;
}

/* ── Social section ── */
.social {
    width: min(900px, 92%);
    margin: 0 auto 80px;
}

.social-title {
    text-align: center;
    color: white;
    font-size: 36px;
    margin: 0 0 10px;
}

.social-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 0 40px;
}

.social-cont {
    display: flex;
    gap: 20px;
}

.social-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 36px 28px;
    border-radius: 28px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(180%);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.social-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-card-icon img {
    width: 40px;
    height: 40px;
}

.social-card-body {
    text-align: center;
}

.social-card-name {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.social-card-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.social-card-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.discord-card .social-card-btn {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.4);
}

.telegram-card .social-card-btn {
    background: rgba(34, 158, 217, 0.25);
    border-color: rgba(34, 158, 217, 0.4);
}

/* ── Footer ── */
footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.footer-inner {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
}

.footer-brand-name {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.footer-nav,
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-title {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ff8800;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: white;
}

.footer-social-link img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-social-link:hover img {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    flex-wrap: wrap;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
}
.modal-input, .close, .continue {
    font-family: 'Unbounded', cursive;
}
.continue {
    border-radius: 10px;
    border: none;
    background-color: #ff8800;
    width: 150px;
    height: 50px;
    
}
.modalButtons {
    margin: 0 auto;
    margin: 20px 0;

}

.modal-input {
    width: 90%;
    height: 50px;
    border-radius: 10px;
    padding: 0 10px;
}

.modal-select {
    width: 90%;
    height: 50px;
    border-radius: 10px;
    padding: 0 10px;
    font-family: 'Unbounded', cursive;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

.switch {
    font-family: 'Unbounded', cursive;
}

.shop {
    width: min(1100px, 90%);
    margin: 60px auto 80px;
}
.shop h2 {
    text-align: center;
    color: white;
    font-size: 42px;
    margin-bottom: 36px;
    letter-spacing: 1px;
}
.shop-online {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto 28px;
    padding: 10px 18px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.shop-cont {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.item {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    padding: 32px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0;
    width: auto;
    height: auto;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.18);
    color: #111;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.special {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.92), rgba(255, 175, 70, 0.78));
    border-color: rgba(255, 185, 90, 0.35);
    position: relative;
    overflow: hidden;
}

.special::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.18), transparent 55%);
    pointer-events: none;
}

.items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
}

.item-title {
    text-align: center;
    padding: 0;
    font-size: 22px;
    margin: 0;
    color: white;
    line-height: 1.25;
}

.item-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.item-price {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: white;
}

.special .item-title {
    font-size: 34px;
    color: #111;
}

.special .item-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
}

.special .item-price {
    font-size: 40px;
    color: #111;
}

.buy {
    width: 160px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background-color: #ff8800;
    margin: 0 auto;
    font-family: 'Unbounded', cursive;
    font-size: 14px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(255, 136, 0, 0.38);
}

.special .buy {
    width: 280px;
    height: 62px;
    font-size: 18px;
    background: #111;
    color: white;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}


@media (max-width: 1240px) {
    header,
    .news,
    .social {
        width: calc(100% - 32px);
    }

    header {
        justify-content: space-between;
        gap: 16px;
        padding: 14px 20px;
        box-sizing: border-box;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 0 24px;
        box-sizing: border-box;
    }

    .hero-img {
        width: min(100%, 720px);
    }

    .hero-text {
        max-width: 680px;
    }

    .news-cont {
        gap: 24px;
    }

    .news,
    .old-news {
        margin: 0;
    }

    .play {
        padding: 0 24px;
        gap: 32px;
    }

    .left,
    .right {
        width: 45%;
    }

    .shop {
        width: calc(100% - 48px);
    }
}

@media (min-width: 901px) and (max-width: 1240px) {
    .shop {
        width: min(1000px, calc(100% - 56px));
        padding: 36px 0 12px;
    }

    .shop h2 {
        margin-bottom: 24px;
        font-size: 42px;
        letter-spacing: 1px;
    }

    .shop-online {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .shop-cont {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .special {
        width: 100%;
        min-height: 260px;
        padding: 36px 40px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: left;
        background:
            linear-gradient(135deg, rgba(255, 136, 0, 0.88), rgba(255, 170, 64, 0.72)),
            rgba(255, 255, 255, 0.12);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    }

    .special .item-title,
    .special .item-text,
    .special .item-price {
        text-align: left;
        color: #111;
        margin: 0;
    }

    .special .item-title {
        max-width: 580px;
        font-size: 38px;
        line-height: 1.15;
    }

    .special .item-text {
        max-width: 620px;
        font-size: 17px;
        line-height: 1.6;
    }

    .special .item-price {
        font-size: 34px;
    }

    .items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        margin: 0;
        align-items: stretch;
    }

    .items .item {
        width: 100%;
        min-height: 320px;
        margin: 0;
        padding: 28px 24px 24px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .item-title,
    .item-text,
    .item-price {
        margin: 0;
    }

    .item-title {
        padding-top: 0;
        font-size: 28px;
        line-height: 1.2;
    }

    .item-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .item-price {
        font-size: 28px;
    }

    .buy {
        width: 160px;
        height: 48px;
        font-size: 16px;
        border-radius: 14px;
        box-shadow: 0 12px 24px rgba(255, 136, 0, 0.28);
    }

    .special .buy {
        width: 240px;
        height: 56px;
        font-size: 20px;
        align-self: flex-start;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    }
}

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    header {
        width: calc(100% - 24px);
        top: 12px;
        margin-top: 0;
        border-radius: 28px;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 16px;
    }

    .logo {
        width: 64px;
        height: 64px;
    }

    .burger {
        display: inline-flex;
        order: unset;
        margin-left: 0;
        justify-self: end;
    }

    .online-header {
        display: none;
    }

    .nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        box-sizing: border-box;
        border-radius: 22px;
        background: rgba(20, 20, 20, 0.75);
        backdrop-filter: blur(24px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav a {
        padding: 12px 14px;
        font-size: 14px;
        color: white;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav a.active {
        color: #ff8800;
        background: rgba(255, 136, 0, 0.15);
        font-weight: 700;
    }

    .nav a.active::after {
        display: none;
    }

    header .start {
        order: unset;
        width: 100%;
        max-width: none;
        min-width: 0;
        height: 46px;
        padding: 0 14px;
        font-size: 14px;
        white-space: nowrap;
    }

    header.menu-open .nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    header.menu-open .burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    header.menu-open .burger span:nth-child(2) {
        opacity: 0;
    }

    header.menu-open .burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 100svh;
        padding: 150px 20px 60px;
        height: auto;
    }

    .hero-img {
        width: min(100%, 560px);
    }

    .hero-text {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .hero-online {
        margin-top: 16px;
        font-size: 15px;
    }

    .news {
        width: calc(100% - 32px);
        margin: 40px auto;
        padding-inline: 8px;
        box-sizing: border-box;
    }

    .news-cont {
        flex-direction: column;
        align-items: stretch;
    }

    .news,
    .old-news {
        width: 100%;
    }

    .play {
        flex-direction: column;
        padding: 0 16px;
    }

    .left,
    .right {
        width: 100%;
        max-width: 680px;
    }

    .left {
        height: auto;
        padding: 28px 0;
    }

    .left h2 {
        margin: 0 20px 20px;
        font-size: 30px;
    }

    .play-text {
        margin-left: 20px;
        margin-right: 20px;
    }

    .ip {
        margin-top: 28px;
    }

    .map {
        padding: 90px 16px 110px;
        box-sizing: border-box;
    }

    .map-card {
        width: 100%;
        height: 220px;
    }

    .support-banner {
        width: calc(100% - 32px);
        margin-bottom: 24px;
    }

    .support-banner-inner {
        flex-wrap: wrap;
        padding: 20px;
        gap: 16px;
    }

    .support-banner-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        white-space: normal;
    }

    .social {
        width: calc(100% - 32px);
        margin-bottom: 60px;
    }

    .social-cont {
        flex-direction: column;
        gap: 16px;
    }

    .social-card {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding: 24px 20px;
        text-align: left;
    }

    .social-card-body {
        text-align: left;
        flex: 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .modal-cont {
        width: min(680px, calc(100% - 32px));
        padding: 24px;
        box-sizing: border-box;
    }

    .shop {
        width: calc(100% - 32px);
    }

    .shop-online {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .shop-cont,
    .items {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .item,
    .special {
        width: 100%;
        max-width: 680px;
        height: auto;
        padding-bottom: 24px;
    }

    .special .buy {
        width: min(300px, calc(100% - 48px));
    }
}

@media (max-width: 600px) {
    header {
        border-radius: 22px;
        padding: 14px 12px;
        gap: 10px;
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .burger {
        width: 44px;
        height: 44px;
    }

    header .start {
        height: 44px;
        padding: 0 12px;
        font-size: 13px;
        gap: 6px;
        border-radius: 12px;
    }

    header .start .rocket {
        width: 16px;
        height: 16px;
    }

    .online-header {
        font-size: 12px;
        padding: 6px 10px;
    }

    .start,
    .hero .start {
        width: 100%;
        max-width: 280px;
        height: 48px;
        font-size: 14px;
    }

    .hero {
        padding: 170px 16px 48px;
    }

    .hero-text {
        font-size: 17px;
        line-height: 1.5;
    }

    .news {
        padding-inline: 4px;
    }

    .hero-online {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .old-news {
        display: none !important;
    }

    .left {
        border-radius: 28px;
    }

    .left h2 {
        font-size: 24px;
    }

    .switcher {
        width: calc(100% - 24px);
    }

    .switch {
        font-size: 14px;
        height: 42px;
    }

    .play-text {
        margin-left: 16px;
        margin-right: 16px;
        font-size: 14px;
        line-height: 1.6;
    }

    .map p:nth-child(2) {
        font-size: 16px;
    }

    .map-card {
        height: 180px;
        border-radius: 24px;
    }

    .map-img {
        border-radius: 24px;
    }

    .open-map {
        width: calc(100% - 32px);
        justify-content: center;
        font-size: 13px;
    }

    .social-card {
        flex-direction: row;
        padding: 20px 16px;
        gap: 16px;
    }

    .social-card-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .social-card-icon img {
        width: 32px;
        height: 32px;
    }

    .social-card-name {
        font-size: 17px;
    }

    .social-card-btn {
        display: none;
    }

    .footer-inner {
        padding: 40px 0 24px;
    }

    .footer-top {
        gap: 24px;
        padding-bottom: 28px;
    }

    .footer-brand-name {
        font-size: 16px;
    }

    .modal-cont {
        width: calc(100% - 20px);
        padding: 20px 16px;
    }

    .modalButtons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .close,
    .continue {
        width: 100%;
    }

    .shop h2,
    .special .item-title {
        font-size: 28px;
    }

    .shop-online {
        width: calc(100% - 24px);
        max-width: 320px;
        box-sizing: border-box;
        padding: 10px 14px;
        font-size: 13px;
    }

    .item {
        border-radius: 28px;
    }

    .item-title,
    .item-price {
        font-size: 22px;
    }

    .item-text {
        padding: 0 16px;
        line-height: 1.6;
    }

    .buy,
    .special .buy {
        width: calc(100% - 32px);
        max-width: 280px;
        height: 48px;
        font-size: 16px;
    }
}
