/* ========================================
   GASAI.TOP — Design System v3
   Cyberpunk Dark UI · Mobile-first · Readable
   ======================================== */

/* ========================================
   1. RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Yu Gothic UI', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(90, 60, 140, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(246, 110, 97, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 15% 60%, rgba(60, 80, 160, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0b0d14 0%, #0f1220 15%, #12152a 35%, #0f1220 65%, #0b0d14 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
}

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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

body > * {
    position: relative;
    z-index: 1;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
input, textarea, select { font-family: inherit; }

/* ========================================
   2. DESIGN TOKENS
   ======================================== */
:root {
    --bg:              #0b0d14;
    --bg-secondary:    #111525;
    --bg-card:         #161b30;
    --bg-card-hover:   #1c2340;
    --bg-elevated:     #1f2840;

    --border:          #232d50;
    --border-light:    #2c3858;
    --border-hover:    #f66e61;

    --text:            #ffffff;
    --text-secondary:  #f0f1f5;
    --text-muted:      #c0c6d4;

    --primary:         #f66e61;
    --primary-light:   #ff8577;
    --primary-dim:     rgba(246, 110, 97, 0.15);
    --primary-glow:    rgba(246, 110, 97, 0.35);
    --gradient:        linear-gradient(135deg, #f66e61 0%, #ff7b6e 50%, #ff9080 100%);

    --green:           #4ade80;
    --green-dim:       rgba(74, 222, 128, 0.12);
    --orange:          #fb923c;
    --yellow:          #fbbf24;
    --red:             #f87171;
    --blue:            #60a5fa;

    --radius-sm:       6px;
    --radius-md:       10px;
    --radius-lg:       14px;
    --radius-full:     999px;

    --shadow-sm:       0 2px 8px rgba(0,0,0,0.3);
    --shadow-md:       0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg:       0 8px 32px rgba(0,0,0,0.5);
    --shadow-primary:  0 4px 20px rgba(246, 110, 97, 0.3);
    --shadow-glow:     0 0 20px rgba(246, 110, 97, 0.25);

    --transition:      all 0.2s ease;
    --transition-slow: all 0.35s ease;

    --max-width:       1400px;
    --nav-height:      64px;
}

/* ========================================
   3. LAYOUT
   ======================================== */
.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 0 2rem;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) { main { padding: 0 1rem; } }
@media (max-width: 480px) { main { padding: 0 0.75rem; } }

/* ========================================
   4. PROMO BANNER
   ======================================== */
.promo-banner {
    background: linear-gradient(90deg, #0b0d14 0%, #161030 20%, #f66e61 50%, #161030 80%, #0b0d14 100%);
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 101;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   5. NAVIGATION
   ======================================== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 13, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

body.product-page nav { position: relative; }

.nav-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    border-bottom-color: var(--primary);
}

.nav-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-discord:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.mobile-menu-btn {
    display: none;
    color: var(--text);
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-btn:hover { background: var(--bg-card); }

.mobile-menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.mobile-menu a {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu a:hover { color: var(--text); background: var(--bg-card); }
.mobile-menu.active { display: flex; }

@media (max-width: 768px) {
    .nav-inner { padding: 0 1rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}

/* ========================================
   6. BREADCRUMB
   ======================================== */
.breadcrumb {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-secondary); }

@media (max-width: 768px) { .breadcrumb { padding: 0.625rem 1rem; } }

/* ========================================
   7. HERO SECTION
   ======================================== */
.hero-section {
    text-align: center;
    padding: clamp(3rem, 8vw, 6rem) 1rem clamp(0.5rem, 2vw, 1rem);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 90vw);
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(246, 110, 97, 0.12) 0%, rgba(120, 70, 160, 0.06) 40%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    z-index: -1;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, #e0e4f0 40%, #f66e61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-tagline-accent {
    display: inline-block;
    margin-bottom: 0;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid rgba(246, 110, 97, 0.3);
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 2rem);
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    transition: var(--transition);
    min-width: 148px;
}

.stat-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.stat-icon { font-size: 1.4rem; flex-shrink: 0; }

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .stats-row { gap: 0.625rem; }
    .stat-item { min-width: calc(50% - 0.3rem); }
}

/* ========================================
   8. WELCOME TEXT
   ======================================== */
.welcome-text-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 0.5rem 1rem 2rem;
    text-align: center;
    position: relative;
}

