.explore-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Form */
#explore-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
}
#explore-form textarea:focus {
    border-color: #44d7a8;
}
#explore-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* File input */
.form-row {
    margin-top: 1rem;
}
.form-row label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}
.form-row input[type="file"] {
    color: #aaa;
    font-size: 0.85rem;
}
#screenshot-preview {
    display: none;
    max-width: 300px;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* Buttons */
.explore-btn {
    background: #44d7a8;
    color: #0c4a3e;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.explore-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(68, 215, 168, 0.3);
}
.explore-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Tag chips */
.tag-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.tag-chip {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: default;
}
.remove-tag {
    cursor: pointer;
    opacity: 0.6;
    font-size: 0.85rem;
    font-weight: bold;
    line-height: 1;
}
.remove-tag:hover {
    opacity: 1;
    color: #ff6b6b;
}

/* Tag input */
.tag-input-wrap {
    margin-top: 0.5rem;
}
.tag-input-wrap input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    outline: none;
    width: 200px;
}
.tag-input-wrap input:focus {
    border-color: #44d7a8;
}
.tag-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
