/* Keep language indicator on one line with fixed width */
#language-indicator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 72px; /* enough for flag + 'NL'/'EN' */
	white-space: nowrap;
	text-align: center;
}

@media (max-width: 480px) {
	#language-indicator {
		min-width: 64px;
	}
}
/* Blog header vertical layout */
.blog-header-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.blog-header-row {
		flex-direction: column;
		align-items: center;
	}
}
/* Reset and Base Styles - 60s Vibe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #f4e4bc 0%, #e8d5a0 100%);
    background-attachment: fixed;
}

/* Poll Button Styles - matches nav-link design */
.poll-button {
    position: relative !important;
}

.poll-button i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Poll button gets a subtle accent color */
.poll-button:hover {
    background: rgba(255, 215, 0, 0.25) !important;
    border-color: #FFD700 !important;
}

/* Notification badge for poll button */
.poll-button .poll-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
    border: 2px solid #2c1810;
}

@media (max-width: 768px) {
    .poll-button span {
        display: none;
    }
    
    .poll-button i {
        margin-right: 0;
        font-size: 1rem;
    }
}

/* Admin Poll Management Styles */
.polls-section {
    padding: 1rem 0;
}

.poll-status-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #D2691E;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.poll-status-card h4 {
    color: #D2691E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.poll-controls {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #D2691E;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.poll-controls h4 {
    color: #D2691E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.control-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.poll-history {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #D2691E;
    border-radius: 10px;
    padding: 1.5rem;
}

.poll-history h4 {
    color: #D2691E;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.polls-list {
    max-height: 400px;
    overflow-y: auto;
}

.poll-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #D2691E;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poll-item-info {
    flex: 1;
}

