/* Red White & Mud - Veteran's Jeep Selling Website */

/* CSS Variables for Patriotic Theme */
:root {
    --red-primary: #DC143C;
    --red-dark: #B22222;
    --red-light: #FF6B6B;
    --white: #FFFFFF;
    --white-off: #F8F9FA;
    --mud-brown: #8B4513;
    --mud-dark: #654321;
    --mud-light: #A0522D;
    --navy: #1E3A8A;
    --gold: #FFD700;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient-patriotic: linear-gradient(135deg, var(--red-primary) 0%, var(--white) 50%, var(--navy) 100%);
    --gradient-mud: linear-gradient(45deg, var(--mud-brown) 0%, var(--mud-dark) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--navy);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-patriotic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px var(--shadow);
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 100;
}

.nav-brand h1 {
    font-size: 2rem;
    color: var(--red-primary);
    text-shadow: 2px 2px 4px var(--shadow);
    margin-bottom: 0.5rem;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--red-primary);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(180deg, #0F172A 0%, #1E3A8A 100%), 
                url('images/jeep-hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    text-shadow: 3px 3px 6px var(--shadow);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.price-display-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-jeep-image {
    width: 120px;
    height: auto;
    border: none !important;
    outline: none !important;
}

.hero-jeep-image img {
    border: none !important;
    outline: none !important;
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-price-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', monospace;
}

.badge {
    background: rgba(139, 69, 19, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    border: 2px solid #654321;
}

/* CTA Button */
.cta-button {
    background: rgba(220, 20, 60, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid #8B0000;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-button::before {
    display: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-flag {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid var(--red-primary);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/* Animated Background Elements */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.8"/><circle cx="80" cy="30" r="1" fill="white" opacity="0.6"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.9"/><circle cx="90" cy="80" r="1" fill="white" opacity="0.7"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.5"/></svg>') repeat;
    animation: twinkle 3s infinite;
}

.mud-splatter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--gradient-mud);
    opacity: 0.3;
    clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0% 100%);
}

/* Showcase Section */
.showcase {
    padding: 5rem 0;
    background: url('images/mud.jpg') center/cover fixed;
    color: var(--white);
    position: relative;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.showcase .container {
    position: relative;
    z-index: 2;
}

.showcase .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px var(--shadow);
}

.jeep-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.jeep-360-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    background: transparent;
    padding: 2rem;
}

.jeep-360-viewer {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    cursor: grab;
    user-select: none;
}

.jeep-360-viewer:active {
    cursor: grabbing;
}

.jeep-360-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease;
    image-rendering: crisp-edges;
}

.jeep-360-controls {
    text-align: center;
    margin-top: 1rem;
}

.jeep-360-hint {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.jeep-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--red-primary);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.highlight-item h3 {
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--navy);
    line-height: 1.5;
}

/* Specifications Section */
.specifications {
    padding: 5rem 0;
    background: radial-gradient(circle at bottom left, #3B82F6 0%, #1E3A8A 70%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.spec-category h3 {
    color: var(--red-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--white);
    font-weight: 600;
}

.spec-value {
    color: var(--gold);
    font-weight: 700;
}

.spec-value a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.spec-value a:hover {
    color: var(--red-primary);
    text-decoration: none;
}

/* Contact section links */
.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--red-primary);
    text-decoration: none;
}

/* Supporting Information links */
.spec-category a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.spec-category a:hover {
    color: var(--red-primary);
    text-decoration: none;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: url('images/mud.jpg') center/cover fixed;
    color: var(--white);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 20, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.gallery-placeholder p {
    color: var(--white);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.gallery-placeholder code {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, #3B82F6 0%, #1E3A8A 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--red-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--red-primary);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--white);
    margin: 0;
}

.price-display {
    background: var(--gradient-mud);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--gold);
}

.price-label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 2px 2px 4px var(--shadow);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: rgba(220, 20, 60, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid #8B0000;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.submit-btn::before {
    display: none;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #8B4513 0%, #654321 50%, #3C2415 100%);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--red-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--white);
    font-style: italic;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.veteran-badge,
.service-badge {
    background: var(--red-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.close:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--red-primary);
    transform: scale(1.1);
}

/* Modal Navigation */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--red-primary);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    transform: translateY(-50%) scale(1);
}

/* Modal Download Button */
.modal-download {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(220, 20, 60, 0.9);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.modal-download:hover {
    background: rgba(220, 20, 60, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.9);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    backdrop-filter: blur(10px);
}

.back-to-top:hover {
    background: rgba(220, 20, 60, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* PDF Modal */
.pdf-modal-content {
    height: 80vh;
    width: 80vw;
    max-width: 1200px;
    max-height: 800px;
}

.pdf-modal-content iframe {
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-bottom: 12rem;
        padding-top: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .price-display-hero {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-jeep-image {
        width: 100px;
    }
    
    .hero-price-amount {
        font-size: 2rem;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    .jeep-showcase {
        grid-template-columns: 1fr;
    }
    
    .jeep-360-viewer {
        height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
        margin-right: 0.5rem;
    }
    
    .highlight-item h3 {
        font-size: 1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-bottom: 15rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .price-display-hero {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-jeep-image {
        width: 80px;
    }
    
    .hero-price-amount {
        font-size: 1.8rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .nav {
        padding: 0.5rem 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .jeep-360-viewer {
        height: 250px;
    }
    
    .highlight-item {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .highlight-icon {
        font-size: 1.2rem;
        margin-right: 0.3rem;
        flex-shrink: 0;
    }
    
    .highlight-item h3 {
        font-size: 0.9rem;
    }
    
    .highlight-item p {
        font-size: 0.85rem;
    }
    
    .jeep-highlights {
        gap: 1rem;
    }
}
