:root {
    --primary-gold: #c5a059;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-maroon);
    border-radius: 10px;
}

.bio-header {
    padding: 150px 0 60px;
    background: #000;
    text-align: center;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.text-gold {
    color: var(--primary-gold) !important;
    text-transform: uppercase;
}

.story-section {
    padding: 80px 0;
    border-bottom: 1px solid #1a1a1a;
}

.bio-text {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    text-align: justify;
    
}

.section-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: rgba(197, 160, 89, 0.15);
    font-weight: 700;
}

.highlight-quote {
    border-left: 2px solid var(--primary-gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
}

/* Video Section Styling */
.video-box-container {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid #222;
}

.video-wrapper {
    border: 1px solid var(--primary-gold);
    padding: 10px;
    background: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

/* Compact Premium Form (Index Style) */
.compact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 12px 0 !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none !important;
    border-bottom-color: var(--primary-gold) !important;
}

/* Buttons */
.btn-premium {
    background: linear-gradient(45deg, var(--deep-maroon), #800000) !important;
    color: white !important;
    border: none !important;
    padding: 14px 45px !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
    border-radius: 2px !important;
    transition: 0.5s !important;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.3) !important;
    text-transform: uppercase !important;
}

.btn-premium:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.5) !important;
    color: white !important;
    background: linear-gradient(45deg, #800000, var(--deep-maroon)) !important;
}