@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;700&display=swap');

/*
	  __                .__       .__                 ________     _______   
	_/  |_____________  |__| ____ |__| ____    ____   \_____  \    \   _  \  
	\   __\_  __ \__  \ |  |/    \|  |/    \  / ___\   /  ____/    /  /_\  \ 
	 |  |  |  | \// __ \|  |   |  \  |   |  \/ /_/  > /       \    \  \_/   \
	 |__|  |__|  (____  /__|___|  /__|___|  /\___  /  \_______ \ /\ \_____  /
					  \/        \/        \//_____/           \/ \/       \/  .
			
	created by terror punisher 
	tg: @foo0c
	
	created with love <3
*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #060606;
    --bg-card-dark: #101010;
    --bg-card-light: #f2f2f2;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-on-light: #1a1a1a;
    --accent-1: #7c3aed;
    --accent-2: #a78bfa;
    --accent-3: #818cf8;
    --accent-warm: #f59e0b;
    --accent-warm-soft: #fbbf24;
    --gradient-accent: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: auto;
}

@media (min-width: 2200px) {
    .navbar-inner,
    .hero-content,
    .about,
    .events,
    .contacts,
    .footer,
    .shop-hero-content,
    .shop-section {
        max-width: 1680px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 2600px) {
    .navbar-inner,
    .hero-content,
    .about,
    .contacts,
    .footer,
    .shop-hero-content,
    .shop-section {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    text-transform: lowercase;
}

.page-wrapper {
    position: relative;
}

a,
button,
input,
textarea,
select {
    -webkit-user-select: none;
    user-select: none;
}

.hero-gm {
    user-select: none;
    -webkit-user-select: none;
}

.hero-title,
.hero-title-echo,
.hero-title.glitch,
.counter-subtitle,
.watermark,
.wm-by,
.wm-name,
.wm-line,
.banner-inner,
.logo,
.nav-link,
.copyright,
.status-dot,
.status-text,
.shop-title,
.shop-subtitle,
.shop-section-title,
.tier-label,
.tier-price,
.tier-badge,
.price-card-title,
.price-card-note,
.price-col-name,
.price-col-price,
.price-card-desc,
.shop-contact-link,
.tooltip-content,
.tooltip-trigger,
.modal-close,
.modal-intro,
.modal-subtext,
.modal-steps,
.modal-steps-num,
.modal-done,
.modal-cta,
.modal-after-download,
.btn,
.btn-primary,
.btn-outline {
    -webkit-user-select: none;
    user-select: none;
}

.modal-intro code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-3);
    background: rgba(108, 63, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    user-select: text;
    -webkit-user-select: text;
}

.modal-steps-num li code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-3);
    background: rgba(108, 63, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    user-select: text;
    -webkit-user-select: text;
}

.modal-intro code,
.modal-steps-num code,
.modal-steps-num li strong {
    user-select: text;
    -webkit-user-select: text;
}

.modal-body {
    user-select: text;
    -webkit-user-select: text;
}

a {
    text-decoration: none;
    color: inherit;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: lowercase;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(108, 63, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(108, 63, 255, 0.25);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(129, 140, 248, 0.5);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: var(--gradient-accent);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.3s ease;
    filter: blur(6px);
}

.btn-outline:hover {
    border-color: rgba(108, 63, 255, 0.6);
    background: rgba(108, 63, 255, 0.08);
}

.btn-outline:hover::after {
    opacity: 0.15;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid rgba(108, 63, 255, 0.6);
    border-bottom: 1px solid rgba(108, 63, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-transform: lowercase;
    position: relative;
}

.nav-link span {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-2);
}

.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse-dot 2s infinite;
}

.status-dot.loading {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
    animation: pulse-dot 1s infinite;
}

.status-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    animation: none;
}

.status-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

.btn-connect {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--text-primary);
}

.mobile-menu .server-status {
    margin: 16px 0;
}

.mobile-menu .btn-connect {
    margin-top: 8px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 60px;
    position: relative;
}

.hero-content {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-wrapper {
    position: relative;
    width: 500px;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease-out;
}

.character-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 63, 255, 0.35), rgba(168, 85, 247, 0.15) 50%, transparent 70%);
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: 0;
}

.character-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 25px rgba(108, 63, 255, 0.4)) drop-shadow(0 0 50px rgba(168, 85, 247, 0.2));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.character-image:hover {
    filter: drop-shadow(0 0 35px rgba(108, 63, 255, 0.6)) drop-shadow(0 0 70px rgba(168, 85, 247, 0.35));
    transform: scale(1.02);
}

.character-caption {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.character-caption strong {
    display: block;
    font-size: 1.4rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title-wrapper {
    position: relative;
}

.hero-title-echo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(108, 63, 255, 0.12);
    position: absolute;
    top: -6px;
    left: 6px;
    user-select: none;
}

.hero-title.glitch {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title.glitch::before,
.hero-title.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title.glitch::before {
    animation: glitch-1 3s infinite linear alternate-reverse;
    clip-path: inset(0 0 65% 0);
    opacity: 0.8;
}

.hero-title.glitch::after {
    animation: glitch-2 2.5s infinite linear alternate-reverse;
    clip-path: inset(65% 0 0 0);
    opacity: 0.8;
}

@keyframes glitch-1 {

    0%,
    95% {
        transform: translate(0);
    }

    96% {
        transform: translate(-3px, 1px);
    }

    97% {
        transform: translate(2px, -1px);
    }

    98% {
        transform: translate(-1px, 2px);
    }

    99% {
        transform: translate(3px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes glitch-2 {

    0%,
    93% {
        transform: translate(0);
    }

    94% {
        transform: translate(2px, 1px);
    }

    95% {
        transform: translate(-3px, -1px);
    }

    96% {
        transform: translate(1px, 2px);
    }

    97% {
        transform: translate(-2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.counter-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 28px;
}

.drum-wrapper {
    overflow: hidden;
    height: 96px;
    position: relative;
}

.drum-track {
    display: flex;
    flex-direction: column;
    animation: drumSpin var(--dur) cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay);
    transform: translateY(var(--start-offset));
}

.drum-digit {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    color: #b0b0b0;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes drumSpin {
    from {
        transform: translateY(var(--start-offset));
    }

    to {
        transform: translateY(0);
    }
}

.plus-sign {
    font-size: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 6px;
    margin-bottom: 4px;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
    animation-delay: 4.7s;
    align-self: flex-end;
    -webkit-user-select: none;
    user-select: none;
}

.counter-subtitle {
    margin-top: 1.4rem;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 4.9s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

img,
svg {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.banner-strip {
    position: relative;
    overflow: hidden;
    padding: 40px 32px;
    text-align: center;
    border-top: 1px solid rgba(108, 63, 255, 0.2);
    border-bottom: 1px solid rgba(108, 63, 255, 0.2);
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, 0.7);
    pointer-events: none;
}

.banner-inner {
    position: relative;
    z-index: 1;
}

.banner-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-inner p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}

.about-main {
    margin-bottom: 40px;
}

.about-intro {
    padding: 40px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-intro-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    pointer-events: none;
}

.about-intro>*:not(.about-intro-img) {
    position: relative;
    z-index: 1;
}

.about-intro h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    padding: 36px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 3;
    transition: transform 0.3s ease;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 6, 6, 0.95) 100%);
    pointer-events: none;
    z-index: 10;
    border-radius: 12px;
}

.card-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    object-fit: cover;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.6s ease;
}

.card:hover .card-bg-img {
    transform: translate(-50%, -50%) rotate(8deg) scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, 0.4);
    z-index: 1;
}

.card-overlay.light {
    background: rgba(16, 16, 16, 0.6);
}

.card>*:not(.card-bg-img):not(.card-overlay):not(.card-gradient) {
    position: relative;
    z-index: 4;
}

.card:hover {
    transform: none;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.card-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 2;
}

.light-card {
    background: var(--bg-card-light);
    color: var(--text-on-light);
}

.light-card h3,
.light-card p {
    color: var(--text-on-light);
}

.dark-card {
    background: var(--bg-card-dark);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 0 0 1px rgba(108, 63, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contacts {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
}

.events {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}

.events-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.events-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.events-intro {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    position: relative;
    transition: transform 0.3s ease;
    align-items: baseline;
}

.event-item:hover {
    transform: translateX(6px);
}

.event-priton {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 24px 20px;
}

.event-priton::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/sections/event-priton.png');
    background-size: 100% 100%;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.event-priton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 6, 6, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.event-priton > * {
    position: relative;
    z-index: 2;
}

.event-oilrigs {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 24px 20px;
}

.event-oilrigs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/sections/event-oilrigs.png');
    background-size: 100% 100%;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.event-oilrigs::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 6, 6, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.event-oilrigs > * {
    position: relative;
    z-index: 2;
}

.event-famwars {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 24px 20px;
}

.event-famwars::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/sections/event-famwars.png');
    background-size: 100% 100%;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.event-famwars::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 6, 6, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.event-famwars > * {
    position: relative;
    z-index: 2;
}

.event-podzemka {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 24px 20px;
}

.event-podzemka::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/sections/event-podzemka.png');
    background-size: 100% 100%;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.event-podzemka::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 6, 6, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.event-podzemka > * {
    position: relative;
    z-index: 2;
}

.event-number {
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-2);
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
}

.event-content {
    flex: 1;
    padding-top: 6px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-primary);
    -webkit-user-select: none;
    user-select: none;
}

.event-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.event-factions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.faction {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    -webkit-user-select: none;
    user-select: none;
}

.faction.aztekas {
    background: rgba(0, 255, 226, 0.1);
    color: #00FFE2;
    border: 1px solid rgba(0, 255, 226, 0.3);
}

.faction.wolves {
    background: rgba(168, 120, 120, 0.1);
    color: #A87878;
    border: 1px solid rgba(168, 120, 120, 0.3);
}

.faction.cosa {
    background: rgba(153, 51, 102, 0.1);
    color: #993366;
    border: 1px solid rgba(153, 51, 102, 0.3);
}

.faction.yakuza {
    background: rgba(150, 2, 2, 0.1);
    color: #960202;
    border: 1px solid rgba(150, 2, 2, 0.3);
}

.events-warning {
    margin-top: 40px;
    padding: 24px 32px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.events-warning::before {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -15px;
    width: 120px;
    height: 120px;
    background-image: url("/assets/img/sections/warning.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.events-warning > * {
    position: relative;
    z-index: 3;
}

.events-warning strong {
    display: block;
    font-size: 1rem;
    color: #ef4444;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: lowercase;
    -webkit-user-select: none;
    user-select: none;
}

.events-warning p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contacts-inner {
    position: relative;
    z-index: 2;
}

.phone-anim {
    position: absolute;
    right: -100px;
    bottom: -80px;
    width: 640px;
    height: 640px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.phone-anim video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contacts h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 140px;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(108, 63, 255, 0.15);
}

.contact-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

.contact-card:hover .contact-label {
    color: var(--text-primary);
}

.contact-card[href*="t.me"]:hover .contact-label {
    color: #0088CC;
}

.contact-card:hover .contact-icon-img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(108, 63, 255, 0.15);
    gap: 24px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav .nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-nav .nav-link:hover {
    color: var(--text-primary);
}

.footer-nav .nav-link::after {
    bottom: -2px;
    height: 1px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    }

    50% {
        box-shadow: 0 0 16px rgba(74, 222, 128, 0.9);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.hero,
.banner-strip,
.about,
.contacts,
.footer {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-gm {
        justify-content: center;
    }

    .hero-title,
    .hero-title-echo {
        font-size: 2.8rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        gap: 12px;
    }

    .contact-card {
        padding: 20px 16px;
        min-width: 110px;
    }
}

@media (max-width: 768px) {
    .hero-bg-video {
        opacity: 0.18;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-title,
    .hero-title-echo {
        font-size: 2rem;
    }

    .hero-title-echo {
        top: -3px;
        left: 3px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .character-wrapper {
        width: 380px;
        height: 490px;
    }

    .banner-strip {
        padding: 30px 20px;
    }

    .banner-inner h2 {
        font-size: 1.2rem;
    }

    .about,
    .contacts {
        padding: 60px 20px;
    }

    .about-intro {
        padding: 28px;
    }

    .about-intro h2 {
        font-size: 1.4rem;
    }

    .card {
        padding: 28px;
    }

    .contacts h2 {
        font-size: 1.6rem;
    }

    .events {
        padding: 60px 20px;
    }

    .events-header {
        flex-direction: column;
        gap: 12px;
    }

    .events-header h2 {
        font-size: 1.6rem;
    }

    .events-intro {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .event-item {
        gap: 16px;
        padding: 18px 0;
    }

    .event-item:hover {
        transform: none;
    }

    .event-number {
        font-family: 'Cormorant Garamond', serif;
        font-weight: 700;
        font-size: 1.3rem;
    }

    .event-title {
        font-size: 1.05rem;
    }

    .event-desc {
        font-size: 0.9rem;
    }

    .faction {
        padding: 4px 12px;
        font-size: 0.8rem;
    }

    .events-warning {
        padding: 20px 24px;
        margin-top: 30px;
    }

    .phone-anim {
        display: none;
    }

    .contact-cards {
        justify-content: center;
    }

    .contact-card {
        padding: 20px 16px;
        width: auto;
        height: auto;
    }

    .card-bg-img {
        animation: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card-dark);
    border: 1px solid rgba(108, 63, 255, 0.2);
    border-radius: 16px;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.modal-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.modal-intro code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-3);
    background: rgba(108, 63, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.modal-subtext {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.modal-steps {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.modal-steps li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(108, 63, 255, 0.1);
}

.modal-steps li:last-child {
    border-bottom: none;
}

.modal-steps-num {
    padding-left: 20px;
    margin: 16px 0;
}

.modal-steps-num li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 0;
    line-height: 1.6;
}

.modal-steps-num li code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-3);
    background: rgba(108, 63, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.modal-done {
    font-size: 0.95rem;
    color: var(--accent-2);
    font-weight: 600;
    margin-top: 16px;
}

.modal-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 16px;
}

.modal-cta strong {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-download {
    margin: 20px 0;
}

.modal-or {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 12px 0;
}

.modal-link {
    color: var(--accent-3);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.modal-link:hover {
    color: var(--accent-1);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--text-primary);
}

.modal-after-download {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 12px 0;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    flex: 1;
    min-width: 160px;
    min-height: 44px;
}

@media (max-width: 480px) {
    .modal-body {
        padding: 28px 20px;
    }

    .modal-body h2 {
        font-size: 1.4rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
        min-width: auto;
        min-height: 44px;
    }

    .hero-bg-video {
        opacity: 0.12;
    }

    .hero-title,
    .hero-title-echo {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .character-wrapper {
        width: 280px;
        height: 360px;
    }

    .character-image {
        max-width: 100%;
        max-height: 100%;
    }

    .phone-anim {
        display: none;
    }
}

.shop-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 32px 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(108, 63, 255, 0.15);
}

.shop-hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.5;
}

.shop-hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(12%);
}

.shop-hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.shop-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.shop-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.currency-switcher {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.currency-btn {
    background: var(--bg-card-dark);
    border: 1px solid rgba(108, 63, 255, 0.2);
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    min-width: 80px;
}

.currency-btn:hover {
    border-color: rgba(108, 63, 255, 0.5);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.currency-btn.active {
    border-color: var(--accent-1);
    background: rgba(108, 63, 255, 0.15);
    color: var(--accent-2);
    box-shadow: 0 0 20px rgba(108, 63, 255, 0.2);
}

.currency-rates {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.7;
    font-family: 'JetBrains Mono', monospace;
}

.shop-contact-region {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 8px 0;
    text-align: center;
}

.shop-contact-region .shop-contact-link {
    font-size: 1.4rem;
    margin-left: 6px;
}

.shop-contact-card {
    flex-direction: column;
    gap: 8px;
}

.shop-link {
    color: var(--accent-3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-link:hover {
    color: var(--accent-2);
    text-decoration: underline;
}

.shop-creator {
    font-size: 0.95rem;
    opacity: 0.7;
}

.shop-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 32px;
}

.shop-section-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    text-align: center;
}

.price-table {
    background: var(--bg-card-dark);
    border: 1px solid rgba(108, 63, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.price-table::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 6, 6, 0.95) 100%);
    pointer-events: none;
    z-index: 20;
    border-radius: 12px;
}

.price-table > * {
    position: relative;
    z-index: 11;
}

.price-table-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(108, 63, 255, 0.08);
    border-bottom: 1px solid rgba(108, 63, 255, 0.2);
}

.price-col-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.price-col-price {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--accent-2);
    transition: transform 0.25s ease;
    display: inline-block;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(108, 63, 255, 0.08);
    transition: background 0.2s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: rgba(108, 63, 255, 0.05);
}

.price-row:hover .price-col-price {
    transform: scale(1.08) translateX(-6px);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.price-tier-card {
    background: var(--bg-card-dark);
    border: 1px solid rgba(108, 63, 255, 0.12);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(108, 63, 255, 0.15);
}

.tier-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: lowercase;
}

.tier-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-2);
    line-height: 1;
}

.tier-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #060606;
    background: var(--accent-warm);
    border-radius: 20px;
}

.tier-low {
    border-color: rgba(108, 63, 255, 0.08);
}

.tier-low .tier-price {
    font-size: 1.7rem;
    color: var(--text-secondary);
}

.tier-mid {
    border-color: rgba(108, 63, 255, 0.18);
}

.tier-high {
    border-color: rgba(108, 63, 255, 0.3);
    box-shadow: 0 0 20px rgba(108, 63, 255, 0.06);
}

.tier-high .tier-price {
    font-size: 2.2rem;
}

.tier-max {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.06), var(--bg-card-dark));
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
}

.tier-max .tier-price {
    font-size: 2.4rem;
    color: var(--accent-warm-soft);
}

.price-grid:has(.tier-full) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.tier-full {
    padding: 32px 20px;
}

.tier-full .tier-price {
    font-size: 2.2rem;
}

.tier-full-highlight {
    border-color: rgba(108, 63, 255, 0.35);
    box-shadow: 0 0 24px rgba(108, 63, 255, 0.1);
}

.tier-full-max {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.06), var(--bg-card-dark));
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
}

.tier-full-max .tier-price {
    font-size: 2.4rem;
    color: var(--accent-warm-soft);
}

.price-card {
    padding: 32px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.price-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-card-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.price-card-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.price-card-cta {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-card-cta .shop-link {
    font-size: 1.2rem;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(108, 63, 255, 0.2);
}

.price-card-header .price-card-title {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.price-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.highlight-card {
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
}

.price-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.price-font-lg {
    font-size: 1.4em;
}

.price-card-note-accent {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-warm);
    margin-top: 8px;
}

.skin-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-right: 24px;
    overflow: visible;
    position: relative;
}

.skin-card-content {
    flex: 1;
}

.skin-card-text {
    flex: 1;
}

.skin-card-image {
    width: 130px;
    height: 130px;
    object-fit: contain;
    flex-shrink: 0;
}

.bear-spec-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    margin-top: 16px;
    border-radius: 8px;
}

.shop-section-with-image {
    position: relative;
}

.shop-section-with-image .shop-section-image {
    position: absolute;
    right: calc(100% + 30px);
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    opacity: 0.4;
}

.shop-section-with-image-right {
    position: relative;
}

.shop-section-image-right {
    position: absolute;
    right: calc(100% + 30px);
    top: 65%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    opacity: 0.4;
}
.accessory-card {
    position: relative;
    overflow: hidden;
}

.accessory-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 6, 6, 0.95) 100%);
    pointer-events: none;
    z-index: 10;
    border-radius: 12px;
}

.accessory-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.35;
    pointer-events: none;
}

.accessory-card > .price-card-title,
.accessory-card > .price-card-note {
    position: relative;
    z-index: 11;
}

.shop-contact-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 12px;
}

.shop-contact-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.shop-contact-link:hover {
    color: var(--accent-warm-soft);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.warning-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.warning-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

@media (max-width: 768px) {
    .shop-hero {
        min-height: 20vh;
        padding: 80px 20px 30px;
    }

    .shop-hero-bg-video {
        opacity: 0.12;
    }

    .shop-title {
        font-size: 2.2rem;
    }

    .shop-section {
        padding: 30px 20px;
    }

    .shop-section-title {
        font-size: 1.6rem;
    }

    .price-table-header,
    .price-row {
        padding: 14px 16px;
    }

    .price-card {
        padding: 24px;
    }

    .price-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-card-header .price-card-price {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .price-grid:has(.tier-full) {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .tier-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .skin-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

    .skin-card-image {
        width: 140px;
        height: 140px;
    }

    .currency-switcher {
        gap: 8px;
    }

    .currency-btn {
        padding: 12px 20px;
        font-size: 1.2rem;
        min-width: 60px;
    }

    .currency-rates {
        gap: 16px;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .shop-contact-region {
        font-size: 0.95rem;
    }

    .shop-contact-region .shop-contact-link {
        font-size: 1.2rem;
    }

    .shop-contact-link {
        font-size: 1.8rem;
    }
}

.tooltip-wrap {
    position: relative;
    display: inline;
}

.tooltip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(108, 63, 255, 0.2);
    border: 1px solid rgba(108, 63, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-2);
    cursor: help;
    transition: all 0.25s ease;
    vertical-align: 2px;
}

.tooltip-wrap:hover .tooltip-trigger {
    background: rgba(108, 63, 255, 0.35);
    border-color: var(--accent-2);
    box-shadow: 0 0 12px rgba(108, 63, 255, 0.4);
}

.tooltip-content {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    padding: 8px 14px;
    background: rgba(16, 16, 16, 0.95);
    border: 1px solid rgba(108, 63, 255, 0.3);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(108, 63, 255, 0.3);
}

.tooltip-wrap:hover .tooltip-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.watermark {
    padding: 14px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wm-line {
    height: 0.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(123, 94, 167, 0.5) 30%, rgba(155, 111, 191, 0.5) 70%, transparent 100%);
    animation: wm-pulse 3s ease-in-out infinite;
}

.wm-by {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: #3a3a3a;
    display: inline-block;
    margin: 10px 0;
    animation: wm-fadein 1.2s ease forwards;
    opacity: 0;
}

.wm-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: #7B5EA7;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0 10px 6px;
    position: relative;
    animation: wm-fadein 1.2s ease 0.4s forwards;
    opacity: 0;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.wm-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 0.5px;
    background: linear-gradient(90deg, #7B5EA7, #ED93B1);
    transition: width 0.4s ease;
}

.wm-name:hover {
    color: #ED93B1;
    letter-spacing: 4px;
}

.wm-name:hover::after {
    width: 100%;
}

@keyframes wm-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes wm-fadein {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}