/* Save the Band Landing Page Styles */
.save-the-band-landing {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%);
    min-height: 100vh;
    padding: 40px 0;
    position: relative;
}

.save-the-band-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content with Sidebar Layout */
.content-with-sidebar {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.user-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.sidebar-user {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.user-icon {
    font-size: 32px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 50%;
}

.sidebar-user strong {
    display: block;
    color: #1a3c5a;
    font-size: 0.95em;
    margin-bottom: 2px;
}

.sidebar-user small {
    color: #6c757d;
    font-size: 0.8em;
}

.sidebar-menu {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-menu a {
    display: block;
    padding: 12px 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 0.9em;
}

.sidebar-menu a:hover {
    background: #f8f9fa;
    color: #2a9dcc;
}

.sidebar-menu a.active {
    background: #e3f2fd;
    color: #2a9dcc;
    font-weight: 600;
}

.sidebar-menu a.logout {
    color: #dc3545;
}

.sidebar-menu a.logout:hover {
    background: #fff5f5;
}

.sidebar-menu hr {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 8px 0;
}

.main-content-area {
    flex: 1;
    min-width: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    color: #1a3c5a;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 20px rgba(26, 60, 90, 0.1);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #2a9dcc, #9c27b0, #ff9800);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.hero-section h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.05em;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6c757d;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.hero-stats .stat {
    text-align: center;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    flex: 0 0 160px;
}

.hero-stats .stat:nth-child(1) {
    border-color: #2a9dcc;
}

.hero-stats .stat:nth-child(2) {
    border-color: #9c27b0;
}

.hero-stats .stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 60, 90, 0.15);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.85em;
    margin-top: 8px;
    color: #6c757d;
    font-weight: 500;
}

/* Submit Section */
.submit-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.submit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #ff9800, #e91e63, #9c27b0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.submit-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9800, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-section > p {
    text-align: center;
    color: #6c757d;
    font-size: 0.95em;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group p {
    background: #f8f9fa;
    border-left: 3px solid #ff9800;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.8em;
    color: #6c757d;
    text-align: left;
    margin-bottom: 16px;
    line-height: 1.5;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a3c5a;
    font-size: 0.9em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.2s ease;
    font-family: inherit;
    background: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a9dcc;
    box-shadow: 0 0 0 3px rgba(42, 157, 204, 0.1);
}

.issues-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.issues-checkboxes label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9em;
    min-height: 44px;
}

.issues-checkboxes label:hover {
    background: #e9ecef;
    border-color: #2a9dcc;
}

.issues-checkboxes input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #1a3c5a;
    cursor: pointer;
}

.issues-checkboxes input[type="checkbox"]:checked + * {
    color: #1a3c5a;
    font-weight: 600;
}

#other-issue-field {
    display: none;
    margin-top: 10px;
    width: 100%;
}

.submit-btn {
    background: linear-gradient(135deg, #ff9800, #e91e63);
    color: white;
    border: none;
    padding: 22px 32px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f57c00, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 180px;
}

.cta-primary {
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white !important;
    box-shadow: 0 4px 15px rgba(42, 157, 204, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #1e88c7, #7b1fa2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 204, 0.4);
}

.cta-secondary {
    background: white;
    color: #1a3c5a;
    border: 2px solid #2a9dcc;
    box-shadow: 0 2px 8px rgba(26, 60, 90, 0.1);
}

.cta-secondary:hover {
    background: #f8f9fa;
    border-color: #1e88c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 60, 90, 0.15);
}

.login-prompt {
    text-align: center;
}

.login-prompt-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Auth Section */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.auth-container {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 60, 90, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #2a9dcc, #9c27b0, #ff9800);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.auth-container h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.auth-description {
    text-align: center;
    color: #6c757d;
    font-size: 0.95em;
    margin-bottom: 35px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.auth-links p {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
}

.auth-links a {
    color: #2a9dcc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #1e88c7;
    text-decoration: underline;
}

/* Verification Messages */
.verification-success,
.verification-error {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95em;
    font-weight: 600;
    text-align: center;
}

.verification-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #4caf50;
}

.verification-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 12px;
}

.strength-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    background: #dee2e6;
}

