:root {
    --tv-color-brand: #2962FF;
    --tv-color-brand-hover: #1E53E5;
    --tv-bg-base: #131722;
    --tv-bg-secondary: #1E222D;
    --tv-text-primary: #D1D4DC;
    --tv-text-secondary: #787B86;
}

body {
    background-color: var(--tv-bg-base);
    color: var(--tv-text-primary);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

/* Utilities */
.z-index-2 {
    z-index: 2 !important;
}

/* Navbar */
.navbar {
    background-color: rgba(19, 23, 34, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.nav-link {
    color: var(--tv-text-primary) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--tv-color-brand) !important;
}

.btn-primary {
    background-color: var(--tv-color-brand);
    border-color: var(--tv-color-brand);
}

.btn-primary:hover {
    background-color: var(--tv-color-brand-hover);
    border-color: var(--tv-color-brand-hover);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, #1e222d 0%, #131722 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232962ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animations */
@keyframes pulseAurora {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.aurora-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41,98,255,0.15) 0%, rgba(0,0,0,0) 70%);
    animation: pulseAurora 15s infinite alternate;
    z-index: 1;
    pointer-events: none;
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--tv-bg-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: marquee 60s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: var(--tv-text-secondary);
}

.ticker-item strong {
    color: var(--tv-text-primary);
}

.ticker-item .up { color: #089981; }
.ticker-item .down { color: #f23645; }

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* TV Card (Based on visa-card-two) */
.tv-card {
    position: relative;
    background-color: var(--tv-bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
}

.tv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(41, 98, 255, 0.2);
    border-color: var(--tv-color-brand);
    background-color: var(--tv-color-brand);
}

.tv-card__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transition: transform 0.6s ease;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.tv-card:hover .tv-card__bg {
    transform: scale(1.1);
    opacity: 0.1;
}

.tv-card:hover .tv-card__title {
    color: #fff;
}

.tv-card:hover .tv-card__text {
    color: rgba(255, 255, 255, 0.9);
}

.tv-card:hover .tv-card__icon {
    background-color: #fff;
    color: var(--tv-color-brand);
}

.tv-card:hover .tv-card__link {
    color: #fff;
}

.tv-card__content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
}

.tv-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 12px;
    color: var(--tv-color-brand);
    margin-bottom: 25px;
    font-size: 24px;
}

.tv-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.tv-card__text {
    color: var(--tv-text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tv-card__link {
    display: inline-flex;
    align-items: center;
    color: var(--tv-color-brand);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.tv-card__link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.tv-card__link:hover i {
    transform: translate(3px, -3px);
}

/* TV Platform Section (Based on countries-two) */
.tv-platform-card {
    background: linear-gradient(145deg, var(--tv-bg-secondary), #161a25);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.tv-platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.tv-platform-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    fill: var(--tv-color-brand);
}

.tv-platform-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--tv-text-secondary);
}

.tv-platform-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--tv-color-brand);
    font-size: 14px;
}

/* TV News Card (Based on visa-card-four) */
.tv-news-card {
    background: var(--tv-bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.tv-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tv-news-image {
    height: 200px;
    overflow: hidden;
}

.tv-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tv-news-card:hover .tv-news-image img {
    transform: scale(1.1);
}

.tv-news-content {
    padding: 25px;
}

.tv-news-date {
    font-size: 0.85rem;
    color: var(--tv-text-secondary);
    margin-bottom: 10px;
}

.tv-news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tv-news-title a {
    color: var(--tv-text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.tv-news-title a:hover {
    color: var(--tv-color-brand);
}

/* Scroll Text (Marquee) */
.slide-text {
    padding: 20px 0;
    background: var(--tv-bg-secondary);
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.slide-text__scroll {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    text-transform: uppercase;
    line-height: 1;
}

.slide-text__group {
    display: inline-block;
    padding-right: 50px;
}

/* Community Stats Section */
.community-stats {
    background: linear-gradient(180deg, var(--tv-bg-base) 0%, var(--tv-bg-secondary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.community-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232962ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stat-card {
    background: rgba(30, 34, 45, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    background: rgba(30, 34, 45, 0.95);
    border-color: var(--tv-color-brand);
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -5px -5px 20px rgba(255, 255, 255, 0.05),
        0 0 30px rgba(41, 98, 255, 0.2) inset;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(41,98,255,0.3) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transform: scale(0.5) translateZ(-50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.stat-card:hover::after {
    opacity: 1;
    transform: scale(1.2) translateZ(-50px);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    z-index: 2;
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: rgba(41, 98, 255, 0.1);
    box-shadow: 0 0 20px rgba(41, 98, 255, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--tv-text-secondary);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    color: var(--tv-color-brand);
    filter: drop-shadow(0 0 10px rgba(41, 98, 255, 0.5));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--tv-text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--tv-text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--tv-text-secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    margin-top: 15px;
    line-height: 1.5;
    z-index: 2;
    position: relative;
}

.stat-card:hover .stat-number {
    background: linear-gradient(135deg, #fff 0%, #2962FF 50%, #fff 100%);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.stat-card:hover .stat-label {
    color: #fff;
    transform: translateY(-5px);
}

.stat-card:hover .stat-desc {
    opacity: 0.8;
    transform: translateY(0);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Footer */
footer {
    background-color: #000 !important;
    padding-top: 80px;
    padding-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-logo-section {
    margin-bottom: 40px;
}

.footer-slogan {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 10px;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: opacity 0.2s;
    opacity: 0.7;
}

.footer-social-link:hover {
    opacity: 1;
    color: #fff;
}

.footer-lang-selector {
    display: inline-flex;
    align-items: center;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 10px;
    margin-bottom: 30px;
}

.footer-lang-selector:hover {
    opacity: 1;
}

.footer-column-title {
    color: #787b86;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--tv-color-brand);
}

.footer-bottom-text {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    text-align: center;
    color: #fff;
    margin-top: 60px;
    letter-spacing: 5px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.copyright-text {
    color: #787b86;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 20px;
}

.copyright-text p {
    margin-bottom: 10px;
}

/* Video Section */
.video-one {
    position: relative;
    padding: 120px 0;
    background-color: var(--tv-bg-base);
    overflow: hidden;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.video-one__container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(41, 98, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-one__container:hover {
    box-shadow: 0 0 80px rgba(41, 98, 255, 0.5);
    transform: scale(1.01);
}

.video-one__video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.video-one__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-one__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

/* Download Section (Based on countries-two) */
.download-section {
    position: relative;
    background-color: #0b0e14;
    padding: 100px 0;
}

.download-card {
    background-color: var(--tv-bg-secondary);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: var(--tv-color-brand);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.download-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--tv-color-brand);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.download-card:hover .download-card__icon {
    background: var(--tv-color-brand);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.download-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.download-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.download-card__features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--tv-text-secondary);
    font-size: 0.95rem;
}

.download-card__features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--tv-color-brand);
    font-size: 12px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.download-btn:hover {
    background-color: var(--tv-color-brand);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(41, 98, 255, 0.3);
}

.download-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateX(5px);
}

/* About One Feature Item (New Section) */

.about-one__feature__item {
    background: var(--tv-bg-secondary);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-one__feature__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(41, 98, 255, 0.2);
    border-color: var(--tv-color-brand);
}

.about-one__feature__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    transition: transform 0.6s ease;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    pointer-events: none;
}

.about-one__feature__item:hover .about-one__feature__bg {
    transform: scale(1.1);
    opacity: 0.1;
}

.about-one__feature__icon-box {
    margin-bottom: 25px;
}

.about-one__feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 12px;
    color: var(--tv-color-brand);
    font-size: 24px;
    transition: all 0.3s ease;
}

.about-one__feature__item:hover .about-one__feature__icon {
    background-color: var(--tv-color-brand);
    color: #fff;
    transform: rotateY(180deg);
}

.about-one__feature__content {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.about-one__feature__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-one__feature__title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.about-one__feature__item:hover .about-one__feature__title a {
    color: var(--tv-color-brand);
}

.about-one__feature__text {
    color: var(--tv-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-one__feature__item:hover .about-one__feature__text {
    color: var(--tv-text-primary);
}

/* Custom Platform Download Buttons */
.btn-platform {
    border: 1px solid transparent;
    transition: all 0.3s ease;
    color: #fff !important;
}

.btn-platform .icon path {
    fill: #fff;
    transition: all 0.3s ease;
}

/* Windows: Blue */
.btn-windows {
    background-color: #fff;
    border-color: #fff;
    color: #0078D6 !important;
}

.btn-windows .icon path {
    fill: #0078D6;
}

.btn-windows:hover {
    background-color: #0078D6;
    border-color: #0078D6;
    color: #fff !important;
}

.btn-windows:hover .icon path {
    fill: #fff;
}

/* macOS: Silver/Grey */
.btn-macos {
    background-color: #7d7d7d;
    border-color: #7d7d7d;
}

.btn-macos:hover {
    background-color: #fff;
    color: #7d7d7d !important;
}

.btn-macos:hover .icon path {
    fill: #7d7d7d;
}

/* Linux: Red */
.btn-linux {
    background-color: #e50c37;
    border-color: #e50c37;
}

.btn-linux:hover {
    background-color: #fff;
    color: #e50c37 !important;
}

.btn-linux:hover .icon path {
    fill: #e50c37;
}

.pagination.pagination-dark {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.pagination.pagination-dark .page-status,
.pagination.pagination-dark .page-index,
.pagination.pagination-dark .page-pre,
.pagination.pagination-dark .page-next,
.pagination.pagination-dark .page-last,
.pagination.pagination-dark .page-numbar {
    display: inline-flex;
    align-items: center;
    margin: 0 6px;
}
.pagination.pagination-dark .page-numbar .page-num {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--tv-text-primary);
    text-decoration: none;
    line-height: 1;
}
.pagination.pagination-dark .page-numbar .page-num:hover {
    border-color: var(--tv-color-brand);
    color: var(--tv-color-brand);
}
.pagination.pagination-dark .page-numbar .page-num-current {
    background-color: var(--tv-color-brand);
    border-color: var(--tv-color-brand);
    color: #fff;
}
.pagination.pagination-dark .page-num {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--tv-text-primary);
    text-decoration: none;
    line-height: 1;
}
.pagination.pagination-dark .page-num:hover {
    border-color: var(--tv-color-brand);
    color: var(--tv-color-brand);
}
.pagination.pagination-dark .page-num-current {
    background-color: var(--tv-color-brand);
    border-color: var(--tv-color-brand);
    color: #fff;
}
