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

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-pink: #ff69b4;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --spacing-xl: 120px;
    --spacing-lg: 80px;
    --spacing-md: 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-gum {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.logo-movie {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ff1493;
    text-shadow: 0 0 5px rgba(255, 20, 147, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
        url('images/forest-background.jpg') center 20%/contain no-repeat;
    background-color: #0a0a0a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4vh;
}

.hero-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 8px;
    color: #ff1493;
    text-shadow: 
        0 0 20px rgba(255, 20, 147, 0.8),
        0 0 40px rgba(255, 20, 147, 0.6),
        4px 4px 8px rgba(0, 0, 0, 0.8);
    transform: rotate(-3deg);
}

.hero-tagline {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: var(--secondary-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.award-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.award-item p {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
}

.accent {
    color: var(--accent-gold);
}

/* Videos Section */
.videos-section {
    background: var(--primary-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.video-item h3 {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Story Section */
.story-section {
    background: var(--secondary-dark);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.story-details {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.story-details p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Cast Section */
.cast-section {
    background: var(--primary-dark);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.cast-member {
    text-align: center;
}

.cast-photo {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cast-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.role {
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    background: var(--secondary-dark);
}

.team-credits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.credit-column p {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
    color: var(--text-secondary);
}

.credit-column strong {
    color: var(--text-primary);
}

/* Director's Statement */
.director-section {
    background: var(--primary-dark);
}

/* Removed - replaced with filmmakers-grid */

.director-photo {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.statement-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.director-signature {
    margin-top: 40px;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 18px;
}

/* Music Section */
.music-section {
    background: var(--secondary-dark);
}

.music-feature {
    text-align: center;
    margin-bottom: 60px;
}

.music-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.music-feature p {
    color: var(--text-secondary);
    font-size: 16px;
    letter-spacing: 1px;
}

.bts-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bts-photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Gallery Section */
.gallery-section {
    background: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Press Section */
.press-section {
    background: var(--secondary-dark);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.press-item {
    padding: 40px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.press-item blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.press-source {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.press-rating {
    color: var(--accent-gold);
    font-size: 18px;
}

.press-links {
    text-align: center;
}

.press-links h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.press-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.press-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.press-links a:hover {
    color: var(--accent-gold);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-gum {
    font-size: 42px;
}

.footer-logo .logo-movie {
    font-size: 28px;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .director-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-credits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 80px;
        --spacing-lg: 60px;
    }
    
    .navbar {
        padding: 20px 30px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .container,
    .container-narrow {
        padding: 0 20px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .cast-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Logline Section */
.logline-section {
    padding: 60px 0;
    background: var(--secondary-dark);
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.logline-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    text-align: center;
    color: var(--accent-pink);
    font-weight: 400;
}

/* Story Section Updates */
.emphasis {
    font-weight: 600;
    color: var(--text-primary);
    font-style: italic;
}

.inspired-by {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 8px;
}

.inspired-by h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--accent-pink);
    margin-bottom: 25px;
    text-align: center;
}

.inspired-by p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.final-twist {
    font-weight: 600;
    color: var(--text-primary) !important;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/* Cast Section Character Descriptions */
.character-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 15px;
    text-align: center;
}

/* Cast and Director Photos */
.eden-photo {
    background: url('images/sierra-mccormick.jpg') center/cover;
    background-position: center center;
}

.mary-photo {
    background: url('images/gum-006.png') center/cover;
}

.mallory-photo {
    background: url('images/gum-008.png') center/cover;
}

.brent-photo {
    background: url('images/brent-bokovoy.jpg') center/cover;
    background-position: center 20%; /* Adjusted to prevent head cutoff on mobile */
}

/* Monsters Section */
.monsters-section {
    background: var(--primary-dark);
}

.monsters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.monster-item {
    padding: 50px 40px;
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.monster-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
}

.monster-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.monster-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Director Section Updates - removed duplicate .director-photo definition */

.director-bio h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.director-title {
    color: var(--accent-pink);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.director-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Influences Section */
.influences-section {
    background: var(--secondary-dark);
}

.influences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.influence-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 105, 180, 0.03);
    border: 1px solid rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
}

.influence-item:hover {
    background: rgba(255, 105, 180, 0.08);
    border-color: var(--accent-pink);
    transform: translateY(-3px);
}

.influence-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.influence-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Press Section Placeholder */
.press-placeholder {
    text-align: center;
    padding: 80px 40px;
}

.press-placeholder p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Footer Updates */
.footer-tagline {
    font-size: 14px;
    color: var(--accent-pink);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px 0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .monsters-grid {
        grid-template-columns: 1fr;
    }
    
    .influences-grid {
        grid-template-columns: 1fr;
    }
    
    .logline-text {
        font-size: 20px;
        padding: 0 20px;
    }
}

.tagline-sub {
    margin-top: 30px;
    font-size: 18px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-align: center;
}

/* Visual Gallery Section */
.gallery-section-main {
    background: var(--primary-dark);
    padding: var(--spacing-xl) 0;
}

.gallery-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

@media (max-width: 768px) {
    .gallery-grid-main {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 300px;
    }
}

/* Previous Film Card */
.previous-film {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.film-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.film-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.film-thumbnail {
    width: 200px;
    height: 300px;
    background: url('images/ronalds-little-factory-poster.jpg') center/cover;
    border-radius: 4px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.film-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.film-year,
.film-rating,
.film-desc,
.film-awards {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.film-rating {
    color: var(--accent-gold);
    font-weight: 600;
}

.film-awards {
    color: var(--accent-pink);
    font-weight: 600;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .film-card {
        grid-template-columns: 1fr;
    }
    
    .film-thumbnail {
        width: 100%;
        height: 250px;
    }
}

/* Filmmakers Grid Layout */
.filmmakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.filmmaker-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.shawna-photo {
    background: url('images/shawna-tibbitts.jpg') center/cover;
}

@media (max-width: 968px) {
    .filmmaker-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Hero Logo Image */
.hero-gum-text {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 120px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ff1493;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.8), 0 0 60px rgba(255, 20, 147, 0.5);
    margin: 0;
    margin-bottom: 20px;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-gum-text {
        font-size: 120px;
    }
}

.david-photo {
    background: url('images/david-koechner.jpg') center top/cover;
    background-position: center 20%;
}

/* Featured cast styles removed - all cast members same size */

/* Single Large Video Layout */
.video-single {
    max-width: 1400px;
    margin: 0 auto;
}

.video-wrapper-large {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-wrapper-large iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-single {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* ── Signup / Notify Me Section ─────────────────────────────────────────── */
.signup-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0f0a1a 50%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.signup-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 56px 48px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.06);
}

.signup-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.signup-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.signup-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    width: 100%;
}

.signup-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 14px;
}

.signup-input {
    flex: 1;
    min-width: 180px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.signup-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.signup-input:focus {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.06);
}

.signup-button {
    padding: 14px 32px;
    background: var(--accent-gold);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.signup-button:hover {
    background: #e8c84a;
    transform: translateY(-1px);
}

.signup-button:active {
    transform: translateY(0);
}

.signup-privacy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
}

@media (max-width: 600px) {
    .signup-box {
        padding: 36px 24px;
    }
    .signup-fields {
        flex-direction: column;
    }
    .signup-input,
    .signup-button {
        width: 100%;
    }
}