.strength-bar-fill.weak {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.strength-bar-fill.medium {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.strength-bar-fill.strong {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.strength-requirements {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.requirement {
    font-size: 0.85em;
    color: #6c757d;
    transition: color 0.2s ease;
}

.requirement.met {
    color: #4caf50;
    font-weight: 600;
}

.requirement.met::before {
    content: '✓ ';
    color: #4caf50;
}

.terms-notice {
    font-size: 0.8em;
    color: #6c757d;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
}

.terms-notice a {
    color: #2a9dcc;
    text-decoration: none;
    font-weight: 600;
}

.terms-notice a:hover {
    text-decoration: underline;
}

/* Policy Pages */
.policy-section {
    padding: 40px 20px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 60, 90, 0.1);
}

.policy-container h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.policy-intro {
    text-align: center;
    color: #6c757d;
    font-size: 1.05em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.policy-content h2 {
    color: #1a3c5a;
    font-size: 1.4em;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 15px 0 25px 20px;
    color: #495057;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-content strong {
    color: #1a3c5a;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #f3e5f5 100%);
    border-left: 4px solid #ff9800;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.policy-footer em {
    color: #6c757d;
    font-size: 0.9em;
}

.policy-footer .final-note {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 8px;
    color: #1a3c5a;
    font-size: 0.95em;
    line-height: 1.6;
}

.policy-actions {
    margin-top: 40px;
    text-align: center;
}

/* Stories Section */
.stories-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #2a9dcc, #9c27b0, #ff9800);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.stories-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stories-section > p {
    text-align: center;
    color: #6c757d;
    font-size: 0.95em;
    margin-bottom: 35px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    border: 2px solid #e9ecef;
    position: relative;
}

.story-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a9dcc, #9c27b0, #ff9800);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #2a9dcc;
}

.story-card:hover::after {
    opacity: 1;
}

.story-header-with-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #2a9dcc, #9c27b0);
    border-image-slice: 1;
}

.band-avatar {
    flex-shrink: 0;
}

.band-avatar svg {
    display: block;
    border-radius: 8px;
}

.story-header-text {
    flex: 1;
    min-width: 0;
}

.story-card h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.story-issues {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #2a9dcc, #9c27b0);
    border-image-slice: 1;
}

.story-issues strong {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9em;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3c5a, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-issues ul {
    margin: 0;
    padding-left: 20px;
}

.story-issues li {
    color: #495057;
    margin-bottom: 5px;
    font-size: 0.85em;
}

.story-issues li::marker {
    color: #2a9dcc;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    color: #6c757d;
    margin-bottom: 15px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.story-comments-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #1e88c7, #7b1fa2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
}

.no-stories {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-size: 0.95em;
}

.no-stories p {
    margin: 0;
}

/* Community Trust Badges */
.community-trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    color: #1a3c5a;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.trust-badge:hover {
    background: #f8f9fa;
    border-color: #2a9dcc;
    transform: translateY(-1px);
}

.trust-badge span {
    font-size: 1.2em;
}

/* Dashboard Styles */
.dashboard-section {
    padding: 20px 0;
}

.dashboard-header {
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 60, 90, 0.1);
}

