<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mobile_nav{
    overflow: hidden;
}
.header .mobile-nav{
    background: #1d3557f0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    color: #a8dadc;
    backdrop-filter: blur(2px);
}
.header .mobile-nav.show{
    transform: translateY(0);
}
.header .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #a8dadc;
}
.header .mobile-nav .nav-link-americana,
.header .mobile-nav a{
    color: #a8dadc;
}
.header .mobile-nav .logo-text{
    font-size: 30px;
    font-style: italic;
}
.header {
    font-family: 'Bebas Neue', cursive;
    position: sticky;
    top: 0;
    z-index: 99999;
}
.header .nav-side-icon {
    padding: 0 1rem;
}
.header .nav-side-icon a{
    font-size: 21px;
    transition: all 0.3s ease;
}
.header .nav-side-icon a:hover {
    color: #e63946;
}
.header .navbar-americana {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid #e63946;
    padding: 0.5rem 0;
}
.header .navbar-brand-americana {
    margin-right: 0;
}
.header .navbar-brand-americana img {
    height: 40px;
}
.header .nav-link-americana {
    color: #1d3557;
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    position: relative;
    white-space: nowrap;
}
.header .nav-link-americana:hover {
    color: #e63946 !important;
    transform: translateY(-3px);
}
.header .nav-link-americana:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: #e63946;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.header .nav-link-americana:hover:before {
    transform: scaleX(1);
}
.header .search-americana {
    border: 2px solid #1d3557;
    border-radius: 0;
    font-family: Arial, sans-serif;
    border-right: 0;
}
.header .search-americana:focus {
    box-shadow: none;
    border-color: #e63946;
}
.header .btn-americana {
    background: #e63946;
    color: white;
    border: none;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease
}
.header .btn-americana:hover {
    background: #c1121f;
    color: white;
}
.header .nav-icon-americana {
    color: #1d3557;
    text-align: center;
    font-size: 1.3rem;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}
.header .nav-icon-americana:hover {
    color: #e63946;
    transform: translateY(-3px);
}
.header .badge-americana {
    background: #e63946 !important;
    font-size: 0.7rem;
}
.announcement-americana {
    background: #1d3557;
    color: white;
    text-align: center;
    padding: 0.3rem 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.announcement-americana a {
    color: #a8dadc;
    text-decoration: underline;
}</pre></body></html>