:root {
    --bg-color: #0c0c16;
    --card-bg: rgba(20, 20, 35, 0.6);
    --text-color: #f5f5f7;
    --text-muted: #a1a1a6;
    --primary-color: #7c4dff;
    --secondary-color: #4527a0;
    --accent-color: #80deea;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 10%, #1a1a2e 0%, var(--bg-color) 70%);
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 5%;
    align-items: center;
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo a span {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 4px 14px 0 rgba(124, 77, 255, 0.39);
}

.btn-primary:hover {
    background: #6e40ff;
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.23);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-nav {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.auth-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    max-width: 440px;
    margin: 2rem auto;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.1);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.recording-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.recording-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 77, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.recording-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.recording-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

audio {
    width: 100%;
    filter: invert(1) hue-rotate(180deg) brightness(1.5);
    height: 40px;
}

.admin-panel {
    background: rgba(124, 77, 255, 0.05) !important;
    border-color: rgba(124, 77, 255, 0.2) !important;
}

.flash {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: #ff453a;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}

.success {
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.3);
    color: #30d158;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero, .auth-box, .recording-card {
    animation: fadeIn 0.8s var(--transition) both;
}

/* Hero Section - New Professional Design */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0 4rem;
    min-height: 70vh;
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2), rgba(128, 222, 234, 0.2));
    border: 1px solid rgba(124, 77, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    text-align: left;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-actions .btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-actions .btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: -1;
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 35, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Free Recordings Section */
.free-recordings-section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(48, 209, 88, 0.15);
    border: 1px solid rgba(48, 209, 88, 0.3);
    color: #30d158;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.recording-card {
    position: relative;
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(48, 209, 88, 0.15);
    border: 1px solid rgba(48, 209, 88, 0.3);
    color: #30d158;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(128, 222, 234, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-content h2 {
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .floating-card.card-1 {
        left: 5%;
    }
    
    .floating-card.card-2 {
        right: 5%;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image img {
        max-width: 280px;
    }
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 5%;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-content a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--primary-color);
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-page h1 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.legal-page .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    color: var(--text-muted);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.back-link {
    margin-top: 2rem;
}

/* Dashboard Styles */
.dashboard-hero {
    text-align: center;
    padding: 2rem 0 3rem;
    margin-bottom: 2rem;
}

.dashboard-hero-content {
    margin-bottom: 3rem;
}

.dashboard-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.dashboard-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dash-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    transition: var(--transition);
}

.dash-stat-card:hover {
    border-color: rgba(124, 77, 255, 0.3);
    transform: translateY(-2px);
}

.dash-stat-icon {
    font-size: 2rem;
}

.dash-stat-info {
    display: flex;
    flex-direction: column;
}

.dash-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.dash-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Panel */
.admin-panel-card {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(128, 222, 234, 0.05));
    border: 1px solid rgba(124, 77, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.admin-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-icon {
    font-size: 2.5rem;
}

.admin-panel-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #fff;
}

.admin-panel-header p {
    margin: 0.25rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.admin-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sessions Section */
.sessions-section {
    padding: 2rem 0;
}

.sessions-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.sessions-section .section-header h2 {
    margin-bottom: 0.5rem;
}

/* Session Cards */
.session-card {
    position: relative;
}

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

.session-icon {
    font-size: 2rem;
    opacity: 0.5;
}

.premium-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.free-badge {
    background: rgba(48, 209, 88, 0.15);
    border: 1px solid rgba(48, 209, 88, 0.3);
    color: #30d158;
}

.card-badge {
    position: static;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Admin Controls */
.admin-controls {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.admin-controls form {
    margin: 0;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-danger {
    background: rgba(255, 69, 58, 0.2);
    border: 1px solid rgba(255, 69, 58, 0.4);
    color: #ff453a;
}

.btn-danger:hover {
    background: rgba(255, 69, 58, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--text-muted);
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-stats-row {
        flex-direction: column;
        align-items: center;
    }
    
    .dash-stat-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .admin-panel-header {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-actions {
        justify-content: center;
    }
    
    .sessions-section .section-header {
        text-align: center;
    }
}

/* Premium Teaser Section */
.premium-teaser-section {
    padding: 5rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.premium-badge-lg {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.premium-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.premium-teaser-card {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.8), rgba(20, 20, 35, 0.9));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.premium-teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), transparent);
    pointer-events: none;
}

.premium-teaser-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.premium-lock-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
}

.premium-teaser-content {
    flex: 1;
    min-width: 0;
}

.premium-teaser-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.premium-teaser-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-teaser-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-teaser-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.teaser-urgency {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(124, 77, 255, 0.4), 0 0 40px rgba(124, 77, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 6px 30px rgba(124, 77, 255, 0.5), 0 0 50px rgba(124, 77, 255, 0.3);
}

@media (max-width: 600px) {
    .premium-teaser-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-teaser-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .premium-teaser-badge {
        position: static;
        margin-top: 1rem;
    }
}

/* Admin Site Settings */
.admin-page {
    max-width: 800px;
    margin: 0 auto;
}

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

.admin-page-header h1 {
    margin-bottom: 0.5rem;
}

.admin-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.settings-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.settings-card-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.settings-card-header p {
    color: var(--text-muted);
    margin: 0;
}

.current-hero-preview {
    margin-bottom: 2rem;
}

.current-hero-preview h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-preview-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
}

.hero-preview-container img {
    max-width: 300px;
    max-height: 400px;
    border-radius: 12px;
    object-fit: cover;
}

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

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.5rem 0 1rem;
}

.file-input {
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.file-input:hover {
    border-color: var(--primary-color);
}

.file-input::file-selector-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 1rem;
    font-weight: 500;
}

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

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
