/* --- Global Styles & Variables --- */
:root {
    --primary-color: #2C3E50; /* Dark Slate Blue/Grey */
    --secondary-color: #34495E; /* Wet Asphalt Grey */
    --accent-color: #E74C3C;   /* Red for "Redhawk" */
    --light-grey: #BDC3C7;
    --dark-grey: #1c1c1c; /* Very dark grey / off-black */
    --text-color: #ECF0F1; /* Light Grey/White */
    --font-main: 'Roboto Condensed', sans-serif;
    --font-headings: 'Staatliches', cursive; /* Stencil-like, impactful */

    --olive-drab: #556B2F;
    --coyote-brown: #8A6E45;
    --tactical-black: #0A0A0A;
    --gunmetal-gray: #4A4A4A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--tactical-black);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    letter-spacing: 1px;
    color: var(--text-color); /* Default heading color */
}

h1 { font-size: 3.5rem; margin-bottom: 1rem; text-transform: uppercase; }
h2 { font-size: 2.8rem; margin-bottom: 1.5rem; text-transform: uppercase; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

.highlight-red {
    color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px 5px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
    font-size: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-grey);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-dark {
    background-color: var(--gunmetal-gray); /* Slightly lighter than pure black for depth */
    padding: 60px 0;
}
.bg-medium {
    background-color: var(--secondary-color);
    padding: 60px 0;
}


/* --- Navbar --- */
.navbar {
    background-color: rgba(10, 10, 10, 0.85); /* Semi-transparent dark background */
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px); /* Frosted glass effect */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.nav-logo .logo-img {
    height: 50px; /* Adjust as needed */
    margin-right: 10px;
    /* Optional: if your logo is dark, make it pop on dark bg */
    /* filter: brightness(1.5) contrast(1.2); */
}

.nav-logo h1 {
    font-size: 1.5rem; /* Adjusted for navbar */
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh; /* Full viewport height */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Important for video background */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
}

.hero-fallback-image { /* Style if using fallback image */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.hero-content {
    z-index: 1;
}
.hero-content h2 {
    font-size: 2rem;
    font-family: var(--font-main); /* Use main font for "Welcome to" */
    text-transform: none;
    letter-spacing: 2px;
    color: var(--light-grey);
}
.hero-content h1 {
    font-size: 4.5rem; /* Larger for hero */
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-patch {
    max-width: 250px; /* Adjust as needed */
    margin-bottom: 1rem;
    border-radius: 0%; /* If it's a circular patch */
    /* box-shadow: 0 0 20px rgba(231, 76, 60, 0.5); /* Optional glow for red patch */
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--light-grey);
}

/* --- Content Sections (General) --- */
.content-section {
    padding: 80px 0;
    position: relative; /* For parallax children */
}

/* --- About Us Section --- */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.3em;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    border-radius: 8px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- Roster Section --- */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.roster-card {
    background-color: var(--dark-grey);
    border: 1px solid var(--gunmetal-gray);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.roster-card img {
    width: 100%;
    height: 300px; /* Adjust as needed */
    object-fit: cover;
    border-bottom: 3px solid var(--accent-color);
}

.roster-info {
    padding: 20px;
}

.roster-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.6rem;
}
.roster-info .role {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}
.roster-info .specialty {
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* --- Parallax Sections --- */
.parallax-recruitment, .parallax-contact {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 100px 0; /* Increased padding for visual impact */
}

.parallax-recruitment {
    /* Replace with your recruitment background image */
    background-image: url('images/recruitment-bg-placeholder.jpg');
}

.parallax-contact {
    /* Replace with your contact background image */
    background-image: url('images/contact-bg-placeholder.jpg');
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.75); /* Darker overlay for parallax sections */
    z-index: 0;
}

.recruitment-content, .contact-content {
    position: relative; /* To sit above overlay */
    z-index: 1;
    text-align: center;
}
.recruitment-content .section-title, .contact-content .section-title {
    color: #fff; /* Ensure title is white on dark bg */
}
.recruitment-content .section-subtitle, .contact-content .section-subtitle {
    color: var(--light-grey);
}


/* --- Recruitment Section --- */
.requirements {
    background-color: rgba(0,0,0,0.4);
    padding: 30px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 700px;
    border: 1px solid rgba(255,255,255,0.2);
}
.requirements h3 {
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 1.5rem;
}
.requirements ul {
    text-align: left;
    list-style: none;
}
.requirements ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.requirements ul li i {
    color: var(--accent-color);
    margin-right: 10px;
}
.recruitment-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--light-grey);
}

/* --- Media Section --- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid var(--gunmetal-gray);
    display: block; /* For anchor to behave like block */
}

