@charset "UTF-8";
/* Dot Matrix Theme - style.css (vue-010) */
/* Dot grid patterns, monospace IBM Plex Mono, amber LED accents, dotted borders */

:root {
    --primary: #1E293B;
    --accent: #F59E0B;
    --accent-dim: rgba(245, 158, 11, 0.15);
    --bg: #FAFAF9;
    --surface: #FFFFFF;
    --border: #CBD5E1;
    --text: #1E293B;
    --text-dim: #64748B;
    --dot-size: 2px;
    --dot-gap: 20px;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-body: 'Noto Sans KR', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Dot Matrix Background Patterns */
.dot-matrix-bg {
    background-image: radial-gradient(circle, var(--border) var(--dot-size), transparent var(--dot-size));
    background-size: var(--dot-gap) var(--dot-gap);
}

.dot-matrix-bg-accent {
    background-image: radial-gradient(circle, rgba(245, 158, 11, 0.2) var(--dot-size), transparent var(--dot-size));
    background-size: var(--dot-gap) var(--dot-gap);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 2px dotted var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 0.4rem;
    vertical-align: middle;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.nav-separator {
    color: var(--border);
    font-size: 0.6rem;
    user-select: none;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 2px dotted var(--border);
}

.header-user a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-user a:hover {
    color: var(--accent);
}

.header-user span {
    color: var(--primary);
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 2px dotted var(--border);
    padding: 0.5rem;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(203, 213, 225, 0.5) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 0.75rem;
}

.hero-title-underline span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: dotReveal 0.6s ease forwards;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border: 2px dotted var(--accent);
    background: var(--accent-dim);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-style: solid;
}

.hero-cta-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.hero-cta:hover .hero-cta-dot {
    background: #FFFFFF;
}

/* Section common */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
}

.section-divider span {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.section-divider span:nth-child(2) {
    width: 20px;
    height: 5px;
    border-radius: 3px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--surface);
    border: 2px dotted var(--border);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: radial-gradient(circle, var(--accent) 2px, transparent 2px);
    background-size: 10px 10px;
    background-position: 0 -3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
}

.feature-icon-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
}

.feature-icon-dot:nth-child(1) { top: 0; left: 0; }
.feature-icon-dot:nth-child(2) { top: 0; right: 8px; }
.feature-icon-dot:nth-child(3) { bottom: 8px; left: 0; }
.feature-icon-dot:nth-child(4) { bottom: 8px; right: 8px; }
.feature-icon-dot:nth-child(5) { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; }

.feature-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    padding-left: 1rem;
}

/* Board Widgets */
.boards-section {
    background: var(--surface);
    border-top: 2px dotted var(--border);
    border-bottom: 2px dotted var(--border);
}

.boards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.board-card {
    border: 2px dotted var(--border);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.board-card:hover {
    border-color: var(--accent);
}

.board-card-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: radial-gradient(circle, rgba(203, 213, 225, 0.4) 1px, transparent 1px);
    background-size: 8px 8px;
    border-bottom: 2px dotted var(--border);
}

.board-card-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-card-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.board-card-more {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-decoration: none;
    border: 1px dotted var(--border);
    padding: 0.2rem 0.5rem;
    transition: all 0.2s ease;
}

.board-card-more:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.board-card-list {
    list-style: none;
    padding: 0.75rem 1.25rem;
}

.board-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dotted rgba(203, 213, 225, 0.5);
}

.board-card-item:last-child {
    border-bottom: none;
}

.board-item-link {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
    text-decoration: none;
    transition: color 0.2s ease;
}

.board-item-link:hover {
    color: var(--accent);
}

.board-item-link::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--border);
    border-radius: 50%;
    flex-shrink: 0;
}

.board-item-title {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}

.board-item-title::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--border);
    border-radius: 50%;
    flex-shrink: 0;
}