.dashboard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.dashboard-title h1 {
    font-size: 2em;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.dashboard-title p {
    color: #6c757d;
    font-size: 1.05em;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-link {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.action-link.primary {
    background: linear-gradient(135deg, #ff9800, #e91e63);
    color: white;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.action-link.primary:hover {
    background: linear-gradient(135deg, #f57c00, #c2185b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.action-link.secondary {
    background: white;
    color: #2a9dcc;
    border: 2px solid #2a9dcc;
}

.action-link.secondary:hover {
    background: #2a9dcc;
    color: white;
}

.action-link.logout {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.action-link.logout:hover {
    background: #f8f9fa;
    border-color: #6c757d;
}

.dashboard-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.tab-btn:hover {
    border-color: #2a9dcc;
    color: #1a3c5a;
}

.tab-btn.active {
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(42, 157, 204, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9800, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-stories-grid,
.dashboard-comments-grid {
    display: grid;
    gap: 20px;
}

.dashboard-story-card,
.dashboard-comment-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 2px solid #e9ecef;
    transition: all 0.2s ease;
}

.dashboard-story-card:hover,
.dashboard-comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #2a9dcc;
}

.story-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.story-header-row h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 700;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
.action-btn {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #495057;
}

.action-btn:hover {
    border-color: #2a9dcc;
    color: #2a9dcc;
    background: #f8f9fa;
}

.action-btn.mark-solved-btn,
.action-btn.mark-unsolved-btn {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
    border-color: transparent;
}

.action-btn.mark-solved-btn:hover,
.action-btn.mark-unsolved-btn:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    transform: translateY(-1px);
}   color: #155724;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 15px;
    border: 2px solid #4caf50;
}

.story-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white;
    box-shadow: 0 2px 8px rgba(42, 157, 204, 0.3);
}

.action-btn:hover {
    background: linear-gradient(135deg, #1e88c7, #7b1fa2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 157, 204, 0.4);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.story-comments-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.story-comments-container h4 {
    color: #1a3c5a;
    font-size: 1.1em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
    transition: all 0.2s ease;
}

.comment-item.helpful-comment {
    background: linear-gradient(135deg, #fff3e0 0%, #f3e5f5 100%);
    border-left-color: #ff9800;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}

.comment-meta strong {
    color: #1a3c5a;
    font-size: 0.9em;
}

.comment-date {
    color: #6c757d;
    font-size: 0.85em;
}

.comment-content {
    color: #495057;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-content p {
    margin: 0 0 10px 0;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.helpful-btn {
    padding: 6px 14px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.helpful-btn:hover {
    border-color: #ff9800;
    color: #ff9800;
}

.helpful-btn.active {
    background: linear-gradient(135deg, #ff9800, #e91e63);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.helpful-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.no-comments {
    color: #6c757d;
    font-size: 0.9em;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.comment-story-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.comment-story-info h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #1a3c5a;
}

.helpful-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, #fff3e0, #f3e5f5);
    color: #ff9800;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    border: 2px solid #ff9800;
}

.dashboard-comment-card.marked-helpful {
    border-left: 4px solid #ff9800;
}

.view-story-link {
    color: #2a9dcc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.view-story-link:hover {
.no-content p {
    color: #6c757d;
    font-size: 1.1em;
    margin: 0 0 25px 0;
}

/* Stories List Page */

.dashboard-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    flex-wrap: wrap;
}

/* Stories List Page */
.stories-list-header {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(26, 60, 90, 0.1);
}

.stories-list-header h1 {
    font-size: 2.2em;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stories-intro {
    color: #6c757d;
    font-size: 1.05em;
    margin: 0 0 25px 0;
}

.header-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stories-filter {
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.filter-btn:hover {
    border-color: #2a9dcc;
    color: #1a3c5a;
}

.filter-btn.active {
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(42, 157, 204, 0.3);
}

.stories-listing {
    margin-bottom: 40px;
}

.story-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-card-top {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.band-avatar-listing {
    flex-shrink: 0;
}

.band-avatar-listing svg {
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.story-card-header {
    flex: 1;
    min-width: 0;
}

.story-card-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #1a3c5a;
    transition: color 0.2s ease;
}

.story-card-link:hover .story-card-header h3 {
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solved-badge-small {
    padding: 4px 10px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    white-space: nowrap;
}

.story-issues-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.issue-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    color: #1a3c5a;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    border: 1px solid #dee2e6;
}

.issue-tag.more {
    background: linear-gradient(135deg, #fff3e0, #f3e5f5);
    color: #ff9800;
    border-color: #ff9800;
}

.story-card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.story-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    color: #6c757d;
    font-size: 0.85em;
    font-weight: 600;
}

.story-card-link:hover {
    transform: translateY(-2px);
}

.story-card-link:hover .story-card {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #2a9dcc;
}

.pagination-container {
    grid-column: 1 / -1;
    margin-top: 30px;
}

.pagination-container ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-container li a,
.pagination-container li span {
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    color: #1a3c5a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination-container li a:hover {
    border-color: #2a9dcc;
    color: #2a9dcc;
}

.pagination-container li .current {
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white;
    border-color: transparent;
}

/* Single Story Page */
.breadcrumb {
    padding: 20px 0;
    color: #6c757d;
    font-size: 0.9em;
}

.breadcrumb a {
    color: #2a9dcc;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #dee2e6;
}

.single-story {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 60, 90, 0.1);
    margin-bottom: 40px;
}

.single-story-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.single-story-header h1 {
    font-size: 2em;
    margin: 0;
    background: linear-gradient(135deg, #1a3c5a, #2a9dcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.story-metadata {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.meta-item {
    color: #6c757d;
    font-size: 0.95em;
    font-weight: 600;
}

.owner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.owner-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, #fff3e0, #f3e5f5);
    color: #ff9800;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    border: 2px solid #ff9800;
}

.dashboard-link {
    padding: 8px 16px;
    background: linear-gradient(135deg, #2a9dcc, #9c27b0);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dashboard-link:hover {
    background: linear-gradient(135deg, #1e88c7, #7b1fa2);
    transform: translateY(-1px);
}

.story-issues-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #2a9dcc;
}

.story-issues-section h3 {
    color: #1a3c5a;
    font-size: 1.2em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.issues-list {
    margin: 0;
    padding-left: 25px;
    color: #495057;
}

.issues-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.story-full-content {
    margin-bottom: 30px;
}

.story-full-content h3 {
    color: #1a3c5a;
    font-size: 1.3em;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.story-full-content p {
    color: #495057;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-actions-bar {
    padding: 20px 0;
    margin-bottom: 30px;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-button {
    padding: 10px 20px;
    border: 2px solid #2a9dcc;
    background: white;
    color: #2a9dcc;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.action-button:hover {
    background: #2a9dcc;
    color: white;
}

.story-comments-section {
    margin-top: 40px;
}

.story-comments-section h3 {
    color: #1a3c5a;
    font-size: 1.5em;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.comment-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #2a9dcc;
}

.comment-notice.login-required {
    background: linear-gradient(135deg, #fff3e0 0%, #f3e5f5 100%);
    border-left-color: #ff9800;
}

.comment-notice p {
    margin: 0;
    color: #495057;
    font-size: 0.95em;
}

.comment-notice a {
    color: #2a9dcc;
    font-weight: 600;
    text-decoration: none;
}

.comment-notice a:hover {
    text-decoration: underline;
}

.comments-list-single {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-single {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #e9ecef;
    position: relative;
}

.comment-single.helpful-comment {
    background: linear-gradient(135deg, #fff3e0 0%, #f3e5f5 100%);
    border-left-color: #ff9800;
}

.helpful-star {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff9800, #e91e63);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    font-size: 1.5em;
}

.comment-author strong {
    color: #1a3c5a;
    font-size: 1em;
}

.comment-date {
    color: #6c757d;
    font-size: 0.85em;
}

.comment-text {
    color: #495057;
    font-size: 1em;
    line-height: 1.7;
}

.comment-text p {
    margin: 0 0 10px 0;
}

.comment-text p:last-child {
    margin-bottom: 0;
}

.no-comments-yet {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #6c757d;
    font-size: 1em;
}

.comment-form {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.3), rgba(243, 229, 245, 0.3));
    border-radius: 12px;
}

.comment-form h3 {
@media (max-width: 768px) {
    .save-the-band-landing .container {
        padding: 0 15px;
    }

    .content-with-sidebar {
        flex-direction: column;
        gap: 20px;
    }

    .user-sidebar {
        width: 100%;
    }

    .sidebar-user {
        padding: 15px;
    }

    .hero-section {
        padding: 30px 20px;
    }idth: 100%;
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.2s ease;
    resize: vertical;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: #2a9dcc;
    box-shadow: 0 0 0 3px rgba(42, 157, 204, 0.1);
}

.related-stories {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.related-stories h3 {
    text-align: center;
    color: #1a3c5a;
    font-size: 1.5em;
    margin: 0 0 30px 0;
    font-weight: 700;
}

.related-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.related-story-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.2s ease;
}

.related-story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #2a9dcc;
}

.related-story-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: 700;
}

.related-story-card h4 a {
    text-decoration: none;
    color: #1a3c5a;
    transition: color 0.2s ease;
}

.related-story-card h4 a:hover {
    color: #2a9dcc;
}

.related-story-card p {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.related-read-more {
    color: #2a9dcc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.related-read-more:hover {
    color: #1e88c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .save-the-band-landing .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .hero-section h1 {
        font-size: 1.8em;
    }

    .hero-description {
        font-size: 0.95em;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats .stat {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .submit-section,
    .stories-section {
        padding: 30px 20px;
    }

    .submit-section h2,
    .stories-section h2 {
        font-size: 1.5em;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .issues-checkboxes {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 20px;
    }

    .hero-stats .stat-number {
        font-size: 1.8em;
    }

    .community-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.6em;
    }

    .submit-section h2,
    .stories-section h2 {
        font-size: 1.4em;
    }
}