@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: white;
    border: none;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.warning-banner {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning);
    border-radius: 16px;
    padding: 12px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: #151520;
    --bg-card-hover: #1a1a2a;
    --border: #2a2a3a;
    --border-accent: #3a2a5a;
    --text-primary: #ffffff;
    --text-secondary: #c4c4e0;
    --text-muted: #7a7a9a;
    --accent: #8b5cf6;
    --accent-dark: #6d28d9;
    --accent-light: #a78bfa;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.toolbar-sep {
    width: 1px;
    height: 24px;
    background: var(--border);
    margin: 0 6px;
    flex-shrink: 0;
}
.toolbar-dropdown-wrapper {
    position: relative;
    display: inline-flex;
}
.toolbar-dropdown-wrapper > button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
}
.toolbar-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    z-index: 1000;
    margin-top: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    min-width: 220px;
}
.color-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}
.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.15s;
}
.color-swatch:hover {
    border-color: white;
    transform: scale(1.15);
    z-index: 2;
}
.color-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.color-custom-row input[type="color"] {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: none;
    padding: 0;
}
.color-custom-label {
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
}
.font-size-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.font-size-options span {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.15s;
}
.font-size-options span:hover {
    background: rgba(139,92,246,0.15);
    color: var(--accent);
}
.image-align-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.header {
    padding: 8px 0 !important;
}

.header-inner {
    gap: 20px !important;
}

.logo span {
    font-size: 20px !important;
}

.logo-img {
    height: 32px !important;
}

.nav {
    gap: 20px !important;
}

.nav a {
    font-size: 12px !important;
    padding: 4px 0 !important;
}

.btn {
    padding: 5px 12px !important;
    font-size: 12px !important;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px !important;
}

.user-menu .btn-sm {
    padding: 4px 10px !important;
    font-size: 11px !important;
}

.username-display {
    font-size: 13px !important;
}

.hero, main.container {
    margin-top: 70px !important;
}

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo span {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav a:hover, .nav a.active {
    color: var(--accent-light);
}

.btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #b91c1c);
    color: white;
}

.btn-sm {
    padding: 6px 20px;
    font-size: 12px;
}

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 180px;
    z-index: 1000;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--accent);
    color: white;
}

.hero {
    margin-top: 80px;
    padding: 60px 0 40px;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 40%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    display: block;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.carousel {
    flex: 1;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 80px 0;
}

@media (max-width: 1024px) {
    .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .features { grid-template-columns: 1fr; }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    mask-size: 32px;
    -webkit-mask-size: 32px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.feature-icon-1 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z'/%3E%3Cpath d='M2 17L12 22L22 17'/%3E%3Cpath d='M2 12L12 17L22 12'/%3E%3C/svg%3E");
}

.feature-icon-2 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 9L12 2L21 9L12 16L3 9Z'/%3E%3Cpath d='M12 22V16'/%3E%3C/svg%3E");
}

.feature-icon-3 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4l3 3' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.feature-icon-4 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 4L20 8L18 12L14 12L12 8L14 4L18 4Z'/%3E%3Cpath d='M6 14L8 18L6 22L2 22L0 18L2 14L6 14Z'/%3E%3C/svg%3E");
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .section { padding: 40px 24px; }
}

.section-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent);
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .section-title { font-size: 32px; }
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .steps { flex-direction: column; }
}

.step {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    background: rgba(139, 92, 246, 0.05);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-muted);
    font-size: 13px;
}

.step-arrow {
    font-size: 32px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .step-arrow { transform: rotate(90deg); }
}

.forum-preview {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 32px;
    padding: 48px;
    margin: 60px 0;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.topic-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.topic-row:hover {
    transform: translateX(10px);
    background: var(--bg-card-hover);
    border-radius: 16px;
    padding: 20px;
}

.topic-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
}

.topic-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.topic-stats {
    font-size: 13px;
    color: var(--text-muted);
}

.donate-preview {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), var(--bg-card));
    border: 1px solid var(--accent);
    border-radius: 32px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
}

.footer {
    text-align: center;
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 32px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 28px;
    text-align: center;
}

.modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 14px;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    display: none;
    z-index: 3000;
    font-weight: 600;
}

.toast.success {
    border-color: var(--success);
    color: var(--success);
}

.toast.error {
    border-color: var(--danger);
    color: var(--danger);
}

.empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 36px;
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: var(--bg-card-hover);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.category-header h3 {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
}

.topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.tag {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    margin-right: 6px;
}

.hidden-badge {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
    margin-left: 8px;
}

.status-badge {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
    margin-left: 8px;
}

.character-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 20px;
}

.character-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending { background: rgba(245, 158, 11, 0.2); color: var(--warning); }
.status-active { background: rgba(16, 185, 129, 0.2); color: var(--success); }
.status-rejected { background: rgba(239, 68, 68, 0.2); color: var(--danger); }

.quest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.quest-reward {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    margin-bottom: 32px;
}

.role-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 12px 0;
}

.profile-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 36px;
    text-align: center;
    min-width: 150px;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.topic-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 32px;
}

.topic-title-large {
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
}

.reply-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.reply-author {
    font-weight: 600;
    color: var(--accent);
}

.admin-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 32px;
}

.admin-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.test-question {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.test-question label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
}

.test-question input {
    margin-right: 8px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
}