:root {
    --bg-main: #0b0d12;
    --bg-elev: #11151d;
    --bg-surface: #151a22;
    --bg-surface-glass: rgba(21, 26, 34, 0.62);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --accent-red: #d86a86;
    --accent-purple: #7d74d8;
    --accent-blue: #67b7ff;
    --accent-gradient: linear-gradient(135deg, #d86a86 0%, #7d74d8 100%);

    --text-primary: #f3f5f8;
    --text-secondary: #b3bac8;
    --text-muted: #737b8c;

    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
    --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.22);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.32s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Inter', sans-serif;
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 13, 18, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.95rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.02rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nav-logo-text small {
    margin-top: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav-links {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.68rem 0.95rem;
    border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-btn-donate {
    background: linear-gradient(135deg, rgba(255, 90, 125, 0.14), rgba(143, 124, 255, 0.14));
    border: 1px solid var(--border-color);
    padding: 0.7rem 1.15rem !important;
    border-radius: 12px;
    color: var(--text-primary) !important;
    transition: all var(--transition-medium) !important;
}

.nav-btn-donate:hover {
    background: var(--accent-gradient);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(143, 124, 255, 0.28);
}

.burger {
    width: 38px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.burger span {
    width: 16px;
    height: 2px;
    background: var(--text-secondary);
    transition: transform .2s, opacity .2s, background .2s;
}

.burger:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-menu.open {
    pointer-events: auto;
}

.mobile-menu.open::before {
    opacity: 1;
}

.mm-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 84%);
    height: 100%;
    background: rgba(13, 16, 22, 0.96);
    border-left: 1px solid var(--border-color);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.65, 0, .35, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
}

.mobile-menu.open .mm-panel {
    transform: translateX(0);
}

.mm-body {
    padding: 82px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.mm-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mm-body a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    letter-spacing: .02em;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mm-body a.active {
    color: var(--text-primary);
    font-weight: 600;
}

.mm-ic {
    font-size: 18px;
    color: var(--text-muted);
}

.mm-body a.active .mm-ic {
    color: var(--text-primary);
}

.mm-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mm-footer a {
    border-bottom: none;
}

.mm-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: color .2s;
}

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

.fullpage-body {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

#fp-wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

#fp-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    transition: transform .7s cubic-bezier(.65, 0, .35, 1);
}

.fp-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 72px 1.5rem 2rem;
    overflow: hidden;
}

.fp-section-dark {
    background: linear-gradient(180deg, #0b0d12 0%, #0e1118 100%);
}

.fp-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.fp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: all .35s ease;
    position: relative;
}

.fp-dot.active {
    background: var(--accent-red);
    box-shadow: 0 0 0 8px rgba(255, 90, 125, 0.08);
}

.fp-dot span {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    white-space: nowrap;
    color: var(--text-muted);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.fp-dot:hover span,
.fp-dot.active span {
    opacity: 1;
}

.fp-scroll-hint {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    color: var(--text-muted);
    font-size: 28px;
    animation: floatHint 2s ease-in-out infinite;
}

@keyframes floatHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.fp-anim {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}

.fp-anim.in {
    opacity: 1;
    transform: translateY(0);
}

.fp-anim.in:nth-child(1) { transition-delay: 0s; }
.fp-anim.in:nth-child(2) { transition-delay: .06s; }
.fp-anim.in:nth-child(3) { transition-delay: .12s; }
.fp-anim.in:nth-child(4) { transition-delay: .18s; }
.fp-anim.in:nth-child(5) { transition-delay: .24s; }
.fp-anim.in:nth-child(6) { transition-delay: .30s; }

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/bg.jpg') center/cover no-repeat;
    z-index: 0;
    filter: saturate(0.72) brightness(0.78);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 9, 13, 0.56) 0%, rgba(8, 10, 15, 0.78) 52%, var(--bg-main) 100%),
        radial-gradient(circle at 30% 30%, rgba(103, 183, 255, 0.12), transparent 34%),
        radial-gradient(circle at 72% 36%, rgba(143, 124, 255, 0.12), transparent 38%);
}