.media-item img {
    display: block;
    width: 100%;
    height: 200px; /* Or desired aspect ratio */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.media-item:hover img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    font-size: 2.5rem;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

/* --- Operations Section --- */
.operations-list {
    max-width: 900px;
    margin: 0 auto;
}
.operation-item {
    background-color: var(--dark-grey);
    border: 1px solid var(--gunmetal-gray);
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}
.operation-item:hover {
    background-color: #2a2a2a; /* Slightly lighter on hover */
}

.op-date-time {
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
    padding: 10px;
    border-right: 1px dashed var(--gunmetal-gray);
}
.op-date {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-headings);
    color: var(--accent-color);
}
.op-time {
    display: block;
    font-size: 0.9rem;
    color: var(--light-grey);
}
.op-details {
    flex-grow: 1;
}
.op-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.op-type {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.op-details p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--light-grey);
}

.op-status {
    flex-shrink: 0;
    margin-left: 20px;
}
.op-status span {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}
.status-scheduled {
    background-color: var(--olive-drab);
    color: #fff;
}
.status-completed {
    background-color: var(--gunmetal-gray);
    color: var(--light-grey);
}
.status-cancelled {
    background-color: #8B0000; /* Dark Red */
    color: #fff;
}


/* --- Contact Section --- */
.contact-methods {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3rem;
}
.contact-method {
    text-align: center;
    padding: 20px;
    flex-basis: 280px; /* Ensure they have some base width */
}
.contact-method i {
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.contact-method h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}
.contact-method p a {
    color: var(--light-grey);
    font-size: 1.1rem;
    word-break: break-all; /* For long links */
}
.contact-method p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Optional Contact Form Styling */
#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--gunmetal-gray);
    background-color: rgba(255,255,255,0.05);
    color: var(--text-color);
    font-family: var(--font-main);
}
#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: var(--light-grey);
}
#contact-form button {
    width: auto;
    justify-self: center;
}