.welcome-text-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 110, 97, 0.2), transparent);
}

.welcome-paragraph {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.welcome-quote {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--primary);
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: left;
}

/* ========================================
   8a. PAYMENT METHODS
   ======================================== */
.payment-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    text-align: center;
}

.payment-header {
    max-width: 680px;
    margin: 0 auto 1.25rem;
}

.payment-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.payment-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.payment-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.payment-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.payment-method-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.payment-method-card img {
    width: 100%;
    max-width: 132px;
    height: 56px;
    object-fit: contain;
}

.payment-method-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .payment-methods { grid-template-columns: repeat(2, 1fr); }
}

/* ブログの公開日は表示しない */
.article-meta span:first-child,
.blog-card-meta span:first-child {
    display: none;
}

@media (max-width: 480px) {
    .payment-section { margin-bottom: 2.5rem; }
    .payment-methods { gap: 0.75rem; }
    .payment-method-card { min-height: 112px; padding: 0.875rem; }
    .payment-method-card img { max-width: 116px; height: 48px; }
}

/* ========================================
   8b. STRENGTHS SECTION
   ======================================== */
.strengths-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.strengths-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.strength-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    transition: var(--transition);
}

.strength-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.strength-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.strength-body h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.strength-body p {
    font-size: 0.77rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .strengths-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .strengths-grid { grid-template-columns: 1fr; }
}

/* ========================================
   9. FEATURE GRID 2x2
   ======================================== */
.feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 740px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.feature-card-compact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.375rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}

.feature-card-compact:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.feature-icon-compact { font-size: 1.5rem; flex-shrink: 0; }

.feature-text h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width: 480px) {
    .feature-grid-compact { grid-template-columns: 1fr; }
}

/* ========================================
   10. SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 110, 97, 0.3), transparent);
}

.section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .section-header { padding: 3rem 1rem 1.5rem; }
}

/* ========================================
   11. SEARCH / FILTER
   ======================================== */
.search-wrap {
    max-width: 680px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
    -webkit-user-select: text;
    user-select: text;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px var(--primary-dim);
}

.search-input::placeholder { color: var(--text-muted); }

.filter-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-btn:hover { border-color: var(--border-hover); color: var(--text); }

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

/* ========================================
   12. TACTICAL GRID (Game Cards)
   ======================================== */
.tactical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    padding-bottom: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.game-module {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-module:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.module-header-wrap {
    position: relative;
    height: 200px;
    background: var(--bg);
    overflow: hidden;
}

.module-game-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.module-fade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,13,20,0.15) 0%,
        rgba(11,13,20,0.05) 35%,
        rgba(11,13,20,0.75) 100%
    );
}

.game-module:hover .module-game-bg { transform: scale(1.05); }
.game-module:hover .module-bg { transform: scale(1.05); }

.module-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,13,20,0.2) 0%,
        rgba(11,13,20,0.1) 40%,
        rgba(18,21,42,0.92) 100%
    );
}

.game-title-wrap {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 1rem 1.25rem 0.875rem;
}

.game-title-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem 0.875rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    line-height: 1.25;
    z-index: 2;
}

/* HUD corners */
.hud-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--primary);
    border-style: solid;
    opacity: 0;
    transition: var(--transition-slow);
}

.game-module:hover .hud-corner { opacity: 1; }

.c-tl { top: 10px; left: 10px;   border-width: 2px 0 0 2px; }
.c-tr { top: 10px; right: 10px;  border-width: 2px 2px 0 0; }
.c-bl { bottom: calc(100% - 210px); left: 10px;  border-width: 0 0 2px 2px; }
.c-br { bottom: calc(100% - 210px); right: 10px; border-width: 0 2px 2px 0; }

.module-list {
    padding: 0.75rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.module-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 0.6rem 0.875rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.module-item:hover {
    border-color: var(--primary);
    background: var(--primary-dim);
    transform: translateX(2px);
}

.module-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
}

.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}

.t-on   { color: var(--green);  background: var(--green); }
.t-up   { color: var(--orange); background: var(--orange); }
.t-test { color: var(--yellow); background: var(--yellow); }
.t-off  { color: var(--red);    background: var(--red); }