.header-waves {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 5;
    color: var(--bg-main);
    opacity: 0.92;
}

.anime-mascot-new {
    position: absolute;
    bottom: -20px;
    right: 4%;
    width: auto;
    height: 78vh;
    max-height: 630px;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 10px 36px rgba(0, 0, 0, 0.48)) saturate(0.88);
    animation: float 7s ease-in-out infinite;
    object-fit: contain;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hero-shell {
    position: relative;
    z-index: 6;
    width: min(1180px, 100%);
}

.hero-shell-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 860px;
}

.hero-content {
    max-width: 760px;
    text-align: center;
    position: relative;
    z-index: 6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
}

.hero-info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 860px;
    margin: 0 auto;
}

.hero-info-card {
    background: rgba(21, 26, 34, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    box-shadow: var(--shadow-card);
    min-width: 0;
}

.hero-info-card#copyIpWidget {
    cursor: pointer;
}

.hero-info-label {
    display: block;
    margin-bottom: 0.32rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'DM Mono', monospace;
}

.hero-info-value {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.hero-info-link {
    transition: transform .2s ease, border-color .2s ease;
}

.hero-info-link:hover,
.hero-info-card#copyIpWidget:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.14);
}

.section-layout-v2 {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.section-intro {
    position: sticky;
    top: 110px;
}

.section-kicker {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'DM Mono', monospace;
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-wide {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.feature-wide h3 {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.feature-wide p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-grid-alt {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.community-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.4rem;
    align-items: center;
}

.community-actions {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.community-side {
    align-self: stretch;
}

.cta-block-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-logo-placeholder {
    width: 108px;
    height: 108px;
    margin: 0 0 1.15rem;
    background: rgba(255,255,255,0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    transform: rotate(-2deg);
    transition: transform 0.35s ease;
    padding: 10px;
}

.hero-logo-placeholder:hover {
    transform: rotate(0deg) scale(1.04);
}

.hero-title {
    font-size: clamp(2.45rem, 4.8vw, 4.25rem);
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 0.9rem;
    color: #f5f6f8;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.68;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.88rem 1.2rem;
    border-radius: 14px;
    font-size: 0.93rem;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-widgets {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.widget {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.2rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.5s ease;
}

.widget:hover::before {
    left: 100%;
}

.widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), 0 0 20px rgba(143, 124, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.12);
}

.widget-icon {
    font-size: 1.9rem;
    color: var(--accent-red);
    background: rgba(255, 255, 255, 0.04);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-info {
    text-align: left;
    min-width: 0;
}

.widget-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.24rem;
    font-family: 'DM Mono', monospace;
}

.widget-value {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    overflow-wrap: anywhere;
}

.section {
    padding: 6rem 1.5rem;
}

.section-container {
    max-width: 1180px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.25rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.02rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.35rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 2rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(to bottom, rgba(255,255,255,0.045), rgba(143, 124, 255, 0.04));
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.35rem;
    position: relative;
}

.feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper img {
    transform: scale(1.08);
}

.feature-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.3rem 1.45rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    cursor: pointer;
    transition: all var(--transition-medium);
    color: inherit;
    box-shadow: var(--shadow-card);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.social-tg:hover {
    border-color: rgba(42, 171, 238, 0.4);
}

.social-forum:hover {
    border-color: rgba(143, 124, 255, 0.38);
}

.social-icon {
    font-size: 2.2rem;
    color: var(--accent-red);
    flex-shrink: 0;
}

.social-tg .social-icon { color: #2AABEE; }
.social-forum .social-icon { color: var(--accent-purple); }

.social-info h3 {
    font-size: 1.04rem;
    font-weight: 700;
    margin-bottom: 0.22rem;
    color: var(--text-primary);
    border: none;
    padding: 0;
}

.social-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.social-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-left: auto;
    transition: transform .2s;
}

.social-card:hover .social-arrow {
    transform: translateX(4px);
    color: var(--text-primary);
}

.cta-block {
    text-align: center;
    padding: 2.4rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    margin-top: 1rem;
    box-shadow: var(--shadow-card);
}

.cta-block h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    border: none;
    padding: 0;
}

.cta-block p {
    color: var(--text-secondary);
    margin-bottom: 1.6rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta,
.btn-step,
.btn-buy {
    padding: 13px 24px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 0.96rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cta:hover,
.btn-step:hover,
.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(143, 124, 255, 0.24);
}

.btn-cta-outline,
.btn-step-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-cta-outline:hover,
.btn-step-outline:hover {
    border-color: var(--border-strong);
    box-shadow: none;
}

.footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 4rem 1.5rem 2rem;
    z-index: 10;
    position: relative;
}

.fullpage-body .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    margin-top: 0;
}

.fullpage-body .footer.open {
    transform: translateY(0);
}

.fullpage-body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 99;
}

.fullpage-body.footer-open::after {
    opacity: 1;
    visibility: visible;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto 2.4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
    max-width: 420px;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links,
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-socials a {
    color: var(--text-secondary);
    transition: color 0.2s;
    font-size: 0.94rem;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--text-primary);
}

.footer-socials a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials i {
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.rules-container {
    max-width: 900px;
    margin: 0 auto;
}

.rules-section {
    margin-bottom: 2rem;
}

.rules-section h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-color);
}

details.rule-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: all var(--transition-medium), height 0.3s ease;
    box-shadow: var(--shadow-card);
}

details.rule-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

details.rule-item[open] {
    border-color: rgba(255, 90, 125, 0.28);
}

summary.rule-summary {
    padding: 1.15rem 1.3rem;
    font-weight: 600;
    font-size: 1.04rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
    transition: color var(--transition-fast);
}

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

summary.rule-summary::-webkit-details-marker {
    display: none;
}

summary.rule-summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform var(--transition-medium);
}

