/* ====== RESET & BASE ====== */
html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: 'Courier New', Courier, monospace;
    background: #0e0e0e;
    color: #ccc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow: hidden; /* locked until enter */
}

* {
    box-sizing: border-box;
}

::selection {
    background: rgba(0, 255, 136, 0.2);
    color: #fff;
}

::-moz-selection {
    background: rgba(0, 255, 136, 0.2);
    color: #fff;
}

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

.accent {
    color: #00ff88;
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 90;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.navbar.visible {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.5s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.nav-brand a {
    display: block;
}

.nav-logo {
    height: 34px;
    width: auto;
    border-radius: 3px;
    display: block;
}

.nav-brand .accent {
    color: #00ff88;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #777;
    font-size: 0.85em;
    letter-spacing: 2px;
    text-transform: lowercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00ff88;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-discord {
    font-size: 1.2em !important;
}

.nav-toggle {
    display: none;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
}

/* ====== OVERLAY / LANDING ====== */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    transition: opacity 0.5s ease;
}

.overlay-content {
    text-align: center;
    position: relative;
}

#overlay #status_text {
    display: block;
    font-size: 2.2em;
    color: #444;
    letter-spacing: 8px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: lowercase;
}

#overlay:hover #status_text {
    color: #00ff88;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.overlay-sub {
    margin-top: 20px;
    color: #222;
    font-size: 0.8em;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.begin {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { color: #555; text-shadow: none; }
    50% { color: #00ff88; text-shadow: 0 0 25px rgba(0, 255, 136, 0.5); }
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* ====== HERO SECTION ====== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Hero Discord Link */
.hero-version {
    display: inline-block;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 4px 16px;
    font-size: 0.75em;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00ff88;
    margin-top: 15px;
}

.hero-discord-only {
    margin-top: 30px;
}

.hero-discord-only a {
    color: #333;
    font-size: 0.8em;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.hero-discord-only a:hover {
    color: #5865F2;
}

.hero-discord-only i {
    margin-right: 6px;
}

.hero-logo {
    width: 200px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.hero-title {
    font-size: 4.5em;
    color: #fff;
    letter-spacing: 10px;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}

.hero-subtitle {
    color: #555;
    font-size: 1em;
    letter-spacing: 5px;
    margin-top: 12px;
    text-transform: uppercase;
}

.hero-tagline {
    margin-top: 20px;
    min-height: 30px;
    color: #00ff88;
    font-size: 0.95em;
    letter-spacing: 2px;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn i {
    margin-right: 6px;
    font-size: 0.85em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.7em;
    color: #444;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
}

.socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.socials a {
    color: #444;
    font-size: 1.6em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
    color: #00ff88;
    transform: translateY(-3px);
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85em;
    letter-spacing: 3px;
    text-transform: lowercase;
    border: 1px solid #00ff88;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #00ff88;
    color: #0e0e0e;
    font-weight: bold;
}

.btn-primary:hover {
    background: #00cc6a;
    border-color: #00cc6a;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00ff88;
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 0.95em;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75em;
}

/* ====== SECTIONS ====== */
.section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-alt {
    background: #121212;
    max-width: 100%;
    border-top: 1px solid rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    color: #00ff88;
    font-size: 0.75em;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2em;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

/* ====== ABOUT ====== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    color: #999;
    line-height: 1.8;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.about-text strong {
    color: #ccc;
}

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #181818;
    border: 1px solid rgba(0, 255, 136, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.05);
}

.info-card i {
    font-size: 1.8em;
    color: #00ff88;
    margin-bottom: 12px;
    display: block;
}

.info-card h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: 0.8em;
    line-height: 1.5;
}

/* ====== INFORMATION ====== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-item {
    background: #181818;
    border: 1px solid rgba(0, 255, 136, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: rgba(0, 255, 136, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.04);
}

.info-item i {
    font-size: 2em;
    color: #00ff88;
    margin-bottom: 15px;
    display: block;
}

.info-item h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 0.8em;
    line-height: 1.5;
}

.info-item a {
    color: #00ff88;
    font-size: 0.85em;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #00cc6a;
}

.discord-highlight {
    border-color: rgba(88, 101, 242, 0.3);
}

.discord-highlight:hover {
    border-color: rgba(88, 101, 242, 0.6);
}

.discord-highlight i {
    color: #5865F2;
}

/* ====== FEATURES ====== */
.feature-category {
    background: #181818;
    border: 1px solid rgba(0, 255, 136, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.feature-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-category:hover {
    border-color: rgba(0, 255, 136, 0.2);
}

.feature-category.open {
    border-color: rgba(0, 255, 136, 0.25);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.feature-header:hover {
    background: rgba(0, 255, 136, 0.03);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 2px;
}

.feature-icon i {
    color: #00ff88;
    font-size: 1.1em;
}

.feature-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1em;
    letter-spacing: 2px;
    font-weight: normal;
}

.feature-sub {
    color: #444;
    font-size: 0.75em;
    letter-spacing: 1px;
    margin-left: 12px;
    flex: 1;
    text-align: right;
    padding-right: 15px;
}

.toggle-icon {
    color: #555;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.feature-category.open .toggle-icon {
    transform: rotate(180deg);
    color: #00ff88;
}

.feature-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.feature-category.open .feature-list {
    max-height: 600px;
    padding: 0 25px 20px 25px;
}

.feature-item {
    padding: 10px 0;
    color: #888;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.feature-item:hover {
    color: #ccc;
}

.feature-item i {
    color: #00ff88;
    font-size: 0.75em;
}

.feature-warning {
    margin: 15px 25px 20px 25px;
    padding: 15px 20px;
    background: rgba(255, 193, 7, 0.08);
    border-left: 3px solid #ffc107;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.feature-category.open .feature-warning {
    max-height: 200px;
    opacity: 1;
}

.feature-warning i {
    color: #ffc107;
    margin-top: 2px;
    font-size: 0.9em;
}

.feature-warning p {
    margin: 0;
    color: #aaa;
    font-size: 0.8em;
    line-height: 1.6;
}

.feature-warning strong {
    color: #ffc107;
}

/* ====== CTA SECTION ====== */
.cta-section {
    text-align: center;
}

.cta-section .cta-actions .btn i {
    margin-right: 6px;
    font-size: 0.85em;
}

.cta-title {
    font-size: 2.5em;
    color: #fff;
    margin: 0 0 15px 0;
}

.cta-text {
    color: #666;
    font-size: 1em;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== FOOTER ====== */
.footer {
    background: #0a0a0a;
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(0, 255, 136, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 4px;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #444;
    font-size: 0.8em;
    margin: 5px 0 0 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #555;
    font-size: 0.85em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    color: #444;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #00ff88;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #333;
    font-size: 0.75em;
    margin: 0;
}

/* ====== CHANGELOG ====== */
.changelog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.changelog-card {
    background: #181818;
    border: 1px solid rgba(0, 255, 136, 0.08);
    padding: 30px 25px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.changelog-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.changelog-card:hover {
    border-color: rgba(0, 255, 136, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.05);
}

.changelog-card i {
    font-size: 1.8em;
    color: #00ff88;
    margin-bottom: 15px;
    display: block;
}

.changelog-card h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.changelog-card p {
    color: #555;
    margin: 0;
    font-size: 0.8em;
    line-height: 1.6;
}

/* ====== SCROLL ANIMATIONS ====== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== TYPEWRITER ====== */
.Typewriter__cursor {
    color: #00ff88 !important;
    font-weight: bold;
}

/* ====== PAGE HEADER (for sub-pages) ====== */
.page-header {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0e0e0e 0%, #151515 50%, #0e0e0e 100%);
    position: relative;
    padding-top: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 80%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3em;
    color: #fff;
    margin: 0;
    letter-spacing: 6px;
}

.page-header p {
    color: #555;
    margin-top: 10px;
    letter-spacing: 3px;
    font-size: 0.95em;
}

/* ====== CONTENT SECTIONS (sub-pages) ====== */
.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section-alt {
    background: #121212;
    max-width: 100%;
    border-top: 1px solid rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.content-section-alt .container {
    max-width: 900px;
    margin: 0 auto;
}

/* ====== CARDS (CFG/PRICING) ====== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #181818;
    border: 1px solid rgba(0, 255, 136, 0.08);
    padding: 35px 25px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.05);
}

.card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    position: relative;
}

.card.featured::before {
    content: 'popular';
    position: absolute;
    top: -1px;
    right: 20px;
    background: #00ff88;
    color: #0e0e0e;
    font-size: 0.65em;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 4px 12px;
    text-transform: uppercase;
}

.card-icon {
    font-size: 2.5em;
    color: #00ff88;
    margin-bottom: 15px;
}

.card h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.card .price {
    font-size: 2em;
    color: #00ff88;
    font-weight: bold;
    margin: 15px 0;
}

.card .price span {
    font-size: 0.5em;
    color: #555;
    font-weight: normal;
}

.card p {
    color: #666;
    font-size: 0.85em;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.card-features li {
    padding: 8px 0;
    color: #888;
    font-size: 0.85em;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: #00ff88;
    font-size: 0.75em;
}

/* ====== TOS ====== */
.tos-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tos-tab {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.15);
    color: #666;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85em;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tos-tab:hover {
    border-color: rgba(0, 255, 136, 0.4);
    color: #00ff88;
}

.tos-tab.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
}

.tos-content {
    display: none;
}

.tos-content.active {
    display: block;
}

.tos-section {
    margin-bottom: 35px;
}

.tos-section h3 {
    color: #fff;
    font-size: 1.1em;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.tos-section p,
.tos-section li {
    color: #888;
    font-size: 0.9em;
    line-height: 1.8;
}

.tos-section ul {
    padding-left: 20px;
}

.tos-section li {
    margin-bottom: 8px;
}

.tos-highlight {
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid #00ff88;
    padding: 15px 20px;
    margin: 20px 0;
}

.tos-highlight p {
    margin: 0;
    color: #aaa;
}

.tos-warning {
    background: rgba(255, 193, 7, 0.05);
    border-left: 3px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
}

.tos-warning p {
    margin: 0;
    color: #aaa;
}

/* ====== SHOWCASE ====== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.showcase-item {
    background: #181818;
    border: 1px solid rgba(0, 255, 136, 0.08);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.showcase-item:hover {
    border-color: rgba(0, 255, 136, 0.25);
    transform: translateY(-3px);
}

.showcase-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 2.5em;
}

.showcase-info {
    padding: 20px;
}

.showcase-info h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 0.95em;
    letter-spacing: 1px;
}

.showcase-info p {
    color: #555;
    margin: 0;
    font-size: 0.8em;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-logo {
        height: 28px;
    }

    .hero-logo {
        width: 140px;
    }

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

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 200px;
        height: calc(100vh - 60px);
        background: rgba(14, 14, 14, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.8em;
        letter-spacing: 5px;
    }

    .hero-badge {
        font-size: 0.65em;
        padding: 5px 14px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 1.6em;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .page-header h1 {
        font-size: 2em;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

    .hero-version {
        font-size: 0.65em;
        padding: 3px 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 220px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.4em;
    }

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

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

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

    .section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.6em;
    }

    .cta-title {
        font-size: 1.8em;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 220px;
    }

    .hero-logo {
        width: 120px;
    }
}