.hack-label {
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hack-cost {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(0,0,0,0.3);
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.module-status-badge {
    padding: 0.275rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.status-available {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.status-coming {
    background: rgba(248, 113, 113, 0.12);
    color: var(--red);
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.module-empty {
    padding: 1.25rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-style: italic;
    background: rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
}

#no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-size: 1rem;
    display: none;
}

@media (max-width: 1200px) { .tactical-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .tactical-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 600px)  {
    .tactical-grid { grid-template-columns: 1fr; gap: 1rem; }
    .module-header-wrap { height: 175px; }
}

/* ========================================
   13. SEO CONTENT SECTION
   ======================================== */
.seo-content-section {
    padding: 0 0 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.seo-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.seo-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    padding-left: 0.75rem;
    border-left: 3px solid var(--primary);
}

.seo-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.seo-tags h3 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.seo-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 0.2rem 0.625rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.seo-tag:hover { color: var(--text-secondary); border-color: var(--border-light); }

/* ========================================
   14. PRODUCT PAGE — HERO CARD
   ======================================== */
.product-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.75rem 0 4rem;
}

.product-columns {
    display: grid;
    grid-template-columns: 1fr 355px;
    gap: 1.75rem;
    align-items: start;
}

.premium-hero-card {
    background: var(--bg-card);
    background-image: radial-gradient(ellipse at 0% 100%, rgba(246, 110, 97, 0.12) 0%, transparent 55%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    margin-bottom: 1.75rem;
    overflow: hidden;
}

.premium-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.hero-status-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.45);
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

.status-on   { color: var(--green);  border-color: rgba(74, 222, 128, 0.3); }
.status-up   { color: var(--orange); border-color: rgba(251, 146, 60, 0.3); }
.status-test { color: var(--yellow); border-color: rgba(251, 191, 36, 0.3); }
.status-off  { color: var(--red);    border-color: rgba(248, 113, 113, 0.3); }

.hero-main-flex {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.hero-image-wrap {
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap img,
.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg));
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-details-wrap { flex: 1; min-width: 0; }

.hero-title-main {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-sub-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.875rem;
}

.hero-game-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-meta-text {
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(78, 89, 112, 0.25);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.hero-desc-content {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 780px;
}

/* ========================================
   15. FEATURE TABS
   ======================================== */
.feat-container {
    background: var(--bg-card);
    background-image: radial-gradient(ellipse at 0% 0%, rgba(246, 110, 97, 0.1) 0%, transparent 55%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-md);
}

.feat-nav {
    display: flex;
    background: rgba(0,0,0,0.25);
    padding: 5px;
    border-radius: var(--radius-full);
    gap: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.feat-note {
    margin: 0 0 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.feat-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    flex: 1;
    justify-content: center;
    min-width: fit-content;
    white-space: nowrap;
}

.feat-btn svg { color: var(--primary); transition: var(--transition); }

.feat-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.feat-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 3px 12px rgba(246, 110, 97, 0.35);
}

.feat-btn.active svg { color: #fff !important; stroke: #fff !important; }

.feat-panel { display: none; }

.feat-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.6rem;
    align-items: start;
}

.feat-pill {
    background: rgba(255,255,255,0.025);
    color: var(--text);
    padding: 0.65rem 0.875rem;
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    transition: var(--transition);
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 2.6rem;
    box-sizing: border-box;
}

.feat-pill:hover {
    background: var(--primary-dim);
    border-color: rgba(246, 110, 97, 0.4);
}

.feat-pill svg {
    flex-shrink: 0;
    margin-top: 0.1em;
}

/* ========================================
   16. SYSTEM SPECS CARD
   ======================================== */
.sys-card {
    background: var(--bg-card);
    background-image: radial-gradient(ellipse at 0% 0%, rgba(246, 110, 97, 0.1) 0%, transparent 55%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.375rem;
    margin-bottom: 1.375rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.sys-card::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.sys-card-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.sys-list { display: flex; flex-direction: column; gap: 0.875rem; }

.sys-item { display: flex; align-items: center; gap: 0.875rem; }

.sys-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(78, 89, 112, 0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.sys-item:hover .sys-icon-box {
    background: var(--primary-dim);
    border-color: var(--primary);
}

.sys-details { display: flex; flex-direction: column; }

.sys-label {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 3px;
}

.sys-val {
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
}

/* ========================================
   17. ORDER CARD
   ======================================== */
.order-card {
    background: var(--bg-card);
    background-image: radial-gradient(ellipse at 0% 0%, rgba(246, 110, 97, 0.1) 0%, transparent 55%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
}

.order-pre-title {
    font-size: 0.62rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}

.order-title {
    font-size: 1.55rem !important;
    font-weight: 800 !important;
    margin: 0 0 1.25rem !important;
    letter-spacing: -0.03em;
    color: #fff;
}

.order-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
}

.order-status-label {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-status-badge {
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.pricing-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-item:hover {
    background: rgba(78,89,112,0.25);
    border-color: var(--text);
}

.pricing-item.selected {
    border-color: var(--primary);
    background: var(--primary-dim);
}

.pricing-check {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.pricing-item.selected .pricing-check { border-color: var(--primary); }

.pricing-item.selected .pricing-check::after {
    content: '';
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.pricing-info {
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-val {
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}

.order-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.925rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition);
    width: 100%;
    box-shadow: var(--shadow-primary);
    cursor: pointer;
    min-height: 52px;
}

.order-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(246, 110, 97, 0.5);
    color: #fff;
}

.order-buy-btn.disabled {
    opacity: 0.45;
    pointer-events: none;
    background: var(--bg-elevated);
    box-shadow: none;
}

.order-footer {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    line-height: 1.65;
}

.order-footer a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .product-columns { grid-template-columns: 1fr; }
    .order-card { position: relative; top: 0; }
}

@media (max-width: 768px) {
    .product-page-wrapper { padding: 1.25rem 0 3rem; }

    .premium-hero-card { padding: 1.25rem; text-align: center; }

    .hero-status-tag {
        position: relative; top: 0; right: 0;
        margin: 0 auto 1rem; width: fit-content;
    }

    .hero-main-flex { flex-direction: column; align-items: center; }
    .hero-sub-row { justify-content: center; }

    .feat-nav {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 8px;
    }

    .feat-btn {
        width: 100%;
        justify-content: flex-start;
        border-radius: var(--radius-sm);
        padding: 0.75rem 1.1rem;
    }

    .feat-grid { grid-template-columns: 1fr; }
}

/* ========================================
   18. FOOTER
   ======================================== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column a {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    transition: var(--transition);
}

.footer-column a:hover { color: var(--primary); }

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-seo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2.5rem auto 1rem;
    max-width: 1200px;
}

.footer-seo h4 {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-seo h4::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-seo p {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.9;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .footer-links { flex-direction: column; gap: 1.75rem; }
    .footer-seo { margin: 1.5rem 1rem 0; }
}

/* ========================================
   19. FAQ
   ======================================== */
.faq-section {
    padding-bottom: 4rem;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 0.6rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-light); }

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary-dim);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.375rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 1.375rem 1.1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-item.active .faq-answer { max-height: 600px; }

/* ========================================
   20. TERMS PAGE
   ======================================== */
.terms-page { background: var(--bg); }

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.terms-header { text-align: center; margin-bottom: 2.5rem; }

.terms-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.terms-subtitle {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.terms-warning {
    background: linear-gradient(135deg, rgba(246,110,97,0.1), rgba(246,110,97,0.04));
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.375rem 1.75rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.terms-warning-icon { font-size: 2rem; margin-bottom: 0.375rem; }
.terms-warning-text { color: var(--primary); font-weight: 700; font-size: 1.05rem; }
.terms-warning-sub { color: var(--text-secondary); font-size: 0.85rem; margin-top: 0.375rem; line-height: 1.65; }

.terms-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 0.875rem;
    transition: var(--transition);
}

.terms-section:hover { border-color: var(--border-light); }

.terms-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.terms-section-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    flex-shrink: 0;
}

.terms-list { list-style: none; padding: 0; }

.terms-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.875rem;
}

.terms-list li:last-child { border-bottom: none; }

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.terms-highlight {
    background: rgba(246,110,97,0.07);
    border-left: 3px solid var(--primary);
    padding: 0.875rem 1.1rem;
    margin: 0.875rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.terms-highlight-text {
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.75;
}

.terms-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.terms-footer-text { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; }

.terms-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.terms-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(246,110,97,0.45);
    color: white;
}

.no-refund-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .terms-container { padding: 1.75rem 1rem; }
    .terms-section { padding: 1.25rem 1rem; }
}

/* ========================================
   21. DISCORD PAGE
   ======================================== */
.dc-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.dc-header { text-align: center; margin-bottom: 3rem; }

.dc-header-icon {
    width: 72px;
    height: 72px;
    background: #5865F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(88,101,242,0.4);
}

.dc-main-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.dc-lead-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.dc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.dc-card-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.dc-check-list { display: flex; flex-direction: column; gap: 0.6rem; }

.dc-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text);
    padding: 0.45rem 0;
}

.dc-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-dim);
    border: 1px solid rgba(74,222,128,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

.dc-dm-box {
    background: #1e2124;
    border: 1px solid #2c2f33;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.dc-dm-header {
    background: #2f3136;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #dcddde;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dc-dm-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #5865F2;
    box-shadow: 0 0 6px #5865F2;
}

.dc-dm-body { padding: 1rem; }

.dc-dm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #2c2f33;
    font-size: 0.8rem;
}

.dc-dm-row:last-child { border-bottom: none; }
.dc-dm-label { color: #dcddde; }
.dc-dm-select { color: #00b0f4; font-weight: 600; }

.dc-toggle {
    width: 44px; height: 24px;
    background: #5865F2;
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.dc-toggle::after {
    content: '';
    position: absolute;
    right: 3px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: white;
    border-radius: 50%;
}

.dc-auth-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.dc-auth-steps { display: flex; flex-direction: column; gap: 0.75rem; }

.dc-auth-step {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.dc-step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--primary-dim);
    border: 1px solid rgba(246,110,97,0.3);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc-step-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-top: 0.2rem;
    line-height: 1.55;
}

.dc-bot-card {
    background: #36393f;
    border: 1px solid #4f545c;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.dc-bot-header {
    background: #2f3136;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dc-bot-avatar {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #5865F2, #eb459e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: white;
    font-weight: 700;
}

.dc-bot-name { font-size: 0.875rem; font-weight: 700; color: #fff; }

.dc-bot-tag {
    font-size: 0.62rem;
    background: #5865F2;
    color: #fff;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 700;
    margin-left: 0.25rem;
}

.dc-bot-body { padding: 1rem; }

.dc-bot-msg {
    font-size: 0.8rem;
    color: #dcddde;
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

.dc-bot-verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #5865F2;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.dc-bot-verify-btn:hover { background: #4752c4; transform: translateY(-1px); }

.dc-auth-warn {
    background: rgba(254,231,21,0.08);
    border: 1px solid rgba(254,231,21,0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: var(--text);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dc-alert-banner {
    background: rgba(246,110,97,0.07);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.dc-alert-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dc-alert-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.dc-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #5865F2;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(88,101,242,0.35);
    min-height: 54px;
}

.dc-join-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88,101,242,0.55);
    color: #fff;
}

.dc-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.dc-back:hover { color: var(--primary); }

.dc-section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.dc-dm-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    line-height: 1.5;
}

.dc-footer-nav {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.dc-footer-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.dc-footer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.dc-footer-text a:hover { text-decoration: underline; }

.dc-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--bg-card);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.dc-back-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   22. DETAIL PAGE
   ======================================== */
.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.detail-back:hover { color: var(--primary); }

.detail-badge-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.detail-badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--gradient);
    color: white;
}

.detail-badge.status {
    background: rgba(34,197,94,0.18);
    color: var(--green);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

@media (max-width: 1024px) {
    .detail-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0 1rem 3rem;
    }
}

.detail-main { display: flex; flex-direction: column; gap: 1.75rem; }

.detail-description,
.detail-specs,
.detail-features {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.detail-description p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.875rem;
    font-size: 0.9rem;
}

.detail-description p:last-child { margin-bottom: 0; }
.detail-description .highlight { color: var(--primary); font-weight: 600; }

.detail-specs h3,
.detail-features h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.spec-grid { display: grid; gap: 0; }

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.spec-item:last-child { border-bottom: none; }
.spec-label { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); }
.spec-value { font-size: 0.875rem; color: var(--text); }

.feature-section { margin-bottom: 1.75rem; }
.feature-section:last-child { margin-bottom: 0; }

.feature-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.375rem;
}

