:root {
    --arco-dark-bg: #050b0f;
    --arco-nav-bg: #0a161d;
    --arco-cyan: #00e5ff;
    --arco-white: #ffffff;
    --arco-gray: #a0acb5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #050b0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00e5ff 0%, #0077aa 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00e5ff;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #00e5ff #050b0f;
}

.info-top-bar {
    background-color: var(--arco-dark-bg);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--arco-white);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.info-top-bar .col-lg-4 img {
    transition: transform 0.3s ease;
}

.info-top-bar .col-lg-4 img:hover {
    transform: scale(1.02);
}

.btn-live {
    background: #ff0000;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-live:hover {
    background: #cc0000;
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.dot-live {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: blink-live 1s infinite;
}

@keyframes blink-live {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.info-items-row {
    font-size: 0.99rem;
    color: var(--arco-gray);
    font-weight: 500;
}

.info-items-row i {
    color: var(--arco-cyan);
    margin-right: 2px;
}

.info-items-row .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.logo-arcotv {
    transition: filter 0.4s ease;
}

.logo-arcotv:hover {
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.9))
            drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.logo-right {
    margin-bottom: 0;
}

.logo-right img {
    filter: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, filter 0.4s ease;
}

.logo-right img:hover {
    opacity: 1;
    animation: rgb-glow 2s linear infinite;
}

@keyframes rgb-glow {
    0%   { filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.8)); }
    25%  { filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.8)); }
    50%  { filter: drop-shadow(0 0 8px rgba(0, 0, 255, 0.8)); }
    75%  { filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.8)); }
    100% { filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.8)); }
}

.social-container-top {
    display: flex;
    gap: 10px;
}

.social-container-top {
    min-width: 130px;
    justify-content: flex-end;
}

.social-link-item-small {
    color: var(--arco-white);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-item-small:hover {
    color: var(--arco-dark-bg);
    background-color: var(--arco-cyan);
    transform: translateY(-2px);
}

.arco-nav {
    background-color: var(--arco-nav-bg) !important;
    border-top: 1px solid rgba(0, 229, 255, 0.2) !important;
    border-bottom: 4px solid var(--arco-cyan) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.arco-nav .nav-link {
    color: var(--arco-white) !important;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.arco-nav .nav-link:hover {
    color: var(--arco-cyan) !important;
}

.arco-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--arco-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.arco-nav .nav-link:hover::after {
    width: 30px;
}

.arco-nav .dropdown-menu {
    background: #0a161d;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-top: 2px solid #00e5ff;
    border-radius: 0 0 8px 8px;
    padding: 6px 0;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    margin-top: 0 !important;
}

.arco-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.arco-nav .dropdown-item:last-child {
    border-bottom: none;
}

.arco-nav .dropdown-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.4);
    flex-shrink: 0;
    transition: background 0.2s;
}

.arco-nav .dropdown-item:hover {
    background: rgba(0, 229, 255, 0.08);
    color: #00e5ff;
    padding-left: 26px;
}

.arco-nav .dropdown-item:hover::before {
    background: #00e5ff;
}

.arco-nav .nav-item.dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arco-nav .nav-item.dropdown>.nav-link .drop-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
    opacity: 0.6;
}

.arco-nav .nav-item.dropdown.show>.nav-link .drop-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-section-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(0, 229, 255, 0.5);
    padding: 8px 20px 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.arco-nav .nav-item.dropdown>.nav-link::after {
    display: none;
}

.info-top-bar {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.info-top-bar img[alt="ARCO TV"] {
    max-height: 110px !important;
}

.logo-right img {
    max-height: 85px !important;
}

.arco-search-wrapper {
    position: relative;
}

.arco-search-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.arco-search-toggle:hover {
    background: var(--arco-cyan);
    color: #000;
    border-color: var(--arco-cyan);
}

.arco-search-form {
    position: absolute;
    top: 120%;
    right: 0;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0 0 0 12px;
    border-radius: 20px;
    overflow: hidden;
    width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scaleX(0.8);
    transform-origin: right center;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.arco-search-form.open {
    width: 240px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleX(1);
}

.arco-search-form input {
    border: none;
    outline: none;
    font-size: 0.85rem;
    width: 100%;
    padding: 7px 0;
    background: transparent;
    color: #040c2b;
}

.arco-search-form input::placeholder {
    color: #aaa;
}

.arco-search-go {
    background: var(--arco-cyan);
    border: none;
    color: #000;
    height: 100%;
    padding: 0 12px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    border-radius: 0 20px 20px 0;
    transition: background 0.2s;
    flex-shrink: 0;
}

.arco-search-go:hover {
    background: #00b8cc;
}