/* Movie Night Landing Page Styles */

/* Cozy Cinematic Color Palette Variables */
:root {
    --charcoal: #2C2C2C;
    --deep-charcoal: #1A1A1A;
    --emerald: #50C878;
    --deep-emerald: #3A9B5C;
    --warm-amber: #FFBF00;
    --soft-amber: #FFD700;
    --off-white: #FEFCF8;
    --warm-white: #FFF9F5;
    --soft-charcoal: #4A4A4A;
    --tv-glow: #4A90E2;
    --cinema-black: #0D0D0D;
    --cozy-gray: #3C3C3C;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--off-white);
    background: linear-gradient(135deg, var(--cinema-black) 0%, var(--charcoal) 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--off-white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(254, 252, 248, 0.9);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--off-white);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(254, 252, 248, 0.85);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: rgba(254, 252, 248, 0.8);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Cozy TV Glow Effect */
.hero {
    background: linear-gradient(135deg, var(--cinema-black) 0%, var(--deep-charcoal) 50%, var(--charcoal) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    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="film-grain" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.3" fill="rgba(255,191,0,0.05)"/><circle cx="3" cy="3" r="0.2" fill="rgba(80,200,120,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23film-grain)"/></svg>') repeat;
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-amber);
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(74, 144, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(80, 200, 120, 0.2);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9);
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-buttons-mobile {
    display: none;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.download-btn:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.download-btn img {
    height: 50px;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
}

.qr-code {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: var(--off-white);
    padding: 8px;
}

.qr-text {
    font-size: 0.9rem;
    color: rgba(254, 252, 248, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Section Styles with Cinematic Lighting */
section {
    padding: 80px 0;
    position: relative;
}

.section-two {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-charcoal) 100%);
    position: relative;
}

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

.section-two .image-placeholder img, .section-four .image-placeholder img, .section-six .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.85) sepia(0.1);
}

.section-three {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--cinema-black) 50%, var(--charcoal) 100%);
    position: relative;
}

.section-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 191, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.section-four {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--cozy-gray) 100%);
    position: relative;
}

.section-four::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(80, 200, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-five {
    background: linear-gradient(135deg, var(--deep-emerald) 0%, var(--emerald) 50%, var(--deep-emerald) 100%);
    color: var(--off-white);
    position: relative;
}

.section-five::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 191, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-five .section-title,
.section-five .section-subtitle {
    color: var(--off-white);
    position: relative;
    z-index: 2;
}

.section-six {
    background: linear-gradient(135deg, var(--cinema-black) 0%, var(--deep-charcoal) 100%);
    position: relative;
}

.section-six::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-seven {
    background: linear-gradient(135deg, var(--warm-amber) 0%, var(--soft-amber) 50%, var(--warm-amber) 100%);
    position: relative;
    color: var(--charcoal);
}

.section-seven::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="sparkles" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(44,44,44,0.1)"/><circle cx="20" cy="15" r="0.5" fill="rgba(44,44,44,0.15)"/><circle cx="15" cy="20" r="0.8" fill="rgba(44,44,44,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>') repeat;
    opacity: 0.6;
    pointer-events: none;
}

.section-seven .section-title,
.section-seven .section-subtitle {
    color: var(--charcoal);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Photo Duo */
.photo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.photo-item .image-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    border: 1px solid rgba(80, 200, 120, 0.2);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(74, 144, 226, 0.1);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(80, 200, 120, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 200, 120, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 191, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(80, 200, 120, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warm-amber), var(--soft-amber));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 191, 0, 0.3);
}

.icon-placeholder::before {
    content: '🍿';
    font-size: 2rem;
}

/* Vertical Features List */
.features-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item-vertical {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(80, 200, 120, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 200, 120, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(255, 191, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(80, 200, 120, 0.2);
}

.feature-icon-large {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm-amber), var(--soft-amber));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 191, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-title-simple {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--off-white);
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Steps List */
.steps-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.step-item-vertical {
    background: rgba(254, 252, 248, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 191, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 191, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.step-item-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 191, 0, 0.2);
}

.step-title-simple {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--off-white);
    margin: 0;
    text-align: center;
}

/* Single Image */
.single-image {
    display: flex;
    justify-content: center;
}

.single-image .image-placeholder {
    max-width: 600px;
    height: 400px;
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    border: 1px solid rgba(80, 200, 120, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(74, 144, 226, 0.1);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

.content-text .section-title,
.content-text .section-subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(254, 252, 248, 0.85);
}

.content-visual .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    border: 1px solid rgba(80, 200, 120, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(74, 144, 226, 0.1);
}

/* CTA Sections */
.cta-content,
.final-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item,
.feature-item-vertical,
.step-item-vertical,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in .feature-item,
.section-animate.animate-in .feature-item-vertical,
.section-animate.animate-in .step-item-vertical,
.section-animate.animate-in .faq-item {
    opacity: 1;
    transform: translateY(0);
}

.photo-item {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in .photo-item {
    opacity: 1;
    transform: scale(1);
}

/* Sources Section */
.sources-section {
    background: linear-gradient(135deg, var(--cinema-black) 0%, var(--deep-charcoal) 100%);
    padding: 40px 0;
    margin-top: 0;
    border-top: 1px solid rgba(80, 200, 120, 0.2);
    position: relative;
}

.sources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sources-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sources-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.source-item {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(80, 200, 120, 0.2);
}

.source-number {
    font-weight: 600;
    color: var(--warm-amber);
    margin-right: 10px;
}

.source-link-full {
    color: var(--emerald);
    text-decoration: none;
    word-break: break-all;
}

.source-link-full:hover {
    text-decoration: underline;
    color: var(--soft-amber);
}

.source-description {
    margin-top: 8px;
    color: rgba(254, 252, 248, 0.7);
    font-size: 14px;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--cinema-black) 0%, var(--deep-charcoal) 100%);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(135deg, var(--cozy-gray) 0%, var(--charcoal) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(80, 200, 120, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 200, 120, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(255, 191, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(80, 200, 120, 0.2);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(254, 252, 248, 0.85);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .photo-duo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-list-vertical {
        gap: 2rem;
    }
    
    .feature-item-vertical {
        flex-direction: row;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
        width: 100px;
        height: 100px;
    }
    
    .feature-title-simple {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .steps-list-vertical {
        gap: 2rem;
    }
    
    .step-item-vertical {
        padding: 1.5rem;
    }
    
    .step-title-simple {
        font-size: 1.2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-text .section-title,
    .content-text .section-subtitle {
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code-container {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .download-buttons-mobile {
        display: flex !important;
        margin-bottom: 2rem;
    }
    
    .download-buttons-desktop {
        display: none;
    }
    
    .download-btn img {
        height: 45px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .photo-item .image-placeholder {
        height: 280px;
    }
    
    .single-image .image-placeholder {
        height: 300px;
    }
    
    .content-visual .image-placeholder {
        height: 300px;
    }
    
    .faq-list {
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced hover effects with cinematic feel */
@media (hover: hover) {
    .feature-item:hover .icon-placeholder {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(255, 191, 0, 0.4);
    }
    
    .photo-item:hover .image-placeholder {
        transform: scale(1.05);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(74, 144, 226, 0.2);
    }
    
    .single-image:hover .image-placeholder {
        transform: scale(1.02);
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(74, 144, 226, 0.2);
    }
}

/* Focus states for accessibility */
.download-btn:focus {
    outline: 3px solid var(--warm-amber);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .download-buttons,
    .qr-code-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        background: white !important;
        padding: 40px 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
}