.feature-list li {
    font-size: 0.825rem;
    color: var(--text-secondary);
    padding: 0.375rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.detail-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.price-card,
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.price-card { position: sticky; top: calc(var(--nav-height) + 1rem); }

.price-card h3,
.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text);
}

/* ========================================
   23. GALLERY
   ======================================== */
.gal-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
}

.gal-main-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 430px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.875rem;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-main-wrap img { width: 100%; height: 100%; object-fit: cover; }

.gal-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--text-muted); gap: 10px;
}

.gal-placeholder svg { opacity: 0.5; }
.gal-placeholder span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

.gal-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }

.gal-thumb {
    aspect-ratio: 16/10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--bg);
    transition: var(--transition);
}

.gal-thumb:hover,
.gal-thumb.active { border-color: var(--primary); box-shadow: var(--shadow-glow); }

.gal-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: 0.3s;
}

.gal-thumb:hover img,
.gal-thumb.active img { opacity: 1; }

@media (max-width: 768px) {
    .gal-grid { grid-template-columns: repeat(3,1fr); }
}

/* ========================================
   24. UTILITIES
   ======================================== */
.mt-8  { margin-top: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.product-main { display: flex; flex-direction: column; }

/* ========================================
   25. RESPONSIVE POLISH
   ======================================== */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .detail-badge-group { padding: 0 1rem; }
    .footer-seo p { font-size: 0.8rem; }
    input, textarea, select { font-size: 16px; min-height: 48px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tactical-grid { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
    .feat-grid { grid-template-columns: repeat(2,1fr); }
}

/* ========================================
   26. PRICING PAGE
   ======================================== */

/* Banner */
.pricing-banner {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(246,110,97,0.08) 0%, rgba(246,110,97,0.02) 50%, rgba(246,110,97,0.08) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-banner::before,
.pricing-banner::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}
.pricing-banner::before { top: 0; }
.pricing-banner::after { bottom: 0; opacity: 0.5; }

.pricing-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.pricing-pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px 3px var(--primary-glow);
    animation: pricing-pulse 2s infinite;
}

@keyframes pricing-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px 3px var(--primary-glow); }
    50% { opacity: 0.5; box-shadow: 0 0 16px 6px rgba(246,110,97,0.15); }
}