.poll-item-question {
    font-weight: bold;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.poll-item-date {
    color: #666;
    font-size: 0.9rem;
}

.poll-item-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-active {
    color: #4CAF50;
    font-weight: bold;
}

.status-inactive {
    color: #f44336;
    font-weight: bold;
}

.poll-item-actions {
    display: flex;
    gap: 0.5rem;
}

.poll-item-actions button {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-toggle {
    background: #2196F3;
    color: white;
}

.btn-toggle:hover {
    background: #1976D2;
}

.btn-results {
    background: #4CAF50;
    color: white;
}

.btn-results:hover {
    background: #45a049;
}

.poll-status-info h5 {
    color: #2c1810;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.poll-status-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.poll-options-preview {
    margin-top: 1rem;
}

.poll-options-preview ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.poll-options-preview li {
    margin-bottom: 0.25rem;
    color: #2c1810;
}

.no-poll, .no-polls {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.today-poll {
    border-color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.1) !important;
}

@media (max-width: 768px) {
    .control-buttons {
        flex-direction: column;
    }
    
    .poll-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .poll-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Daily Poll Modal Styles */
.poll-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.poll-modal-content {
    background: linear-gradient(135deg, #f4e4bc 0%, #e8d5a0 100%);
    border: 3px solid #D2691E;
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.poll-header {
    background: #D2691E;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poll-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.poll-close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.poll-close:hover {
    opacity: 0.7;
}

.poll-body {
    padding: 1.5rem;
}

.poll-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c1810;
    text-align: center;
    font-weight: 500;
}

.poll-options {
    margin-bottom: 2rem;
}

.poll-option {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #D2691E;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.poll-option:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.poll-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.poll-option label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.poll-option .artist {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.poll-option.user-vote {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-color: #45a049;
}

.poll-option.user-vote .artist {
    color: rgba(255, 255, 255, 0.9);
}

.vote-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #FFD700;
    color: #2c1810;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.poll-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.poll-vote-btn,
.poll-results-btn,
.poll-close-btn {
    background: #D2691E;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poll-vote-btn:hover,
.poll-results-btn:hover,
.poll-close-btn:hover {
    background: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.poll-vote-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Results Modal Styles */
.results-chart {
    margin: 1.5rem 0;
}

.result-item {
    margin-bottom: 1.5rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.result-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.result-stats {
    font-weight: bold;
    color: #D2691E;
    font-size: 1.1rem;
}

.result-bar {
    width: 100%;
    height: 25px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #D2691E;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.result-fill {
    height: 100%;
    background: linear-gradient(90deg, #D2691E 0%, #B8860B 100%);
    transition: width 1s ease-in-out;
    border-radius: 10px;
}

.result-item.user-vote .result-fill {
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
}

.result-item.user-vote .result-stats {
    color: #4CAF50;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .poll-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .poll-header {
        padding: 1rem;
    }
    
    .poll-header h2 {
        font-size: 1.3rem;
    }
    
    .poll-body {
        padding: 1rem;
    }
    
    .poll-actions {
        flex-direction: column;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .result-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer */
.site-footer {
	background: rgba(0,0,0,0.05);
	border-top: 3px solid #D2691E;
	padding: 1.5rem 0;
	margin-top: 2rem;
}

.site-footer .footer-tabs {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.site-footer .footer-tab-btn {
	background: #fff;
	color: #8B4513;
	border: 2px solid #D2691E;
	border-radius: 999px;
	padding: 0.4rem 0.9rem;
	cursor: pointer;
	font-weight: 700;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-tab-btn:hover {
	background: #FFE4B5;
	transform: translateY(-1px);
}

.site-footer .footer-tab-btn.active {
	background: #D2691E;
	color: #fff;
}

.site-footer .footer-panels {
	width: 100%;
}

.site-footer .footer-panel {
	display: none;
}

.site-footer .footer-panel.active {
	display: block;
}

.site-footer .footer-embed {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.site-footer .footer-embed iframe {
	width: 100%;
	max-width: 660px;
	border: 0;
	background: transparent;
}

/* Navigation - 60s Style */
.navbar {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    border-bottom: 3px solid #D2691E;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Logo */
.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFD700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	font-family: 'Georgia', serif;
	transition: all 0.3s ease;
	cursor: pointer;
}

.nav-logo:hover {
	transform: scale(1.05);
	color: #FFA500;
	text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.nav-logo i {
	font-size: 1.8rem;
	transition: all 0.3s ease;
}

.nav-logo:hover i {
	transform: rotate(10deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #FFD700;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.auth-buttons, .user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content - 60s Background */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.section {
    display: none;
    padding: 2rem 0;
}

.section.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - 60s Peaceful Style */
.hero {
    background: linear-gradient(135deg, #F8F4E6 0%, #E8DCC0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.08);
    z-index: 1;
}

.hero.retro-frame-pattern::after {
    display: none;
}

/* Corner extensions that go beyond the frame */
.hero.retro-frame-pattern::before {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    -webkit-background-clip: text;
    
    background-clip: text;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', serif;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #8B4513;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Get started description styling */
.get-started-section [data-i18n="get_started_desc"] {
    color: #FFD700 !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', serif;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid transparent;
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature {
    background: rgba(255,255,255,0.15);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #FF8C00;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #8B4513;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.9);
    font-family: 'Georgia', serif;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #8B4513;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Get Started Section - Integrated into Hero */
.get-started-section {
    text-align: center;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 4px solid #FFD700;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

.get-started-section h3 {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.get-started-section p {
    font-size: 1.1rem;
    color: #2C1810;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.get-started-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Remove old blog card styles since we now show full posts */

/* Editor Styles */
.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.editor-actions {
    display: flex;
    gap: 1rem;
}

    .editor-form {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Mobile editor form optimizations */
    @media (max-width: 768px) {
        .editor-form {
            padding: 1.5rem; /* Reduce padding on mobile */
            border-radius: 8px; /* Slightly smaller border radius */
        }
        
        .form-group {
            margin-bottom: 1.2rem; /* Reduce spacing between form groups */
        }
        
        .form-group label {
            font-size: 0.9rem; /* Slightly smaller labels on mobile */
            margin-bottom: 0.4rem;
        }
    }
    
    @media (max-width: 480px) {
        .editor-form {
            padding: 1rem; /* Even more compact on very small screens */
            border-radius: 6px;
        }
        
        .form-group {
            margin-bottom: 1rem; /* Minimal spacing on very small screens */
        }
        
        .form-group label {
            font-size: 0.85rem; /* Compact labels on very small screens */
            margin-bottom: 0.3rem;
        }
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

.media-tools {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Mobile media-tools optimizations */
@media (max-width: 768px) {
    .media-tools {
        gap: 0.8rem; /* Tighter spacing on mobile */
        margin-bottom: 0.8rem;
        flex-wrap: wrap; /* Allow wrapping on mobile */
    }
}

@media (max-width: 480px) {
    .media-tools {
        gap: 0.6rem; /* Very tight spacing on small screens */
        margin-bottom: 0.6rem;
        justify-content: center; /* Center buttons on very small screens */
    }
}

.media-preview {
    min-height: 100px;
    border: 2px dashed #e1e5e9;
    border-radius: 5px;
    padding: 1rem;
    background: #f8f9fa;
}

/* Drafts Grid */
/* Removed old .drafts-grid - using .drafts-list now */

.draft-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.08);
    border: 2px solid #e8d5a0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.draft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A0522D 0%, #CD853F 100%);
    border-radius: 16px 16px 0 0;
}

.draft-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.1) 0%, rgba(205, 133, 63, 0.1) 100%);
    border-radius: 0 16px 0 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.draft-card:hover::after {
    opacity: 1;
}

.draft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: #CD853F;
}

/* Language Badge Animations */
.draft-language {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.draft-language::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.draft-language:hover::before {
    left: 100%;
}

.draft-language:hover {
    transform: scale(1.05);
}

/* Button Hover Effects */
.draft-actions .btn {
    position: relative;
    overflow: hidden;
}

.draft-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.draft-actions .btn:hover::before {
    left: 100%;
}

/* Content Preview Styling */
.draft-content {
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.draft-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #A0522D 0%, #CD853F 100%);
    border-radius: 2px;
}

.draft-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Status Indicators */
.draft-status-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Draft Card Loading Animation */
.draft-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.draft-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Empty State */
.drafts-grid:empty::before {
    content: '📝';
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 60px 0 20px 0;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.drafts-grid:empty::after {
    content: 'No drafts yet. Ready to start writing?';
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
    font-weight: 500;
}

.draft-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.draft-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.4;
    flex: 1;
    font-family: 'Georgia', serif;
}

.draft-language-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.draft-language {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.draft-language:hover {
    transform: scale(1.05);
}

.draft-language.en {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    color: white;
    border: none;
}

.draft-language.nl {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
}

.draft-content {
    margin-bottom: 25px;
    position: relative;
}

.draft-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #A0522D 0%, #CD853F 100%);
    border-radius: 2px;
}

.draft-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.draft-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.draft-actions .btn {
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
}

.draft-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.draft-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.draft-actions .btn-outline {
    background: transparent;
    color: #CD853F;
    border: 2px solid #CD853F;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

.draft-actions .btn-outline:hover {
    background: #CD853F;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.4);
}

.draft-actions .btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.3);
}

.draft-actions .btn-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.draft-actions .btn i {
    font-size: 0.9rem;
}

/* Drafts Page Header - removed since header no longer exists */
/* .drafts-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    color: white;
    border-radius: 20px;
    margin: 0 20px 40px 20px;
    border: 2px solid #8B4513;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.drafts-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Georgia', serif;
    color: #FFD700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.drafts-page-header p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
} */

/* Admin Dashboard */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    color: #666;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
}

.pending-posts {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pending-list {
    margin-top: 1rem;
}

.pending-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Buttons - 60s Groovy Style */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    color: white;
    border-color: #FF6B6B;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    border-color: #4ECDC4;
}

.btn-secondary {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    color: white;
    border-color: #A0522D;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.6);
}

.btn-outline {
    background: transparent;
    color: #CD853F;
    border: 2px solid #CD853F;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: #CD853F;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.4);
}

.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Profile welcome message styling */
.profile-welcome-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.profile-welcome-message .welcome-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.profile-welcome-message .welcome-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.profile-welcome-message .welcome-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.profile-welcome-message .btn {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s ease;
}

.profile-welcome-message .btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile responsive welcome message */
@media (max-width: 768px) {
    .profile-welcome-message {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-welcome-message .welcome-content h3 {
        font-size: 1.5rem;
    }
    
    .profile-welcome-message .welcome-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-welcome-message {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .profile-welcome-message .welcome-content h3 {
        font-size: 1.3rem;
    }
    
    .profile-welcome-message .welcome-content p {
        font-size: 0.9rem;
    }
}

/* Forgot password link styling */
.forgot-password-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Mobile responsive forgot password link */
@media (max-width: 768px) {
    .forgot-password-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .forgot-password-link {
        font-size: 0.8rem;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

/* Media Tabs */
.media-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-bottom-color: #667eea;
    color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Notifications */
.notifications {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
}

/* Discogs Modal Styles */
.discogs-modal-content {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input-group input {
    flex: 1;
}

.search-filters {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-filters label {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.search-filters select {
    min-width: 120px;
}

.search-results {
    margin-top: 2rem;
    flex: 1;
    overflow-y: auto;
    max-height: 60vh;
}

.search-results h4 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

.result-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.result-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.result-item .no-image {
    width: 100%;
    height: 150px;
    background: #e9ecef;
    border-radius: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #6c757d;
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
}

.result-item h5 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
}

.result-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #667eea;
    font-size: 1.1rem;
}

.loading i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination button.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Search section styling */
.search-section {
    flex-shrink: 0;
}

/* Custom scrollbar for search results */
.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* Ensure modal body can scroll */
.discogs-modal-content .modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.notification {
    background: white;
    color: #333;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-left: 4px solid #28a745;
    animation: slideInRight 0.3s ease;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.warning {
    border-left-color: #ffc107;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* TinyMCE Customization */
.tox-tinymce {
    border-radius: 5px !important;
    border: 2px solid #e1e5e9 !important;
}

.tox-tinymce:focus-within {
    border-color: #667eea !important;
}

/* Editor toolbar */
.editor-toolbar {
	background: #fff;
	border: 2px solid #e1e5e9;
	border-radius: 6px;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
	margin-bottom: 0.5rem;
	flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.tool-btn {
	border: none;
	background: #f5f7fb;
	padding: 0.5rem 0.6rem;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.05s ease;
	color: #333;
}

.tool-btn:hover { background: #e9eef7; }
.tool-btn:active { transform: translateY(1px); }

.editor-area {
	min-height: 300px;
	background: #fff;
	border: 2px solid #e1e5e9;
	border-radius: 6px;
	padding: 1rem;
	line-height: 1.7;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}

/* Reorder mode styles */
.tool-btn#toggle-reorder-btn.active {
	background: #333;
	color: #fff;
}
.post-block {
	border: 1px dashed #ccc;
	border-radius: 6px;
	padding: 8px;
	margin: 10px 0;
	position: relative;
}
.post-block-controls {
	position: absolute;
	right: 8px;
	top: 8px;
	display: flex;
	gap: 6px;
}
.post-block-controls button {
	border: 1px solid #ccc;
	background: #f9f9f9;
	padding: 2px 6px;
	border-radius: 4px;
	cursor: pointer;
}
.post-block-content {
	min-height: 20px;
}

.editor-area:focus {
	outline: none;
	border-color: #667eea;
}

.editor-area h1, .editor-area h2, .editor-area h3 { margin: 0.8rem 0; }
.editor-area blockquote {
	border-left: 4px solid #667eea;
	padding-left: 0.75rem;
	color: #555;
	margin: 0.8rem 0;
}

.editor-area img { max-width: 100%; height: auto; border-radius: 6px; }
.divider { 
    width: 1px; 
    height: 20px; 
    background: #e1e5e9; 
    display: inline-block; 
    margin: 0 0.25rem; 
    flex-shrink: 0; /* Prevent divider from shrinking */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in, opacity 0.2s ease-in;
        padding: 2rem 0;
        gap: 1rem;
        opacity: 0;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transition: left 0.3s ease-in, opacity 0.2s ease-in;
    }
    
    .nav-menu.closing {
        left: 100%;
        transition: left 0.3s ease-out, opacity 0.2s ease-out;
        opacity: 0.8;
    }

    .hamburger {
        display: flex;
        transition: transform 0.3s ease;
    }
    
    .hamburger.active {
        transform: rotate(90deg);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .editor-header {
        flex-direction: column;
        gap: 0.8rem; /* Tighter spacing on mobile */
        align-items: flex-start;
        margin-bottom: 1.5rem; /* Reduce bottom margin on mobile */
    }

    .editor-actions {
        width: 100%;
        justify-content: space-between;
        gap: 0.4rem; /* Tighter spacing between buttons on mobile */
        flex-wrap: wrap; /* Allow buttons to wrap if needed */
        align-items: stretch; /* Ensure buttons have consistent height */
    }
    
    .editor-actions .btn {
        flex: 1; /* Make buttons expand to fill available space */
        min-width: 0; /* Allow buttons to shrink below min-width if needed */
        justify-content: center; /* Center button content */
        text-align: center; /* Center button text */
    }

    .media-tools {
        flex-direction: column;
    }

    .blog-grid, .drafts-grid {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .pending-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Mobile button adjustments */
    .btn {
        font-size: 0.875rem; /* 14px - smaller font for mobile */
        padding: 0.625rem 1.25rem; /* Slightly smaller padding */
        letter-spacing: 0.5px; /* Tighter letter spacing */
    }
    
    .btn-large {
        font-size: 1rem; /* 16px for large buttons on mobile */
        padding: 0.75rem 1.5rem;
    }
    
    .draft-actions .btn {
        font-size: 0.8rem; /* Even smaller for draft action buttons */
        padding: 0.5rem 1rem;
    }
    
    /* Editor action buttons - New Post, Save Draft, Submit for Review */
    .editor-actions .btn {
        font-size: 0.75rem; /* Smaller font for better mobile fit */
        padding: 0.5rem 0.8rem; /* Compact padding for mobile */
        min-width: 100px; /* Smaller minimum width for mobile */
        min-height: 38px; /* Touch-friendly but compact height */
        border-radius: 6px; /* More rounded corners for mobile */
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflow text */
        text-overflow: ellipsis; /* Show ellipsis for long text */
    }
    
    .editor-actions .btn-outline {
        font-size: 0.7rem; /* New Post and Save Draft buttons - compact */
        padding: 0.45rem 0.7rem;
    }
    
    .editor-actions .btn-primary {
        font-size: 0.75rem; /* Submit for Review button - compact */
        padding: 0.5rem 0.8rem;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    /* Extra small screen button adjustments */
    .btn {
        font-size: 0.8rem; /* 13px - even smaller for very small screens */
        padding: 0.5rem 1rem; /* Compact padding */
        letter-spacing: 0.3px; /* Very tight letter spacing */
    }
    
    .btn-large {
        font-size: 0.9rem; /* 14px for large buttons on very small screens */
        padding: 0.625rem 1.25rem;
    }
    
    .draft-actions .btn {
        font-size: 0.75rem; /* 12px for draft action buttons on very small screens */
        padding: 0.4rem 0.8rem;
    }
    
    /* Editor action buttons for very small screens */
    .editor-actions .btn {
        font-size: 0.7rem; /* 11px for editor action buttons on very small screens */
        padding: 0.4rem 0.6rem; /* Very compact padding */
        min-width: 90px; /* Smaller minimum width for very small screens */
        min-height: 36px; /* Compact but touch-friendly height */
        border-radius: 5px; /* More rounded corners for very small screens */
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflow text */
        text-overflow: ellipsis; /* Show ellipsis for long text */
    }
    
    .editor-actions .btn-outline {
        font-size: 0.65rem; /* New Post and Save Draft buttons on very small screens */
        padding: 0.35rem 0.5rem;
    }
    
            .editor-actions .btn-primary {
        font-size: 0.7rem; /* Submit for Review button on very small screens */
        padding: 0.4rem 0.6rem; /* Very compact padding */
        font-weight: 600;
    }
    
    /* Navigation button adjustments for very small screens */
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .auth-buttons .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 

/* Drafts page improvements */
.drafts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.drafts-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

/* Removed duplicate styles - using the updated version below */

.empty-drafts {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.empty-drafts p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.empty-drafts .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .drafts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .draft-card-content {
        padding: 1.5rem;
    }
    
    .draft-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .draft-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .drafts-page-header h1 {
        font-size: 2.5rem;
    }
} 

.draft-card .draft-preview {
    margin-bottom: 1.5rem;
}

.draft-card .preview-image {
    margin-bottom: 12px;
}

.draft-card .preview-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.draft-card .preview-image img:hover {
    transform: scale(1.02);
}

.draft-card .preview-text {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
} 

/* Draft View Modal Styles */
.draft-view-content {
    max-width: 800px;
    width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.draft-view-content .modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.draft-view-content .modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
    min-height: 200px;
    word-wrap: break-word;
    word-break: break-word;
}

.draft-view-content .draft-view-content {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #333;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    overflow-wrap: break-word;
}

.draft-view-content .draft-view-image {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    max-width: 100%;
    height: auto;
}

.draft-view-content .draft-view-image:hover {
    transform: scale(1.02);
}

.draft-view-content .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    flex-shrink: 0;
}

.draft-view-content .modal-footer .btn {
    min-width: 120px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .draft-view-content {
        width: 95vw;
        margin: 20px;
        max-height: 85vh;
    }
    
    .draft-view-content .modal-body {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .draft-view-content .modal-footer {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .draft-view-content .modal-footer .btn {
        width: 100%;
    }
} 

/* Ensure modal is scrollable */
#draft-view-modal {
    overflow: hidden;
}

#draft-view-modal .modal-content {
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Additional text wrapping fixes */
.draft-view-content .modal-body * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
} 

.draft-view-content .modal-body p,
.draft-view-content .modal-body div,
.draft-view-content .modal-body span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
} 

/* Spotify Embed Styling */
.spotify-embed-container {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #1DB954;
    position: relative;
}

.spotify-embed-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.spotify-preview-info {
    background: #1DB954;
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Draft card Spotify preview - REMOVED to prevent duplicate players */
/* .preview-spotify {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.preview-spotify iframe {
    width: 100%;
    height: 80px;
    border: none;
} */

.spotify-preview-label {
    background: #1DB954;
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* View modal Spotify styling */
.draft-view-content .spotify-embed-container {
    margin: 20px 0;
    max-width: 100%;
}

.draft-view-content .spotify-preview-info {
    font-size: 1rem;
    padding: 10px 20px;
}

/* Responsive Spotify embeds */
@media (max-width: 768px) {
    .spotify-embed-container {
        margin: 10px 0;
    }
    
    .spotify-embed-container iframe {
        height: 120px !important;
    }
    
    .spotify-preview-info,
    .spotify-preview-label {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
} 

/* Post Editor Styles */
#post-editor {
    min-height: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    line-height: 1.6;
    position: relative;
    cursor: text;
    transition: border-color 0.2s ease;
}

#post-editor:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    outline: none;
}

#post-editor:empty:before {
    content: attr(data-i18n-placeholder);
    color: #6c757d;
    font-style: italic;
    pointer-events: none;
}

/* Editor instruction styling */
.editor-instruction {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    animation: fadeIn 0.3s ease-in;
}

.editor-instruction .instruction-content {
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Embed placeholder styling */
.embed-placeholder {
    min-height: 50px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    color: #6c757d;
    font-style: italic;
    animation: pulse 2s infinite;
}

.embed-placeholder:before {
    content: "Loading embed...";
}

.embed-placeholder.error:before {
    content: "Embed not found";
    color: #dc3545;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

#post-editor img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

#post-editor img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#post-editor .spotify-embed-container {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#post-editor .spotify-embed-container iframe {
    border: none;
    width: 100%;
}

#post-editor .spotify-preview-info {
    background: #1DB954;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
} 

/* Apple Music Embed Styling */
.apple-music-embed-container {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #fff;
}

.apple-music-embed-container iframe {
    border: none;
    width: 100%;
    max-width: 660px;
    display: block;
    margin: 0 auto;
}

.apple-music-preview-info {
    background: #FA243C;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}

/* Apple Music preview in draft cards - REMOVED to prevent duplicate players */
/* .preview-apple-music {
    margin: 10px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.preview-apple-music iframe {
    width: 100%;
    height: 80px;
    border: none;
} */

.apple-music-preview-label {
    background: #FA243C;
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    text-align: center;
    font-weight: 500;
}

/* Responsive Apple Music embeds */
@media (max-width: 768px) {
    .apple-music-embed-container iframe {
        max-width: 100%;
    }
    
    /* Removed preview-apple-music iframe height rule to prevent duplicate players */
} 

/* Blog Section - 60s Peaceful Style */
#blog {
    background: linear-gradient(135deg, #F8F4E6 0%, #E8DCC0 100%);
    min-height: 100vh;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

#blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.05);
    z-index: 1;
}

#blog.retro-groovy-lines::after {
    display: none;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.blog-section-header h1 {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 900;
    font-family: 'Georgia', serif;
    text-shadow: 3px 3px 6px rgba(139, 69, 19, 0.3);
    letter-spacing: 3px;
}

.blog-section-header p {
    font-size: 1.3rem;
    color: #654321;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Blog Grid Layout - Full Posts with 60s Style */
#blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Full Blog Post Styling - 60s Vibe */
.blog-post-full {
    width: 100%;
}

.blog-post {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
    overflow: hidden;
    border: 3px solid #DEB887;
    transition: all 0.4s ease;
    position: relative;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFD700 100%);
}

.blog-post:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
    border-color: #FFD700;
}

.post-header {
    padding: 40px 40px 30px 40px;
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    border-bottom: 2px solid #CD853F;
    position: relative;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="groovy" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="rgba(139,69,19,0.1)"/><circle cx="10" cy="10" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="30" cy="30" r="2" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23groovy)"/></svg>');
    opacity: 0.3;
}

.post-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #8B4513;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
    position: relative;
    z-index: 2;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #654321;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.post-author {
    color: #8B4513;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
}

.post-content {
    padding: 40px;
    line-height: 1.8;
    color: #2c1810;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 2rem 0 1rem 0;
    color: #8B4513;
    font-weight: 900;
    line-height: 1.3;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.post-content h1 { font-size: 2.2rem; }
.post-content h2 { font-size: 1.9rem; }
.post-content h3 { font-size: 1.6rem; }
.post-content h4 { font-size: 1.4rem; }

.post-content p {
    margin: 1.5rem 0;
    text-align: justify;
    font-weight: 500;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid #DEB887;
}

.post-content img:hover {
    transform: scale(1.03);
    border-color: #FFD700;
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.3);
}

.post-content blockquote {
    border-left: 5px solid #FFD700;
    padding: 25px 35px;
    margin: 30px 0;
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    border-radius: 0 20px 20px 0;
    font-style: italic;
    color: #8B4513;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 35px;
}

.post-content li {
    margin: 12px 0;
    line-height: 1.7;
    font-weight: 500;
}

.post-footer {
    padding: 30px 40px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-top: 2px solid #CD853F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.post-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="peace" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="10" fill="rgba(255,215,0,0.1)"/><path d="M25 15 L25 35 M15 25 L35 25" stroke="rgba(255,215,0,0.1)" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23peace)"/></svg>');
    opacity: 0.2;
}

.post-tags {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.post-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.post-actions .btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: 2px solid #FFD700;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.post-actions .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Spotify and Apple Music embeds in full posts - 60s Style */
.post-content .spotify-embed-container,
.post-content .apple-music-embed-container {
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    border: 3px solid #FFD700;
}

.post-content .spotify-embed-container iframe,
.post-content .apple-music-embed-container iframe {
    width: 100%;
    border: none;
}

.post-content .spotify-preview-info,
.post-content .apple-music-preview-info {
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

/* Groovy Animations */
@keyframes groovyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(5px) rotate(-1deg); }
    75% { transform: translateY(-5px) rotate(0.5deg); }
}

@keyframes flowerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Responsive adjustments for 60s style */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .feature i {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-section-header h1 {
        font-size: 2.5rem;
    }
    
    .post-title {
        font-size: 2.2rem;
    }

    /* Stack post meta vertically on mobile */
    .post-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .post-language,
    .post-type {
        display: inline-block;
    }
    
    .post-header,
    .post-content,
    .post-footer {
        padding: 25px;
    }
    
    /* Post actions buttons on mobile */
    .post-actions {
        gap: 10px; /* Tighter spacing on mobile */
        flex-wrap: wrap; /* Allow wrapping on mobile */
        justify-content: center; /* Center buttons on mobile */
        width: 100%;
    }

    /* Make status, rating and action blocks span full post width */
    .post-tags,
    .post-rating-section,
    .post-actions {
        width: 100%;
    }

    .post-tags .tag {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .post-actions .btn {
        font-size: 0.8rem; /* Smaller font on mobile */
        padding: 6px 12px; /* Compact padding on mobile */
        min-width: 80px; /* Ensure minimum touch-friendly width */
        min-height: 36px; /* Touch-friendly height */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    /* Smaller post title on small phones */
    .post-title {
        font-size: 1.8rem;
    }

    .post-meta {
        gap: 6px;
        font-size: 1rem;
    }

    /* Stack footer items vertically on small phones */
    .post-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .post-tags {
        justify-content: center;
        width: 100%;
    }

    .post-actions {
        width: 100%;
        justify-content: center;
    }

    .post-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .post-rating-section {
        width: 100%;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .stat {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .get-started-section {
        padding: 1.5rem 1rem;
    }
    
    .get-started-section h3 {
        font-size: 1.5rem;
    }
    
    /* Post actions buttons on very small screens */
    .post-actions {
        gap: 8px; /* Very tight spacing on small screens */
        justify-content: center;
    }
    
    .post-actions .btn {
        font-size: 0.75rem; /* Even smaller font on very small screens */
        padding: 5px 10px; /* Very compact padding */
        min-width: 70px; /* Smaller minimum width */
        min-height: 32px; /* Compact height */
    }
} 

/* Removed duplicate get-started-section CSS */

/* Responsive Design for What You Can Do */
/* Removed old responsive CSS for What You Can Do section */ 

/* Preview Labels for Music Embeds - No Duplicate Players */
.preview-spotify-label,
.preview-apple-music-label {
    margin: 10px 0;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.preview-spotify-label .spotify-preview-label,
.preview-apple-music-label .apple-music-preview-label {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
} 

/* Retro Line Pattern Backgrounds - 60s Groovy Style */
.retro-frame-pattern {
    position: relative;
}

.retro-frame-pattern::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 8px solid transparent;
    background: 
        linear-gradient(90deg, #008080 0%, #008080 25%, transparent 25%, transparent 75%, #008080 75%, #008080 100%) 0 0,
        linear-gradient(0deg, #008080 0%, #008080 25%, transparent 25%, transparent 75%, #008080 75%, #008080 100%) 0 0,
        linear-gradient(90deg, #FFD700 0%, #FFD700 25%, transparent 25%, transparent 75%, #FFD700 75%, #FFD700 100%) 8px 8px,
        linear-gradient(0deg, #FFD700 0%, #FFD700 25%, transparent 25%, transparent 75%, #FFD700 75%, #FFD700 100%) 8px 8px,
        linear-gradient(90deg, #D2691E 0%, #D2691E 25%, transparent 25%, transparent 75%, #D2691E 75%, #D2691E 100%) 16px 16px,
        linear-gradient(0deg, #D2691E 0%, #D2691E 25%, transparent 25%, transparent 75%, #D2691E 75%, #D2691E 100%) 16px 16px,
        linear-gradient(90deg, #FF6347 0%, #FF6347 25%, transparent 25%, transparent 75%, #FF6347 75%, #FF6347 100%) 24px 24px,
        linear-gradient(0deg, #FF6347 0%, #FF6347 25%, transparent 25%, transparent 75%, #FF6347 75%, #FF6347 100%) 24px 24px;
    background-size: 32px 32px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.15;
}

.retro-curved-stripes {
    position: relative;
    overflow: hidden;
}

.retro-curved-stripes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, transparent 0, transparent 40px, #FF8C00 40px, #FF8C00 48px, transparent 48px),
        radial-gradient(circle at 20% 80%, transparent 0, transparent 32px, #D2691E 32px, #D2691E 40px, transparent 40px),
        radial-gradient(circle at 20% 80%, transparent 0, transparent 24px, #8B4513 24px, #8B4513 32px, transparent 32px),
        radial-gradient(circle at 20% 80%, transparent 0, transparent 16px, #008080 16px, #008080 24px, transparent 24px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 40px, #FF8C00 40px, #FF8C00 48px, transparent 48px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 32px, #D2691E 32px, #D2691E 40px, transparent 40px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 24px, #8B4513 24px, #8B4513 32px, transparent 32px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 16px, #008080 16px, #008080 24px, transparent 24px);
    background-size: 200px 200px;
    z-index: 1;
    opacity: 0.12;
}

/* Enhanced retro patterns with more complex designs */
.retro-groovy-lines {
    position: relative;
}

.retro-groovy-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, #FFD700 40%, #FFD700 45%, transparent 45%),
        linear-gradient(-45deg, transparent 40%, #FF6347 40%, #FF6347 45%, transparent 45%),
        linear-gradient(135deg, transparent 40%, #008080 40%, #008080 45%, transparent 45%),
        linear-gradient(-135deg, transparent 40%, #D2691E 40%, #D2691E 45%, transparent 45%);
    background-size: 60px 60px;
    z-index: 1;
    opacity: 0.1;
}

/* Peace sign inspired pattern */
.retro-peace-pattern {
    position: relative;
}

.retro-peace-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, transparent 0, transparent 25px, #FFD700 25px, #FFD700 30px, transparent 30px),
        radial-gradient(circle at 70% 30%, transparent 0, transparent 25px, #FFD700 25px, #FFD700 30px, transparent 30px),
        radial-gradient(circle at 50% 70%, transparent 0, transparent 25px, #FFD700 25px, #FFD700 30px, transparent 30px);
    background-size: 100px 100px;
    z-index: 1;
    opacity: 0.08;
}

/* Responsive adjustments for retro patterns */
@media (max-width: 768px) {
    .retro-frame-pattern::before {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        background-size: 24px 24px;
    }
    
    .retro-curved-stripes::before {
        background-size: 150px 150px;
    }
    
    .retro-groovy-lines::before {
        background-size: 40px 40px;
    }
    
    .retro-peace-pattern::before {
        background-size: 80px 80px;
    }
} 

/* "What You Can Do" Section - 60s Peace Style */
.what-you-can-do {
    background: linear-gradient(135deg, #E6D3A3 0%, #D4C4A8 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.what-you-can-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="peace" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="25" fill="none" stroke="rgba(139,69,19,0.1)" stroke-width="2"/><path d="M40,15 L40,65 M25,40 L55,40" stroke="rgba(255,215,0,0.1)" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23peace)"/></svg>');
    opacity: 0.3;
}

.what-you-can-do.retro-curved-stripes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, transparent 0, transparent 60px, rgba(255,140,0,0.08) 60px, rgba(255,140,0,0.08) 70px, transparent 70px),
        radial-gradient(circle at 20% 80%, transparent 0, transparent 50px, rgba(210,105,30,0.06) 50px, rgba(210,105,30,0.06) 60px, transparent 60px),
        radial-gradient(circle at 20% 80%, transparent 0, transparent 40px, rgba(139,69,19,0.05) 40px, rgba(139,69,19,0.05) 50px, transparent 50px),
        radial-gradient(circle at 20% 80%, transparent 0, transparent 30px, rgba(0,128,128,0.04) 30px, rgba(0,128,128,0.04) 40px, transparent 40px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 60px, rgba(255,140,0,0.08) 60px, rgba(255,140,0,0.08) 70px, transparent 70px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 50px, rgba(210,105,30,0.06) 50px, rgba(210,105,30,0.06) 60px, transparent 60px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 40px, rgba(139,69,19,0.05) 40px, rgba(139,69,19,0.05) 50px, transparent 50px),
        radial-gradient(circle at 80% 20%, transparent 0, transparent 30px, rgba(0,128,128,0.04) 30px, rgba(0,128,128,0.04) 40px, transparent 40px);
    background-size: 300px 300px;
    z-index: 1;
    opacity: 0.08;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        padding: 2rem 1rem;
    }
    
    .feature i {
        font-size: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat {
        padding: 1rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .get-started-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .get-started-section h3 {
        font-size: 1.8rem;
    }
    
    .get-started-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .get-started-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }

    /* Published indicator, rating, and read-more button stacked on cards */
    .post-card .published-tag,
    .post-card .post-rating-section,
    .post-card .read-more,
    .post-card .view-post-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.25rem 0;
    }

    .post-card .post-rating-section {
        justify-content: center;
    }

    .post-card .rating-buttons {
        justify-content: center;
        width: 100%;
    }

    .post-card .rating-btn {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .stat {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .get-started-section {
        padding: 1.5rem 1rem;
    }
    
    .get-started-section h3 {
        font-size: 1.5rem;
    }
}

/* Language Toggle */
.language-toggle {
    margin-left: 1rem;
}

.lang-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border: 2px solid #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.lang-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.lang-btn i {
    font-size: 1rem;
    color: #8B4513;
}

.current-lang {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Responsive Language Toggle */
@media (max-width: 768px) {
    .language-toggle {
        margin-left: 0.5rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .current-lang {
        font-size: 0.8rem;
    }
}

/* First Time Popup Modal */
.first-time-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.first-time-content {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    margin: 2% auto;
    padding: 0;
    border: 3px solid #FFD700;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.first-time-content .modal-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 1.5rem 2rem;
    border-radius: 17px 17px 0 0;
    border-bottom: 3px solid #8B4513;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.first-time-content .modal-header h2 {
    margin: 0;
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    font-family: 'Georgia', serif;
}

.first-time-content .modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #8B4513;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.first-time-content .modal-close:hover {
    background: rgba(139, 69, 19, 0.2);
    transform: scale(1.1);
}

.first-time-content .modal-body {
    padding: 2rem;
}

.first-time-content .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.first-time-content .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-weight: 900;
    font-family: 'Georgia', serif;
    color: #FFD700;
}

.first-time-content .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', serif;
}

.first-time-content .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #F5F5DC;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    line-height: 1.6;
}

.first-time-content .hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.first-time-content .feature {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.first-time-content .feature:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,215,0,0.6);
}

.first-time-content .feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.first-time-content .feature h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-family: 'Georgia', serif;
}

.first-time-content .feature p {
    font-size: 0.9rem;
    color: #F5F5DC;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    line-height: 1.5;
}

.first-time-content .get-started-section {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255,215,0,0.3);
    margin-top: 2rem;
}

.first-time-content .get-started-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.first-time-content .get-started-section p {
    font-size: 1rem;
    color: #F5F5DC;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.first-time-content .get-started-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.first-time-content .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
}

.first-time-content .btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    color: white;
    border-color: #FFD700;
}

.first-time-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.first-time-content .btn-outline {
    background: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.first-time-content .btn-outline:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responsive adjustments for first-time modal */
@media (max-width: 768px) {
    .first-time-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .first-time-content .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .first-time-content .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .first-time-content .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .first-time-content .get-started-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .first-time-content .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Navigation visibility for guest users */
#editor-link,
#drafts-link,
#admin-link {
    display: none;
}

/* Show navigation links for authenticated users */
.authenticated #editor-link,
.authenticated #drafts-link,
.authenticated #admin-link {
    display: inline-block;
}

/* Post language display */
.post-language, .draft-language {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-left: 10px;
}

.post-language {
    font-size: 0.9em;
    padding: 6px 12px;
}

/* Language toggle and indicator */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

#lang-toggle {
    min-width: 50px;
    height: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#lang-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.language-indicator {
    font-size: 0.9em;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    padding: 4px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
}

/* Post language display */

/* Language Badges */
.draft-language-badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.draft-language {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.draft-language.en {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.draft-language.nl {
    background-color: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #e1bee7;
}

.post-language {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px;
}

.post-language:before {
    content: "🌍 ";
}

/* Draft Card Updates */
.draft-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.draft-title {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    flex: 1;
}

.draft-content {
    margin-bottom: 15px;
}

.draft-content p {
    margin: 0;
    color: #666;
    line-height: 1.4;
}

/* Draft Cards - Modern Design */
.drafts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.drafts-list:empty::before {
    content: '📝';
    display: block;
    text-align: center;
    font-size: 4rem;
    margin: 60px 0 20px 0;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

.drafts-list:empty::after {
    content: 'No drafts yet. Ready to start writing?';
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Pending Section */
.pending-section {
    margin-bottom: 2rem;
}

.pending-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.pending-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Responsive Design for Drafts */
@media (max-width: 768px) {
    .drafts-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .draft-card {
        padding: 20px;
    }
    
    .draft-title {
        font-size: 1.2rem;
    }
    
    .draft-actions {
        flex-direction: column;
    }
    
    .draft-actions .btn {
        width: 100%;
    }
}

/* Subject Type Badges */
.post-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

.post-type:contains("song") {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.post-type:contains("album") {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.post-type:contains("artist") {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

.badge-type {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: 8px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Enhanced Discogs Results Styling */
.result-item {
    position: relative;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.result-info {
    padding: 0.5rem;
}

.result-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.result-artist, .result-year, .result-genre, .result-country, .result-format, .result-catno {
    font-size: 0.8rem;
    margin: 0.25rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-artist i, .result-year i, .result-genre i, .result-country i, .result-format i, .result-catno i {
    color: #667eea;
    width: 16px;
}

.result-actions {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

.view-details-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

/* Discogs Details Modal Styling */
.discogs-details-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.discogs-details-content {
    padding: 0;
}

.discogs-details .details-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
}

.discogs-details .details-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.discogs-details .details-header .artists {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.discogs-details .details-content {
    padding: 1.5rem;
}

.discogs-details .basic-info h4 {
    margin: 0 0 1rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discogs-details .basic-info h4 i {
    color: #667eea;
}

.discogs-details .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.discogs-details .info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    transition: all 0.2s ease;
}

.discogs-details .info-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.discogs-details .info-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.discogs-details .info-value {
    flex: 1;
    color: #555;
}

.discogs-details .insert-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
}

.discogs-details .tracklist-section,
.discogs-details .community-section,
.discogs-details .notes-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.discogs-details .tracklist-section h4,
.discogs-details .community-section h4,
.discogs-details .notes-section h4 {
    margin: 0 0 1rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discogs-details .tracklist-section h4 i,
.discogs-details .community-section h4 i,
.discogs-details .notes-section h4 i {
    color: #667eea;
}

.discogs-details .tracklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.discogs-details .track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

.discogs-details .track-position {
    font-weight: 600;
    color: #667eea;
    min-width: 30px;
}

.discogs-details .track-title {
    flex: 1;
    font-weight: 500;
}

.discogs-details .track-duration {
    color: #666;
    font-size: 0.9rem;
}

.discogs-details .community-stats p {
    margin: 0.25rem 0;
    color: #555;
}

.discogs-details .discogs-link {
    margin-top: 1.5rem;
    text-align: center;
}

.discogs-details .discogs-link .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.discogs-details .insert-actions {
    margin: 1.5rem 0;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.discogs-details .insert-all-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.discogs-details .insert-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Styling for inserted Discogs content in posts */
.album-tracklist {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.album-tracklist h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.1rem;
}

.tracklist-ordered {
    margin: 0;
    padding-left: 1.5rem;
}

.tracklist-ordered li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-title {
    font-weight: 500;
    color: #333;
}

.track-duration {
    color: #666;
    font-size: 0.9rem;
    font-family: monospace;
}

.discogs-community {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.discogs-community h4 {
    margin: 0 0 1rem 0;
    color: #856404;
    font-size: 1.1rem;
}

.community-info p {
    margin: 0.5rem 0;
    color: #856404;
}

.discogs-notes {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #e7f3ff;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    font-style: italic;
}

.discogs-notes p {
    margin: 0;
    color: #004085;
}

.discogs-release-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.discogs-release-info h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
}

.release-details p {
    margin: 0.5rem 0;
    color: #555;
}

.release-details strong {
    color: #333;
    min-width: 100px;
    display: inline-block;
}

/* Email Verification Page Styling */
.verification-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
}

.verification-header {
    text-align: center;
    margin-bottom: 3rem;
}

.verification-header h1 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.verification-header p {
    color: #666;
    font-size: 1.1rem;
}

.verification-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.verification-success,
.verification-error {
    padding: 3rem 2rem;
    text-align: center;
}

.verification-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.verification-error i {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.verification-success h2,
.verification-error h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.verification-success p,
.verification-error p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.verification-actions .btn {
    min-width: 150px;
}

/* Mobile responsiveness for verification page */
@media (max-width: 768px) {
    .verification-container {
        margin: 2rem auto;
        padding: 1rem;
    }
    
    .verification-header h1 {
        font-size: 2rem;
    }
    
    .verification-success,
    .verification-error {
        padding: 2rem 1.5rem;
    }
    
    .verification-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .verification-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Subject Type Dropdown Styling */
#post-subject-type {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
}

#post-subject-type:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background: white;
}

#post-subject-type option {
    padding: 8px;
    background: white;
    color: #495057;
}

/* Mobile responsive adjustments for form elements */
@media (max-width: 768px) {
    /* Form controls on mobile */
    .form-control {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    /* Subject type dropdown on mobile */
    #post-subject-type {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    /* Post title input on mobile */
    #post-title {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    /* Language selector on mobile */
    #post-language {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    /* Editor toolbar on mobile */
    .editor-toolbar {
        padding: 0.4rem;
        gap: 0.2rem;
        justify-content: center; /* Center buttons when they wrap */
        flex-wrap: wrap;
        max-width: 100%;
        overflow: hidden;
        min-height: auto; /* Allow height to adjust based content */
        align-items: flex-start; /* Align items to top when wrapping */
        /* Force 2-row layout on mobile */
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 buttons per row */
        grid-template-rows: repeat(2, auto); /* Exactly 2 rows */
        gap: 0.3rem;
        align-items: center;
    }
    
    /* Override flexbox for mobile grid layout */
    .editor-toolbar > * {
        justify-self: center;
        width: auto;
        min-width: 40px;
    }
    
    /* Ensure dividers work well in grid layout */
    .editor-toolbar .divider {
        grid-column: span 1; /* Take up one grid cell */
        justify-self: center;
        align-self: center;
    }
    
    /* Editor toolbar buttons on mobile */
    .tool-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-width: 40px;
        flex-shrink: 0; /* Prevent buttons from shrinking too much */
    }
    
    /* Discogs details modal mobile adjustments */
    .discogs-details-modal .modal-content {
        max-width: 95%;
        margin: 5% auto;
    }
    
    .discogs-details .info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .discogs-details .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .discogs-details .info-label {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .discogs-details .insert-btn {
        align-self: stretch;
        width: 100%;
    }
    
    /* Mobile divider adjustments */
    .editor-toolbar .divider {
        height: 16px; /* Slightly smaller on mobile */
        margin: 0 0.15rem;
    }
    
    /* Media tool buttons on mobile */
    .media-tools .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screen form adjustments */
    .form-control {
        font-size: 0.85rem;
        padding: 0.625rem 0.875rem;
    }
    
    #post-subject-type {
        font-size: 0.85rem;
        padding: 0.625rem 0.875rem;
    }
    
    #post-title {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
    
    #post-language {
        font-size: 0.85rem;
        padding: 0.625rem 0.875rem;
    }
    
    /* Editor toolbar on very small screens */
    .editor-toolbar {
        padding: 0.3rem;
        gap: 0.2rem;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
        overflow: hidden;
        min-height: auto;
        align-items: flex-start;
        /* Force 2-row layout on very small screens */
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 buttons per row */
        grid-template-rows: repeat(2, auto); /* Exactly 2 rows */
        gap: 0.25rem;
        align-items: center;
    }
    
    /* Ensure dividers work well in grid layout on very small screens */
    .editor-toolbar .divider {
        grid-column: span 1;
        justify-self: center;
        align-self: center;
    }
    
    .tool-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        min-width: 36px;
        flex-shrink: 0;
    }
    
    /* Very small screen divider adjustments */
    .editor-toolbar .divider {
        height: 14px; /* Even smaller on very small screens */
        margin: 0 0.1rem;
    }
    
    .media-tools .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.4rem;
    }
}

/* Profile Albums List Styles */
.albums-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.album-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.album-card {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.album-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
    transform: translateY(-1px);
}

.album-card > div {
    display: flex;
    gap: 12px;
    align-items: center;
}

.album-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f8f9fa;
    flex-shrink: 0;
}

.album-remove-btn {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: #fff;
    border: 1px solid #dc3545;
    color: #dc3545;
    cursor: pointer;
    flex-shrink: 0;
}

.album-remove-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
    transform: scale(1.05);
}

/* Mobile responsive for profile albums */
@media (max-width: 768px) {
    .albums-list {
        gap: 12px;
        margin-top: 12px;
    }
    
    .album-item {
        gap: 12px;
    }
    
    .album-card {
        padding: 12px;
    }
    
    .album-card img {
        width: 50px;
        height: 50px;
    }
    
    .album-remove-btn {
        min-width: 90px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Admin Dashboard Enhanced Styles */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #667eea;
    background-color: #f8f9fa;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background-color: #f8f9fa;
}

.tab-btn i {
    font-size: 0.9rem;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Members Section */
.members-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.members-search {
    margin-bottom: 1.5rem;
}

.members-search input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.members-search input:focus {
    outline: none;
    border-color: #667eea;
}

.members-list {
    display: grid;
    gap: 1rem;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.member-card:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.member-info {
    flex: 1;
}

.member-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.member-email {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.member-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.member-role {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.member-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.member-status.active {
    background: #d4edda;
    color: #155724;
}

.member-status.inactive {
    background: #f8d7da;
    color: #721c24;
}

/* Mobile responsive admin */
@media (max-width: 768px) {
    .admin-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .members-section {
        padding: 1.5rem;
    }
    
    .member-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .member-meta {
        justify-content: center;
    }
}

/* Post Rating System Styles */
.post-rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: transparent;
    border-radius: 12px;
    border: none;
    position: relative;
    z-index: 10;
    width: 100%;
    justify-content: flex-start;
}

.rating-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    position: relative;
    z-index: 11;
}

.rating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #D2691E;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    justify-content: center;
    position: relative;
    z-index: 12;
}

.rating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.rating-btn.active {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    border-color: #FF4757;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.rating-btn.heart-btn.active {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    animation: heartBeat 0.6s ease-in-out;
}

.rating-btn.smiley-btn.active {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    animation: bounce 0.6s ease-in-out;
}

.rating-btn.thumbs-up-btn.active {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    animation: thumbsUp 0.6s ease-in-out;
}

.rating-count {
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 20px;
    text-align: center;
}

/* Rating Button Animations */
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes thumbsUp {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

/* Genre Selection Styles */
.genre-selection {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.genre-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.genre-input-group input {
    flex: 1;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 2rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.genre-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.genre-tag:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    transform: translateY(-1px);
}

.genre-tag-genre {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
}

.genre-tag-genre:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

.genre-tag-style {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.genre-tag-style:hover {
    background: linear-gradient(135deg, #654321 0%, #8B4513 100%);
}

.genre-tag .remove-genre {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.genre-tag .remove-genre:hover {
    background: rgba(255, 255, 255, 0.3);
}

.genre-help {
    color: #666;
    font-style: italic;
}

.genre-help small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Advanced Search Styles */
.search-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-section.collapsed {
    display: none;
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-header p {
    color: #6c757d;
    font-size: 1rem;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input-group input {
    flex: 1;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.search-input-group input:focus {
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
    outline: none;
}

.search-input-group button {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-filters.collapsed {
    display: none;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group input {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-group input:focus {
    border-color: #D2691E;
    box-shadow: 0 0 0 2px rgba(210, 105, 30, 0.1);
    outline: none;
}

.search-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-actions button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.search-results-header h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.results-count {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.search-result-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #D2691E;
}

.search-result-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-result-tag {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.search-result-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.search-result-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.search-result-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.search-highlight {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD700 100%);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Mobile Responsiveness for Search */
@media (max-width: 768px) {
    .search-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-result-item {
        padding: 1rem;
    }
}

/* Rating Button Icons */
.rating-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.rating-btn:hover i {
    transform: scale(1.1);
}

.rating-btn.active i {
    transform: scale(1.2);
}

/* Mobile responsive rating system */
@media (max-width: 768px) {
    .post-rating-section {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .rating-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .rating-btn {
        min-width: 70px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .rating-count {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .rating-buttons {
        gap: 0.5rem;
    }
    
    .rating-btn {
        min-width: 60px;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .rating-btn i {
        font-size: 0.9rem;
    }
}

/* Music Search Modal Styles */
.music-search-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Playlist Management Styles */
.playlist-management {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.playlist-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.playlist-stats {
    margin-top: 1rem;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.playlist-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playlist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.playlist-card h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.playlist-description {
    color: #666;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.playlist-info {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.platform-badge.spotify {
    background: #1db954;
    color: white;
}

.platform-badge.apple_music {
    background: #fa243c;
    color: white;
}

.platform-badge.both {
    background: #6c757d;
    color: white;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.playlist-actions {
    display: flex;
    gap: 0.5rem;
}

/* Playlist Tracks Modal */
.tracks-list {
    max-height: 400px;
    overflow-y: auto;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.track-item:hover {
    background-color: #f8f9fa;
}

.track-item:last-child {
    border-bottom: none;
}

.track-info h4 {
    margin: 0 0 0.25rem 0;
    color: #333;
    font-size: 1rem;
}

.track-artist {
    margin: 0 0 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.track-source {
    margin: 0 0 0.25rem 0;
    color: #888;
    font-size: 0.8rem;
}

.track-date {
    color: #999;
    font-size: 0.75rem;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .playlist-grid {
        grid-template-columns: 1fr;
    }
    
    .playlist-controls {
        flex-direction: column;
    }
    
    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .track-actions {
        align-self: flex-end;
    }
}

/* Provider buttons removed - now using separate modals */

.music-track-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: white;
    transition: all 0.3s ease;
}

.music-track-result:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.track-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.track-details {
    flex: 1;
}

.track-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c1810;
    margin-bottom: 0.25rem;
}

.track-artist {
    color: #666;
    margin-bottom: 0.25rem;
}

.track-album {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.track-duration {
    color: #999;
    font-size: 0.8rem;
    background: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.preview-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.add-track-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Apple Music Link Styles */
.apple-music-link {
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.apple-music-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.apple-music-track:hover {
    background: #f8f8f8;
    text-decoration: none;
    color: inherit;
}

.apple-music-track .track-info h4 {
    margin-bottom: 0.25rem;
    color: #2c1810;
}

.apple-music-track .track-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.apple-music-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.apple-music-badge i {
    font-size: 1.1rem;
}

/* Music Preview Audio */
#music-preview-audio {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
}

/* Responsive Design for Music Search */
@media (max-width: 768px) {
    .music-track-result {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .track-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .track-actions {
        justify-content: center;
    }
    
    /* Provider buttons removed */
    
    #music-preview-audio {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}

/* AI Generator Styles */
.ai-generator-section {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.ai-generator-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ai-generator-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ai-generator-form label {
    font-weight: 600;
    color: var(--text-primary);
}

.ai-generator-form input,
.ai-generator-form select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 1rem;
}

.ai-generator-form input:focus,
.ai-generator-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.2);
}

.ai-status {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-content {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-top: 1rem;
}

.ai-content h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

#ai-preview-content {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 200px;
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.6;
}

.ai-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}