details.rule-item[open] summary.rule-summary::after {
    transform: rotate(45deg);
    color: var(--accent-red);
}

.rule-content {
    padding: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.16);
}

.rule-punishment {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 0.9rem;
    color: var(--accent-red);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 90, 125, 0.06);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.35rem;
    margin-top: 2.6rem;
}

.step-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 2.6rem 1.6rem 1.8rem;
    position: relative;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-card);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

.step-number {
    width: 58px;
    height: 58px;
    margin: -4.5rem auto 1.2rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 5px 15px rgba(143, 124, 255, 0.28);
    border: 4px solid var(--bg-main);
}

.step-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

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

.categories-filter {
    display: flex;
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 11px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.product-card {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 90, 125, 0.08), rgba(143, 124, 255, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-content {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-red);
}

.product-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 2.2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.94) translateY(18px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.form-group input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    padding: 0.95rem 1rem;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: none;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 900px) {
    .fullpage-body {
        overflow: visible;
        height: auto;
    }

    #fp-wrapper {
        position: relative;
        overflow: visible;
        z-index: 1;
    }

    #fp-track {
        position: relative;
        transform: none !important;
        transition: none;
    }

    .fp-section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding-top: 110px;
        padding-bottom: 72px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-logo-placeholder {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: clamp(1.95rem, 7.2vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.93rem;
        margin-bottom: 0.85rem;
        line-height: 1.54;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.7rem;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-info-strip {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        max-width: 320px;
    }

    .hero-widgets {
        display: none;
    }

    .section-layout-v2,
    .community-layout,
    .feature-grid-alt {
        grid-template-columns: 1fr;
    }

    .section-intro {
        position: static;
    }

    .widget {
        width: 100%;
        max-width: 320px;
        padding: 0.92rem 1rem;
    }

    .anime-mascot-new {
        display: none;
    }

    .fp-nav,
    .fp-scroll-hint {
        display: none;
    }

    .social-grid,
    .footer-container,
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .nav-container,
    .section,
    .fp-section,
    .footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .btn-cta,
    .btn-step,
    .btn-buy {
        width: 100%;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }
}