.pricing-banner-main {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.pricing-banner-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.pricing-banner-sub strong {
    color: var(--primary);
    font-weight: 700;
}

/* Section container */
.pricing-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1rem 0;
}

/* Info Card */
.pricing-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.pricing-info-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.pricing-info-title svg { color: var(--primary); flex-shrink: 0; }

/* Flow Boxes */
.pricing-flow-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.pricing-flow-box:last-child { margin-bottom: 0; }

.pricing-flow-box--warn {
    background: rgba(251,191,36,0.06);
    border-color: rgba(251,191,36,0.25);
}

.pricing-flow-box h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.pricing-flow-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: #ffffff;
    line-height: 1.7;
    padding-left: 0;
    list-style: none;
    counter-reset: flow-step;
}

.pricing-flow-list li {
    padding-left: 1.75rem;
    position: relative;
}

ol.pricing-flow-list li { counter-increment: flow-step; }

ol.pricing-flow-list li::before {
    content: counter(flow-step) ".";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.84rem;
}

.pricing-flow-list--bullet li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-flow-list a {
    color: var(--blue);
    text-decoration: underline;
}
.pricing-flow-list a:hover { opacity: 0.8; }

.pricing-flow-list strong { color: var(--text); }

.pricing-warn-text { color: rgba(251,191,36,0.9) !important; }
.pricing-muted-text { color: var(--text-muted) !important; font-size: 0.78rem !important; }