/* --- Footer --- */
footer {
    background-color: var(--tactical-black);
    color: var(--light-grey);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--gunmetal-gray);
}
footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.social-links {
    margin-top: 1rem;
}
.social-links a {
    color: var(--light-grey);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--accent-color);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .tagline {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .about-content {
        flex-direction: column;
    }
    .about-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%; /* Hidden off-screen */
        top: 75px; /* Height of navbar */
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding-bottom: 20px; /* Space at bottom of menu */
    }

    .nav-menu.active {
        left: 0; /* Slide in */
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .roster-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .roster-card img {
        height: 250px;
    }

    .operation-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .op-date-time {
        margin-right: 0;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-right: none;
        border-bottom: 1px dashed var(--gunmetal-gray);
        width: 100%;
        text-align: left; /* Align left on mobile */
    }
    .op-date-time .op-date, .op-date-time .op-time {
        display: inline-block; /* Side-by-side */
        margin-right: 10px;
    }
    .op-date { font-size: 1.5rem; }
    .op-time { font-size: 0.9rem; }

    .op-status {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .nav-logo h1 {
        font-size: 1.2rem;
    }
    .nav-logo .logo-img {
        height: 40px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .hero-patch {
        max-width: 220px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .contact-method {
        flex-basis: auto; /* Full width */
        width: 100%;
        max-width: 320px; /* Max width for better readability */
    }
}

/* Basic Lightbox Style for demo */
#custom-lightbox {
    /* Styles are set by JS for this basic version */
    /* For a real site, define more robust styles here or use a library */
}

@font-face {
  font-family: 'SpecialElite-Regular'; /* Name you'll use in CSS */
  src: url('../fonts/SpecialElite-Regular.ttf') format('truetype'),
  font-weight: 400;
  font-style: normal;
}

body.briefing-page-body {
    background-color: #333; /* Dark background for the area AROUND the document */
    color: #000; /* Default text color for the document itself will be blackish */
    font-family: 'SpecialElite-Regular', monospace;
    font-weight: 400;
    font-style: normal;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top if content is long */
    min-height: 100vh;
}

.classified-container {
    width: 100%;
    max-width: 850px;
    margin: 20px auto;
}

.document-classification-header,
.document-classification-footer {
    color: #c00; /* Red text */
    font-family: 'SpecialElite-Regular', monospace;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    text-align: center;
}

.document-classification-header {
    padding-bottom: 15px; /* Space between this and the main document header */
    /* You could add a border-bottom here if you want a line under it ON the paper */
    /* border-bottom: 1px solid #ddd; */
}

.document-classification-footer {
    padding-top: 0px; /* Space between main content end and this footer text */
    font-size: 0.9em;
    display: flex; /* To arrange classification text and page number */
    justify-content: space-between;
    align-items: center;
    /* You could add a border-top here if you want a line above it ON the paper */
    /* border-top: 1px solid #ddd; */
}

.classified-header.top-secret {
    padding-top: 10px; /* Example: add some space at the very top */
}

.classified-footer.top-secret {
    display: flex; /* This is for aligning page number if present */
    justify-content: space-between;
    padding: 5px 15px; /* Adjust padding as needed */
    font-size: 0.9em;
    /* Add any specific bottom padding if needed */
    padding-bottom: 10px; /* Example: add some space at the very bottom */
}

.classification-text { /* This class is still used inside the new divs */
    display: block; /* Or inline, depending on desired layout with page number */
}


.briefing-document-paper {
    background-color: #fdfbf4; /* Fallback color */
    background-image: url('../images/papertexture.jpg'); /* Ensure this path is correct! */
    padding: 20px 50px 30px 50px; /* TOP PADDING, L/R PADDING, BOTTOM PADDING. Adjust as needed */
    min-height: 1000px; /* Or let content define height: min-height: auto; if preferred */
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border: 1px solid #ccc; /* Visual border for the paper */
    position: relative; /* For watermark or other absolute positioned children */
    font-family: 'SpecialElite-Regular', monospace;
    font-weight: 400;
    font-style: normal;
    color: #1a1a1a;
}

.briefing-header-content {
    border-bottom: 2px solid #555;
    padding-bottom: 20px;
    margin-bottom: 25px; /* This will now be space from .document-classification-header */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.unit-logo-briefing img {
    max-height: 100px; /* Adjust as needed */
    margin-bottom: 5px;
    opacity: 0.8;
}
.unit-name-briefing {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.document-info {
    text-align: right;
    font-size: 0.9em;
}
.document-info p {
    margin-bottom: 3px;
}
.document-info span {
    font-weight: bold;
}


.briefing-mission-title {
    text-align: center;
    font-size: 1.8em; /* Typewriter fonts are often smaller */
    margin-bottom: 10px;
    font-weight: bold;
    text-decoration: underline;
    letter-spacing: 1px;
    color: #000;
}

.section-separator {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    color: #555;
}
.section-separator.end-of-doc {
    margin-top: 40px;
    font-size: 1.1em;
}

.briefing-section {
    margin-bottom: 20px;
}

.section-heading-briefing {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: underline;
    color: #000;
    text-transform: uppercase;
}
.section-heading-briefing::after {
    content: ""; /* No default styling from main css */
    width: 0;
    height: 0;
    background-color: transparent;
}


.briefing-main-content p,
.briefing-main-content li {
    margin-bottom: 10px;
    font-size: 1em; /* Adjust if font is too small/large */
    color: #1a1a1a;
}

.briefing-main-content ul,
.briefing-main-content ol {
    padding-left: 30px; /* Indentation for lists */
    margin-top: 5px;
}
.briefing-main-content ul.sub-list,
.briefing-main-content ol.sub-list {
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 25px; /* Further indent sub-lists */
}

.briefing-main-content li {
    list-style-type: upper-alpha; /* A. B. C. for main list items */
}
.briefing-main-content ol.sub-list li {
    list-style-type: decimal; /* 1. 2. 3. for ordered sub-list items */
}
.briefing-main-content ul.sub-list li {
    list-style-type: disc; /* Bullets for unordered sub-list items */
}


.signature-block {
    margin-top: 50px;
    text-align: right;
    font-size: 1em;
    line-height: 1.8;
}

/* Optional: Stamped/Watermark effect */
.briefing-document-paper::before {
    content: "CLASSIFIED"; /* Example watermark text */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 150px;
    color: rgba(255, 0, 0, 0.1); /* Faint red */
    font-weight: bold;
    z-index: 0; /* Behind content */
    pointer-events: none;
    font-family: 'Oswald', Impact, sans-serif;
}

/* Ensure no conflicts with general h1,h2,p from main style.css if they are too generic */
.briefing-document-paper h1,
.briefing-document-paper h2,
.briefing-document-paper p {
    font-family: 'SpecialElite-Regular', monospace;
    font-weight: 400;
    font-style: normal;
    color: #1a1a1a; /* Ensure text color is for the document */
}
.briefing-document-paper h1.section-title, /* Resetting general section title styles */
.briefing-document-paper h2.section-title {
    text-align: left; /* Briefing headings are left aligned */
    text-transform: uppercase;
    letter-spacing: normal;
    padding-bottom: 0;
    border-bottom: none;
}
.briefing-document-paper h1.section-title::after,
.briefing-document-paper h2.section-title::after {
    display: none; /* No underline from main styles */
}