body {
    background-color: #111;
    color: #eee;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.post-creation-page {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 8rem;
    margin-bottom: 6rem;
}

.title-section,
.content-section,
.submit-section {
    background: #1d1d1d;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.title-section h1 {
    color: #9a26a4;
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

input[type="text"], textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #333;
    background: #222;
    color: #eee;
    font-size: 1rem;
    resize: vertical;
}

textarea {
    min-height: 300px;
}

.image-preview {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

.image-preview img {
    max-width: 20%;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.word-count {
    margin-top: 0.5rem;
    font-style: italic;
    color: #ccc;
}

.cta-button {
    background-color: #a149f3;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #872ee0;
}

.cta-button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

.link-hint {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 0.5rem;
}