.pricing-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.pricing-guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-guide-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #0b1020;
}

.pricing-guide-body {
    padding: 1rem;
}

.pricing-guide-step {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.pricing-guide-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.pricing-guide-text {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #ffffff;
}

.pricing-danger-text {
    color: var(--red) !important;
    font-weight: 700;
}

/* Benefits Grid */
.pricing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pricing-benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
}

.pricing-benefit-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.pricing-benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.pricing-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    list-style: none;
    padding: 0;
}

.pricing-benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.84rem;
    color: #ffffff;
}

.pricing-benefit-list svg { flex-shrink: 0; }

/* Notice Card */
.pricing-notice-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.pricing-notice-card p {
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
}

.pricing-notice-main {
    font-size: 1rem !important;
    color: var(--text) !important;
    margin-bottom: 0.375rem !important;
}

.pricing-notice-sub {
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}

/* Plans Grid */
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.pricing-plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-plan-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.pricing-plan-card--premium {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(246,110,97,0.06) 0%, var(--bg-card) 100%);
    box-shadow: 0 0 20px rgba(246,110,97,0.1);
}

.pricing-plan-card--premium:hover {
    box-shadow: 0 0 30px rgba(246,110,97,0.25);
}

.pricing-plan-header {
    padding: 1.25rem 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.pricing-plan-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-plan-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.pricing-plan-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    background: var(--primary-dim);
    color: var(--primary);
    margin-top: 0.5rem;
}

