/* Custom CSS for Karen's Tattoo Studio */

/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --dark-color: #1a252f;
    --light-color: #ecf0f1;
    --text-color: #2c3e50;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

/* Main Content */
.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 200px);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: var(--transition);
    margin: 0 5px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-2px);
}

/* Admin Dashboard */
.admin-sidebar {
    background: var(--dark-color);
    min-height: 100vh;
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: var(--secondary-color);
    color: white;
}

.admin-content {
    padding: 2rem;
}

/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 1rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Tables */
.table {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

/* Status Badges */
.badge-pending {
    background-color: #f39c12;
    color: white;
}

.badge-confirmed {
    background-color: #27ae60;
    color: white;
}

.badge-completed {
    background-color: #3498db;
    color: white;
}

.badge-cancelled {
    background-color: #e74c3c;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .admin-sidebar {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* KC STUDIO - Dark Theme Styles */

:root {
    --primary-color: #dc3545;
    --secondary-color: #212529;
    --accent-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --danger-color: #dc3545;
    --success-color: #198754;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-artwork {
    position: relative;
    display: inline-block;
}

.hero-icon {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.8;
    animation: iconFloat 6s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card-dark {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.2);
    border-color: var(--primary-color);
}

.service-icon-dark {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery Items */
.gallery-item-dark {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item-dark:hover {
    transform: scale(1.05);
}

.gallery-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(33, 37, 41, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-dark:hover .gallery-overlay-dark {
    opacity: 1;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--warning-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.contact-item i {
    font-size: 1.2rem;
    width: 30px;
}

.map-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(220, 53, 69, 0.3);
}

/* Navigation Updates */
.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-danger {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Cards and Components */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Form Elements */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Badges */
.badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .feature-card,
    .service-card-dark,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

/* Footer readability fix - improved */
.footer, .bg-dark {
    color: #fff !important;
}
.footer h5, .bg-dark h5 {
    color: #fff !important;
    font-weight: bold;
}
.footer .text-muted, .bg-dark .text-muted {
    color: #fff !important;
    opacity: 0.85;
}
.footer ul li, .bg-dark ul li {
    color: #fff !important;
}
.footer ul li a, .bg-dark ul li a {
    color: #fff !important;
    font-weight: 500;
    opacity: 0.95;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.footer ul li a:hover, .bg-dark ul li a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
    text-decoration: underline;
}
.footer .social-links a, .bg-dark .social-links a {
    color: #fff !important;
    font-size: 1.3rem;
    margin-right: 1rem;
    opacity: 0.9;
    transition: color 0.2s, opacity 0.2s;
}
.footer .social-links a:hover, .bg-dark .social-links a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}
.footer p, .bg-dark p {
    color: #fff !important;
    opacity: 0.9;
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Hero Social */
.hero-social a {
    transition: all 0.3s ease;
}

.hero-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Modern High-Contrast Dark Theme for KC STUDIO */
:root {
    --background-main: #181A1B;
    --background-surface: rgba(40,44,52,0.85);
    --primary-color: #FF4C60;
    --secondary-color: #3A86FF;
    --accent-color: #FFD166;
    --success-color: #43E97B;
    --danger-color: #FF4C60;
    --warning-color: #FFD166;
    --info-color: #3A86FF;
    --text-main: #fff;
    --text-secondary: #E0E0E0;
    --text-muted: #B0B0B0;
    --border-color: #23272A;
}

body {
    background: var(--background-main) !important;
    color: var(--text-main);
}

.bg-dark, .footer, .navbar, .main-content {
    background: var(--background-main) !important;
    color: var(--text-main) !important;
}

.card, .service-card-dark, .feature-card, .testimonial-card, .contact-info, .map-placeholder {
    background: var(--background-surface) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-section {
    background: linear-gradient(135deg, #232526 0%, #181A1B 100%);
    color: var(--text-main);
}

.hero-title, .display-4, .display-3, .display-5, h1, h2, h3, h4, h5, h6 {
    color: var(--text-main) !important;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
}

p, .lead, .text-muted, .footer .text-muted, .bg-dark .text-muted {
    color: var(--text-secondary) !important;
    opacity: 0.95;
}

a, .footer a, .bg-dark a, .footer ul li a, .bg-dark ul li a {
    color: var(--secondary-color) !important;
    font-weight: 500;
    opacity: 0.95;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

a:hover, .footer a:hover, .bg-dark a:hover, .footer ul li a:hover, .bg-dark ul li a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
    text-decoration: underline;
}

.btn-primary, .btn-danger {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,76,96,0.15);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover, .btn-danger:hover {
    background: #d7263d !important;
    border-color: #d7263d !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(255,76,96,0.25);
}

.btn-outline-light, .btn-outline-secondary {
    background: transparent !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-outline-light:hover, .btn-outline-secondary:hover {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

.badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    background: var(--background-surface);
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.badge.bg-success { background: var(--success-color) !important; color: #181A1B !important; }
.badge.bg-danger { background: var(--danger-color) !important; color: #fff !important; }
.badge.bg-warning { background: var(--warning-color) !important; color: #181A1B !important; }
.badge.bg-info { background: var(--info-color) !important; color: #fff !important; }
.badge.bg-secondary { background: #444 !important; color: #fff !important; }

.form-control {
    background: rgba(40,44,52,0.7) !important;
    color: var(--text-main) !important;
    border: 1.5px solid var(--border-color) !important;
    border-radius: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255,76,96,0.15);
    background: rgba(40,44,52,0.95) !important;
    color: #fff !important;
}

.navbar, .navbar-dark, .navbar-brand, .navbar-nav .nav-link {
    background: var(--background-main) !important;
    color: var(--text-main) !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.footer, .bg-dark {
    background: #1a1a1a !important;
    color: #fff !important;
}
.footer h5, .bg-dark h5 {
    color: #fff !important;
    font-weight: bold;
}
.footer .text-muted, .bg-dark .text-muted {
    color: #E0E0E0 !important;
    opacity: 0.95;
}
.footer ul li, .bg-dark ul li {
    color: #fff !important;
}
.footer ul li a, .bg-dark ul li a {
    color: #3A86FF !important;
    font-weight: 500;
    opacity: 0.95;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.footer ul li a:hover, .bg-dark ul li a:hover {
    color: #FF4C60 !important;
    opacity: 1;
    text-decoration: underline;
}
.footer .social-links a, .bg-dark .social-links a {
    color: #fff !important;
    font-size: 1.3rem;
    margin-right: 1rem;
    opacity: 0.9;
    transition: color 0.2s, opacity 0.2s;
}
.footer .social-links a:hover, .bg-dark .social-links a:hover {
    color: #FF4C60 !important;
    opacity: 1;
}
.footer p, .bg-dark p {
    color: #E0E0E0 !important;
    opacity: 0.9;
}

/* Cards and overlays */
.gallery-item-dark, .modal-content {
    background: var(--background-surface) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Section backgrounds */
section.bg-light {
    background: rgba(40,44,52,0.85) !important;
    color: var(--text-main) !important;
}
section.bg-primary {
    background: linear-gradient(90deg, #3A86FF 0%, #FF4C60 100%) !important;
    color: #fff !important;
}

/* Misc */
hr, .border, .border-end {
    border-color: #23272A !important;
}
::-webkit-scrollbar {
    width: 8px;
    background: #23272A;
}
::-webkit-scrollbar-thumb {
    background: #3A86FF;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF4C60;
} 