.fan-stories-page {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(6rem, 10vw, 10rem) 1.5rem clamp(3rem, 6vw, 6rem);
}

.fan-stories-page-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.fan-stories-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.5rem;
}

.fan-stories-page-header p {
    opacity: 0.5;
    font-size: 1.1rem;
    margin: 0;
}

/* Form Section */
.fan-stories-form-section {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.fan-stories-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red, #dc2626), rgba(220, 38, 38, 0.3));
}

.fan-stories-form-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.fan-stories-form {
    display: grid;
    gap: 1.25rem;
    max-width: 100%;
}

.fan-stories-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fan-stories-form .form-group {
    display: flex;
    flex-direction: column;
}

.fan-stories-form .form-group label {
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.fan-stories-form .form-group input,
.fan-stories-form .form-group textarea,
.fan-stories-form .form-group select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    color: inherit;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fan-stories-form .form-group input:focus,
.fan-stories-form .form-group textarea:focus,
.fan-stories-form .form-group select:focus {
    outline: none;
    border-color: var(--accent-red, #dc2626);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.fan-stories-form .form-group input::placeholder,
.fan-stories-form .form-group textarea::placeholder {
    opacity: 0.5;
}

.fan-stories-form .form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.fan-stories-form .char-counter {
    text-align: right;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.25rem;
}

.fan-stories-form .submit-btn {
    background: var(--accent-red, #dc2626);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    justify-self: start;
}

.fan-stories-form .submit-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.fan-stories-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.fan-stories-form .form-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.fan-stories-form .form-message.success {
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.fan-stories-form .form-message.error {
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

/* Stories List */
.fan-stories-list-section {
    margin-top: 2rem;
}

.fan-stories-list-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.stories-container {
    display: grid;
    gap: 1.25rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.story-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.story-author {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.story-date {
    color: var(--text-secondary, #a0a0a0);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0.5;
}

.story-text {
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.85;
    white-space: pre-line;
}

.story-concert-tag {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--accent-red, #dc2626);
}

/* Pagination */
.fan-stories-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.fan-stories-pagination .page-btn {
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.fan-stories-pagination .page-btn:hover {
    background: var(--accent-red, #dc2626);
    color: white;
    border-color: var(--accent-red, #dc2626);
}

.fan-stories-pagination .page-current {
    background: var(--accent-red, #dc2626);
    color: white;
    border: 1px solid var(--accent-red, #dc2626);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.fan-stories-pagination .page-dots {
    opacity: 0.4;
    padding: 0 0.25rem;
}

/* Loading & Empty States */
.fan-stories-loading,
.fan-stories-empty {
    text-align: center;
    padding: 3rem 1rem;
    opacity: 0.5;
}

.fan-stories-empty h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.fan-stories-empty p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .fan-stories-form .form-row {
        grid-template-columns: 1fr;
    }
    .story-header {
        flex-direction: column;
    }
}