.pricing-plan-tag--popular {
    background: var(--green-dim);
    color: var(--green);
}

.pricing-plan-tag--limited {
    background: rgba(248,113,113,0.15);
    color: var(--red);
    animation: pricing-pulse 2s infinite;
}

.pricing-plan-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
}

.pricing-plan-body .pricing-buy-btn {
    margin-top: auto;
}

.pricing-plan-desc {
    font-size: 0.8rem;
    color: #f0f1f5;
    text-align: center;
    line-height: 1.5;
    width: 100%;
}

.pricing-plan-warn {
    font-size: 0.72rem;
    color: var(--red);
    text-align: center;
    line-height: 1.5;
}

/* Plan Price */
.pricing-plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.02em;
}

.pricing-plan-price--premium {
    color: var(--primary);
    font-size: 1.75rem;
}

/* Decimal Note */
.pricing-decimal-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Buy Button */
.pricing-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.pricing-buy-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.pricing-buy-btn--premium {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.pricing-buy-btn--premium:hover {
    box-shadow: 0 4px 24px rgba(246,110,97,0.45);
    filter: brightness(1.1);
}

/* Alert Card */
.pricing-alert-card {
    background: rgba(246,110,97,0.07);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.pricing-alert-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-alert-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-alert-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.pricing-alert-text a:hover { text-decoration: underline; }

.pricing-terms-link {
    display: inline-block;
    margin-top: 0.4rem;
}

/* Footer Nav */
.pricing-footer-nav {
    text-align: center;
    max-width: 960px;
    margin: 2rem auto 0;
    padding: 1.5rem 1rem 3rem;
    border-top: 1px solid var(--border);
}

.pricing-footer-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-footer-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.pricing-footer-text a:hover { text-decoration: underline; }

.pricing-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--bg-card);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pricing-back-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-plans-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-benefits-grid { grid-template-columns: 1fr; }
    .pricing-guide-grid { grid-template-columns: 1fr; }
    .pricing-banner-main { font-size: 0.875rem; }
    .pricing-info-card { padding: 1.25rem; }
}

@media (max-width: 480px) {
    .pricing-plans-grid { grid-template-columns: 1fr; }
    .pricing-banner-inner { flex-direction: column; gap: 0.375rem; }
}

/* ========================================
   INGAME GALLERY SLIDESHOW
   ======================================== */
.ingame-gallery {
    margin-bottom: 1.5rem;
}

.ingame-gallery-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.ingame-slideshow {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    width: 585px;
    max-width: 100%;
    height: 329px;
    margin: 0 auto;
}

.ingame-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.ingame-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ingame-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ingame-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ingame-prev,
.ingame-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.ingame-prev { left: 10px; }
.ingame-next { right: 10px; }

.ingame-prev:hover,
.ingame-next:hover {
    background: rgba(246,110,97,0.75);
    border-color: var(--primary);
}

.ingame-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.ingame-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ingame-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}
/* Live Date Badge */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1.25rem;
    background: rgba(22, 27, 48, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-live-badge .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-live-badge .live-count {
    font-weight: 700;
    color: var(--primary);
}

.hero-notice-banner {
    width: min(560px, calc(100vw - 2rem));
    margin: 0.9rem auto 0;
    padding: 0.75rem 1.25rem;
    background: rgba(14, 20, 40, 0.9);
    border: 1px solid rgba(246, 110, 97, 0.28);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    animation: hero-notice-glow 2.8s ease-in-out infinite;
}

.hero-notice-line {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f3f4f6;
    line-height: 1.55;
}

.hero-notice-line + .hero-notice-line {
    margin-top: 0.15rem;
}

.hero-notice-line--sale {
    color: #ffd166;
}

@keyframes hero-notice-glow {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
        border-color: rgba(246, 110, 97, 0.28);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(246, 110, 97, 0.16);
        border-color: rgba(246, 110, 97, 0.45);
    }
}

@media (max-width: 768px) {
    .hero-notice-banner {
        width: calc(100vw - 2rem);
        margin-top: 0.75rem;
        padding: 0.7rem 1rem;
    }

    .hero-notice-line {
        font-size: 0.75rem;
    }
}
