/* Custom Styles for CrownPlay */

:root {
    --primary-color: #ffd700;
    --secondary-color: #6c757d;
    --success-color: #20c997;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --hover-color: #3a3a3a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-color);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation Styles */
.navbar {
    background-color: var(--dark-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Enhanced Hero Section - Keep the new hero box effect */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0a0a0a 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Premium Hero Content Box with Cinematic Effects */
.hero-section .col-lg-8 {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 215, 0, 0.05) 100%),
        rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 4rem 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 215, 0, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-section .col-lg-8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

.hero-section .col-lg-8::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 40%);
    animation: cinematic-glow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes cinematic-glow {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: rotate(2deg) scale(1.05);
    }
}

/* Premium Feature Cards */
.card {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 215, 0, 0.03) 100%),
        rgba(35, 35, 35, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.card:hover {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 215, 0, 0.06) 100%),
        rgba(40, 40, 40, 0.95);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    transform: translateY(-8px);
}

.card .fas {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.card:hover .fas {
    transform: scale(1.15) rotateY(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.card .text-primary {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
}

.card:hover .text-primary {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.card .text-success {
    filter: drop-shadow(0 0 15px rgba(32, 201, 151, 0.4));
    transition: all 0.3s ease;
}

.card:hover .text-success {
    filter: drop-shadow(0 0 20px rgba(32, 201, 151, 0.6));
    text-shadow: 0 0 10px rgba(32, 201, 151, 0.3);
}

.card .text-info {
    filter: drop-shadow(0 0 15px rgba(52, 152, 219, 0.4));
    transition: all 0.3s ease;
}

.card:hover .text-info {
    filter: drop-shadow(0 0 20px rgba(52, 152, 219, 0.6));
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.card-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card:hover .card-title {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Hero Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFD700 0%, #FFF 30%, #FFD700 70%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6c200 100%);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6c200 0%, var(--primary-color) 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #17a085 100%);
    border: none;
    font-weight: bold;
}

.btn-success:hover {
    background: linear-gradient(135deg, #17a085 0%, var(--success-color) 100%);
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-title {
    color: var(--text-primary);
    font-weight: bold;
}

.card-text {
    color: var(--text-secondary);
}

/* Dashboard Styles */
.dashboard-header {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.dashboard-header h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.dashboard-header .text-primary {
    color: var(--primary-color) !important;
}

/* Stats Cards */
.stat-card-dashboard {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-card-dashboard:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: var(--primary-color);
    color: #000;
    font-size: 1.5rem;
}

.stat-icon.approved {
    background: var(--success-color);
    color: #fff;
}

.stat-icon.review {
    background: var(--info-color);
    color: #fff;
}

.stat-icon.pending {
    background: var(--warning-color);
    color: #fff;
}

.stat-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 5px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
}

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

/* Table Styles */
.table {
    color: var(--text-secondary);
}

.table thead th {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--primary-color);
    font-weight: bold;
}

.table tbody tr {
    border-color: var(--border-color);
}

.table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Badge Styles */
.badge.bg-warning {
    background: var(--primary-color) !important;
    color: #000;
}

.badge.bg-primary {
    background: var(--info-color) !important;
}

.badge.bg-success {
    background: var(--success-color) !important;
}

.badge.bg-danger {
    background: var(--danger-color) !important;
}

/* Alert Styles */
.alert-success {
    background: rgba(32, 201, 151, 0.1);
    border-left: 4px solid var(--success-color);
    color: var(--text-primary);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--danger-color);
    color: var(--text-primary);
}

.alert-warning {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    color: var(--text-primary);
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--info-color);
    color: var(--text-primary);
}

/* Premium Streaming Platforms Section */
.streaming-platforms-section {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 255, 255, 0.01) 50%, rgba(255, 215, 0, 0.02) 100%),
        rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.streaming-platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
}

.streaming-platforms-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFF 30%, #FFD700 70%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
}

.streaming-platforms-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.platforms-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0 2rem;
}

.platform-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    cursor: pointer;
}

.platform-logo:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
}

.logo-placeholder {
    width: 140px;
    height: 70px;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 215, 0, 0.05) 100%),
        rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

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

.platform-logo:hover .logo-placeholder {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 215, 0, 0.1) 100%),
        rgba(50, 50, 50, 0.95);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.platform-logo:hover .logo-placeholder::before {
    left: 100%;
}

/* Platform specific colors on hover */
.platform-logo.roku:hover .logo-placeholder {
    border-color: #662D91;
    box-shadow: 0 0 30px rgba(102, 45, 145, 0.4), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.platform-logo.tubi:hover .logo-placeholder {
    border-color: #FA541C;
    box-shadow: 0 0 30px rgba(250, 84, 28, 0.4), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.platform-logo.amazon-prime:hover .logo-placeholder {
    border-color: #00A8E1;
    box-shadow: 0 0 30px rgba(0, 168, 225, 0.4), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.platform-logo.fawesome:hover .logo-placeholder {
    border-color: #FF6B35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.platform-logo.happykids:hover .logo-placeholder {
    border-color: #4CAF50;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4), 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-question {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: bold;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

/* Premium Create Account Card */
.create-account-card {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(230, 194, 0, 0.95) 100%),
        rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: #000;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.create-account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.create-account-card .card-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.create-account-card .card-text {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-golden {
    background: rgba(0, 0, 0, 0.9);
    color: var(--primary-color);
    border: 2px solid rgba(0, 0, 0, 0.8);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

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

.btn-golden:hover {
    background: rgba(255, 215, 0, 0.95);
    color: #000;
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

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

/* Dashboard Filter Buttons */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 600;
}

/* Dashboard Submission Cards */
.submission-item {
    transition: all 0.3s ease;
}

.submission-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submission-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-progress {
    margin-top: 1rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Trust Indicators Section */
.trust-section {
    padding: 3rem 0;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    text-align: center;
    flex: 0 0 auto;
    min-width: 200px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trust-item .fas {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.trust-item:hover .fas {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

/* Upload section styles */
.upload-section {
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-section:hover {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
}

.upload-section.dragover {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section .col-lg-8 {
        padding: 2rem 1.5rem;
    }
    
    .platforms-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }
    
    .trust-item {
        min-width: auto;
    }
    
    .dashboard-actions {
        margin-top: 1rem;
    }
    
    .stat-card-dashboard {
        margin-bottom: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}