.board-item-new {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.board-item-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

.board-empty {
    padding: 2rem 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2px dotted var(--border);
    background: var(--surface);
}

.stat-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 2px dotted var(--border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.stat-dot-separator {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    border: 2px dotted var(--accent);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    background: var(--surface);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-image: radial-gradient(circle, rgba(245, 158, 11, 0.1) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-mono);
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.cta-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: #FFFFFF;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

/* Footer */
.footer {
    border-top: 2px dotted var(--border);
    background: var(--surface);
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.footer-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-sep {
    color: var(--border);
    font-size: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dotted var(--border);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: 2px dotted var(--border);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--primary);
}

.mobile-nav-link {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px dotted transparent;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   BOARD STYLES
   ============================================ */

.board-wrap {
    padding: 8rem 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.board-title-area {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dotted var(--border);
}

.board-title-text {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-title-text::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Board List Table */
.board-list-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px dotted var(--border);
    margin-bottom: 1.5rem;
}

.board-list-table thead tr {
    background-image: radial-gradient(circle, rgba(203, 213, 225, 0.4) 1px, transparent 1px);
    background-size: 8px 8px;
    border-bottom: 2px dotted var(--border);
}

.board-list-table thead th {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 1rem;
    text-align: left;
}

.board-list-table tbody tr {
    border-bottom: 1px dotted rgba(203, 213, 225, 0.5);
    transition: background 0.15s ease;
}

.board-list-table tbody tr:hover {
    background: var(--accent-dim);
}

.board-list-table tbody tr.notice-row {
    background: rgba(245, 158, 11, 0.05);
}

.board-list-table tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.td-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
}

.td-subject a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.td-subject a:hover {
    color: var(--accent);
}

.td-name {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.td-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.td-hit {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
}

.new-badge {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 0.3rem;
    vertical-align: middle;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.comment-count {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    margin-left: 0.3rem;
}

/* Board Pagination */
.board-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
}

.board-pagination a,
.board-pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.4rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-decoration: none;
    border: 1px dotted var(--border);
    transition: all 0.2s ease;
}

.board-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.board-pagination .pg_current,
.board-pagination strong {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    font-weight: 700;
}

/* Board Actions */
.board-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.board-search form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-search select {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border: 2px dotted var(--border);
    background: var(--surface);
    color: var(--text);
    outline: none;
    cursor: pointer;
}

.board-search input[type="text"] {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border: 2px dotted var(--border);
    background: var(--surface);
    color: var(--text);
    outline: none;
    width: 180px;
    transition: border-color 0.2s ease;
}

.board-search input[type="text"]:focus {
    border-color: var(--accent);
}

.board-search button {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.board-search button:hover {
    background: var(--accent);
}

.btn-write {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
}

.btn-write:hover {
    background: var(--primary);
}

/* View Page */
.view-header {
    border: 2px dotted var(--border);
    margin-bottom: 1.5rem;
}

.view-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    padding: 1.5rem;
    border-bottom: 2px dotted var(--border);
    line-height: 1.4;
}

.view-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-image: radial-gradient(circle, rgba(203, 213, 225, 0.3) 1px, transparent 1px);
    background-size: 8px 8px;
}

.view-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-meta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.view-meta-value {
    font-size: 0.8rem;
    color: var(--text);
}

/* View Content */
.view-content {
    padding: 2rem 1.5rem;
    border: 2px dotted var(--border);
    border-top: none;
    margin-bottom: 1.5rem;
    min-height: 200px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.view-content img {
    max-width: 100%;
    height: auto;
}

/* Good / Nogood */
.view-good-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px dotted var(--border);
}

.good-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 2rem;
    border: 2px dotted var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-mono);
}

.good-btn:hover {
    border-color: var(--accent);
}

.good-btn.good:hover {
    background: var(--accent-dim);
}

.good-btn.nogood:hover {
    background: rgba(100, 116, 139, 0.1);
}

.good-btn .count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.good-btn.nogood .count {
    color: var(--text-dim);
}

.good-btn .label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

/* View Actions */
.view-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.view-actions-left,
.view-actions-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-action {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px dotted var(--border);
    color: var(--text);
    text-decoration: none;
    background: var(--surface);
    transition: all 0.2s ease;
}

.btn-action:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-red {
    color: #DC2626;
    border-color: #DC2626;
}

.btn-red:hover {
    background: #DC2626;
    color: #FFFFFF;
}

/* Comments */
.comment-section {
    border: 2px dotted var(--border);
    margin-bottom: 2rem;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 2px dotted var(--border);
    background-image: radial-gradient(circle, rgba(203, 213, 225, 0.3) 1px, transparent 1px);
    background-size: 8px 8px;
}

.comment-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.comment-count-num {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px dotted rgba(203, 213, 225, 0.5);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item-reply {
    padding-left: 3rem;
    position: relative;
}

.comment-item-reply::before {
    content: '';
    position: absolute;
    top: 1.4rem;
    left: 1.5rem;
    width: 10px;
    height: 2px;
    background: var(--accent);
}

.comment-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.comment-item-name {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.comment-item-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
}

.comment-item-content {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.7;
}

/* Comment Form */
.comment-form {
    padding: 1.5rem;
    border-top: 2px dotted var(--border);
}

.comment-form-guest {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.comment-form-guest input {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border: 2px dotted var(--border);
    background: var(--surface);
    color: var(--text);
    outline: none;
    flex: 1;
}

.comment-form textarea {
    width: 100%;
    min-height: 80px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.75rem;
    border: 2px dotted var(--border);
    background: var(--surface);
    color: var(--text);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.comment-form textarea:focus {
    border-color: var(--accent);
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
}

.btn-submit {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: var(--primary);
}

/* Animations */
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes dotReveal {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1023px) {
    .features-grid,
    .boards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 2px dotted var(--border);
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .features-grid,
    .boards-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 1.75rem 1rem;
    }

    .stat-item .stat-dot-separator {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    /* Board responsive */
    .board-wrap {
        padding: 6rem 1rem 2rem;
    }

    .board-list-table thead {
        display: none;
    }

    .board-list-table tbody tr {
        display: flex;
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        border-bottom: 1px dotted var(--border);
    }

    .board-list-table tbody td {
        padding: 0.2rem 0;
    }

    .td-num {
        display: none;
    }

    .td-subject {
        width: 100%;
        font-size: 0.9rem;
    }

    .td-name {
        margin-right: 1rem;
    }

    .td-hit {
        margin-left: auto;
    }

    .board-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .board-search form {
        flex-wrap: wrap;
    }

    .board-search input[type="text"] {
        width: 100%;
    }

    .view-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .view-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .view-actions-left,
    .view-actions-right {
        width: 100%;
        justify-content: flex-start;
    }

    .view-good-area {
        flex-direction: row;
    }

    .good-btn {
        flex: 1;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 359px) {
    html {
        font-size: 13px;
    }

    .header-inner {
        padding: 0.75rem 1rem;
    }

    .stat-item {
        padding: 1.5rem 0.75rem;
    }

    .board-wrap {
        padding: 5rem 0.75rem 2rem;
    }
}
