/* GREPREAPER SPECIFIC */
.playground-container { display: flex; flex-direction: column; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.playground-pills { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.pill-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white-color); padding: 0.6rem 1.2rem; border-radius: 99px; font-family: var(--font-mono, 'Courier New', monospace); font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; }
.pill-btn:hover { background: var(--yellow-color); color: var(--bg-color); border-color: var(--yellow-color); }

.terminal-window { background: #0d0d0d; border-radius: 12px; border: 1px solid rgba(255,255,255,0.15); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5); display: flex; flex-direction: column; text-align: left; }
.terminal-header { background: #1a1a1a; padding: 0.8rem 1rem; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.terminal-header .dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; }
.terminal-header .dot.red { background: #ff5f56; }
.terminal-header .dot.yellow { background: #ffbd2e; }
.terminal-header .dot.green { background: #27c93f; }
.terminal-header .title { margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500; }
.terminal-body { padding: 1.5rem; height: 350px; overflow-y: auto; font-family: 'Courier New', monospace; font-size: 0.95rem; line-height: 1.6; color: #e6e6e6; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
.terminal-line { margin-bottom: 0.5rem; }
.terminal-line .prompt { color: var(--yellow-color); margin-right: 0.5rem; }
.terminal-line.output { color: #aaa; padding-left: 1.5rem; white-space: pre-wrap; margin-top: 0.5rem; margin-bottom: 1rem; }
.terminal-input-line { display: flex; align-items: center; padding: 1rem 1.5rem; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.1); }
.terminal-input { flex: 1; background: transparent; border: none; color: #fff; font-family: 'Courier New', monospace; font-size: 1rem; margin-left: 0.8rem; outline: none; }
.terminal-run-btn { background: var(--yellow-color); color: var(--bg-color); border: none; padding: 0.5rem 1rem; border-radius: 4px; font-family: 'Anton', sans-serif; letter-spacing: 1px; cursor: pointer; transition: transform 0.2s ease; }
.terminal-run-btn:hover { transform: scale(1.05); }

/* FAQ Dark Mode */
.faq-accordion { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: transparent; border: none; padding: 1.5rem; color: var(--white-color); font-family: 'Anton', sans-serif; font-size: 1.1rem; letter-spacing: 1px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.5rem; color: rgba(255,255,255,0.7); line-height: 1.8; text-align: left; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem; }
