.channel6-container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.channel6-header {
    margin-bottom: 30px;
    background: linear-gradient(180deg, #7a0014 0%, #3b000a 100%);
    border: 4px outset #ff4d4d;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel6-header img {
    height: 75px;
    width: auto;
}

.channel6-header-text {
    flex: 1;
}

.channel6-header h1 {
    color: #ffcc00;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 3px 3px 0px #000;
    margin: 0 0 8px 0;
}

.channel6-tagline {
    color: #ffe3e3;
    font-style: italic;
    margin: 0;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 3px outset #444;
    padding: 20px;
}

.post-title {
    font-family: 'Arial Black', sans-serif;
    color: #ffcc00;
    margin-bottom: 10px;
}

.post-title a {
    color: #ffcc00;
    text-decoration: none;
}

.post-title a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.post-meta {
    color: #888;
    margin-bottom: 15px;
}

.post-meta .author {
    color: #00ffff;
}

.post-body {
    color: #cccccc;
    line-height: 1.6;
}

.post-summary {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-style: italic;
}

.post-container {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 3px outset #444;
    padding: 30px;
}

.post-header {
    border-bottom: 3px solid #ff4d4d;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.post-header .post-title {
    margin-bottom: 15px;
}

.post-image {
    max-width: 100%;
    height: auto;
    border: 3px solid #ff4d4d;
    margin-bottom: 20px;
}

.admin-buttons {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #333;
}

.edit-button,
.delete-button {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 5px;
    cursor: pointer;
    border: 3px outset;
}

.edit-button {
    background: linear-gradient(180deg, #ff6600 0%, #cc3300 50%, #ff6600 100%);
    border-color: #ff9933;
    color: #ffffff;
}

.edit-button:hover {
    border-style: inset;
    background: linear-gradient(180deg, #cc3300 0%, #ff6600 50%, #cc3300 100%);
}

.delete-button {
    background: linear-gradient(180deg, #cc0000 0%, #990000 50%, #cc0000 100%);
    border-color: #ff3333;
    color: #ffffff;
}

.delete-button:hover {
    border-style: inset;
    background: linear-gradient(180deg, #990000 0%, #cc0000 50%, #990000 100%);
}

.new-post-panel {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 3px outset #444;
    padding: 20px;
}

.new-post-panel h2 {
    color: #ffcc00;
    font-family: 'Arial Black', sans-serif;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #00ffff;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: #000000;
    border: 2px inset #333;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.form-group input[type="file"] {
    background: #1a1a2e;
    border: 2px solid #333;
    color: #ffcc00;
    padding: 8px;
    width: 100%;
}

.form-group textarea {
    min-height: 300px;
    resize: vertical;
    line-height: 1.6;
}

.form-group textarea.summary-field {
    min-height: 120px;
}

.form-hint {
    color: #888;
    font-style: italic;
    margin-top: 5px;
}

.submit-button,
.cancel-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.submit-button {
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 50%, #00ff00 100%);
    border: 3px outset #00ff00;
    color: #000000;
    cursor: pointer;
    margin-right: 10px;
}

.submit-button:hover {
    border-style: inset;
    background: linear-gradient(180deg, #00cc00 0%, #00ff00 50%, #00cc00 100%);
}

.cancel-button {
    background: linear-gradient(180deg, #666666 0%, #333333 50%, #666666 100%);
    border: 3px outset #888888;
    color: #ffffff;
    text-decoration: none;
}

.cancel-button:hover {
    border-style: inset;
    background: linear-gradient(180deg, #333333 0%, #666666 50%, #333333 100%);
}

.flash-message {
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 2px solid;
    font-family: 'Arial', sans-serif;
}

.flash-message.success {
    background: #003300;
    border-color: #00ff00;
    color: #00ff00;
}

.flash-message.error {
    background: #330000;
    border-color: #ff0000;
    color: #ff0000;
}

/* Photo Picker Modal */
.photo-picker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.photo-picker-modal.active {
    display: flex;
}

.photo-picker-content {
    background: #1a1a2e;
    border: 4px ridge #555;
    padding: 20px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.photo-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px groove #444;
}

.photo-picker-header h3 {
    margin: 0;
    color: #ffcc00;
}

.photo-picker-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 24px;
    line-height: 1;
}

.photo-picker-close:hover {
    color: #ff4d4d;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    color: #888;
}

.photo-grid-item {
    cursor: pointer;
    border: 2px solid #444;
    padding: 2px;
    transition: border-color 0.2s;
    background: #2a2a3e;
}

.photo-grid-item:hover {
    border-color: #ff4d4d;
}

.photo-grid-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.cover-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cover-buttons .btn {
    min-width: 200px;
    flex: 1 1 240px;
    max-width: 260px;
}

.cover-preview {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.cover-preview img {
    max-width: 200px;
    max-height: 150px;
    border: 2px solid #ff4d4d;
}

.cover-preview .btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Quill Editor Dark Theme */
#editor {
    height: 350px;
    background: #000000;
    border: 2px inset #333;
}

.ql-toolbar.ql-snow {
    border: 2px solid #444;
    border-bottom: 1px solid #444;
    background: linear-gradient(180deg, #2a2a3e 0%, #1a1a2e 100%);
}

.ql-container.ql-snow {
    border: 2px solid #444;
    border-top: none;
}

.ql-editor {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

.ql-editor p {
    margin-bottom: 1em;
}

.ql-editor.ql-blank::before {
    color: #666;
    font-style: italic;
}

.ql-snow .ql-stroke {
    stroke: #ccc;
}

.ql-snow .ql-fill {
    fill: #ccc;
}

.ql-snow .ql-picker {
    color: #ccc;
}

.ql-snow .ql-picker-label:hover,
.ql-snow .ql-picker-label.ql-active,
.ql-snow .ql-picker-item:hover,
.ql-snow .ql-picker-item.ql-selected {
    color: #ff4d4d;
}

.ql-snow .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-picker-label.ql-active .ql-stroke,
.ql-snow button:hover .ql-stroke,
.ql-snow button.ql-active .ql-stroke {
    stroke: #ff4d4d;
}

.ql-snow .ql-picker-label:hover .ql-fill,
.ql-snow .ql-picker-label.ql-active .ql-fill,
.ql-snow button:hover .ql-fill,
.ql-snow button.ql-active .ql-fill {
    fill: #ff4d4d;
}

.ql-snow .ql-picker-options {
    background: #1a1a2e;
    border: 1px solid #444;
}

.ql-snow .ql-tooltip {
    background: #1a1a2e;
    border: 1px solid #444;
    color: #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.ql-snow .ql-tooltip input[type="text"] {
    background: #000;
    border: 1px solid #555;
    color: #00ff00;
}

.ql-snow a {
    color: #ff4d4d;
}
