﻿@font-face {
    font-family: 'Regular';
    src: url('fonts/Regular.eot');
    src: url('fonts/Regular.eot') format('embedded-opentype'), url('fonts/Regular.woff2') format('woff2'), url('fonts/Regular.woff') format('woff'), url('fonts/Regular.ttf') format('truetype'), url('fonts/Regular.svg#Regular') format('svg');
}

@font-face {
    font-family: 'Bold';
    src: url('fonts/Bold.eot');
    src: url('fonts/Bold.eot') format('embedded-opentype'), url('fonts/Bold.woff2') format('woff2'), url('fonts/Bold.woff') format('woff'), url('fonts/Bold.ttf') format('truetype'), url('fonts/Bold.svg#Bold') format('svg');
}

body {
    font-family: 'Regular';
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none
}

.container {
    max-width: 1200px;
}

.header {
    display: block;
    position: relative;
    z-index: 100000;
    background-color: #131D38
}

.banner {
    height: 85px;
    border-bottom: 1px #313C5B solid;
    background-image: url(../images/bg.png);
    background-size: cover;
    background-position: center;
}

.top-header,
.main-nav {
    animation: slideFadeDown 0.8s ease forwards;
    background-color: #131D38
}

@keyframes slideFadeDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-icons {
    float: left;
    margin-top: 20px
}

    .social-icons a {
        color: #fff;
        margin-right: 7px;
        font-size: 16px;
        transition: opacity 0.3s ease;
        background-color: #131D38;
        border: 1px #313C5B solid;
        width: 39px;
        height: 39px;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        line-height: 39px;
    }

        .social-icons a:hover {
            opacity: 1;
        }

.live-btn {
    background: #B01302;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 1.6s infinite;
    float: left;
    margin-top: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 22, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(196, 22, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(196, 22, 28, 0);
    }
}


.logo {
    float: right
}

    .logo img {
        height: 85px;
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    top: 13px;
    left: 20px;
    position: absolute
}

.main-nav {
    background: #0b1a3a;
}

    .main-nav ul {
        list-style: none;
        display: block;
        margin: 0;
        padding: 0;
    }

    .main-nav li {
        margin-left: 15px;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(-5px);
        animation: navItem 0.4s ease forwards;
        display: inline-block;
    }

        .main-nav li:nth-child(1) {
            animation-delay: 0.05s;
        }

        .main-nav li:nth-child(2) {
            animation-delay: 0.1s;
        }

        .main-nav li:nth-child(3) {
            animation-delay: 0.15s;
        }

        .main-nav li:nth-child(4) {
            animation-delay: 0.2s;
        }

        .main-nav li:nth-child(5) {
            animation-delay: 0.25s;
        }

        .main-nav li:nth-child(6) {
            animation-delay: 0.3s;
        }

        .main-nav li:nth-child(7) {
            animation-delay: 0.35s;
        }

        .main-nav li:nth-child(8) {
            animation-delay: 0.4s;
        }

        .main-nav li:nth-child(9) {
            animation-delay: 0.45s;
        }

        .main-nav li:nth-child(10) {
            animation-delay: 0.5s;
        }

        .main-nav li:nth-child(11) {
            animation-delay: 0.55s;
        }

@keyframes navItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 1;
    padding: 12px 0 12px 15px;
    display: inline-block;
    font-family: 'Bold';
}

    .main-nav a::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #B01302;
        transition: width 0.3s ease;
    }

    .main-nav a:hover::after {
        width: 100%;
    }


.hero {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
}

    .hero img {
        width: 100%;
        height: 470px;
        object-fit: cover;
        object-position: center
    }

.hero-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    color: white;
    padding: 30px;
    background: linear-gradient(rgba(0,0,0,0) 0%,#000 100%);
}

.hero-tag {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-title {
    clear: both;
    font-size: 42px;
    font-weight: normal;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    font-family: 'Bold';
}

.hero-date {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.news-card {
    background: white;
    overflow: hidden;
    cursor: pointer;
}



.news-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    float: right;
    margin-left: 16px;
}

.news-image-med {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    float: right;
    margin-left: 16px;
}

.news-content {
    padding: 0;
}

.news-title {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Bold';
}

.news-title-med {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Bold';
}

.news-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.news-category {
    color: #b01302;
    margin-left: 10px;
}

.padding {
    padding: 3rem 0
}

.live {
    background-color: #b01302;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem
}

    .live span {
        display: inline-block;
        color: #fff;
        padding: 10px;
    }

    .live b {
        color: #fff;
        float: left;
        padding: 10px;
    }

.puk {
    display: block;
    box-shadow: inset 0 270px 0 0 #131D38;
}

.puk-logo {
    position: absolute;
    right: 10%;
    top: 0;
}

.puk-title {
    display: block;
    margin-bottom: 1.7rem;
}

    .puk-title image {
        float: right
    }

    .puk-title h1 {
        display: inline-block;
        margin-right: 10px;
        font-family: 'Bold';
        font-size: 24px;
        color: #fff
    }

.main-card {
    display: block;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.03);
    background: #fff;
    border: 1px solid #e0e3eb;
    overflow: hidden;
    height: 100%;
}

    .main-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        object-position: center;
    }

.main-card-txt {
    display: block;
    padding: 1rem;
}

.wtar-card {
    display: block;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.03);
    background: #fff;
    border: 1px solid #e0e3eb;
    overflow: hidden;
    height: 100%;
    padding: 16px;
}

    .wtar-card img {
        width: 80px;
        height: 80px;
        float: right;
        margin-left: 10px;
        margin-bottom: 1rem
    }

    .wtar-card b {
        color: #b01302;
    }

    .wtar-card .news-title {
        display: block;
        clear: both
    }

.title {
    display: block;
    margin-bottom: 1.5rem;
    background-image: url(../images/dot.png);
    background-repeat: repeat-x;
    background-size: auto;
}

    .title h1 {
        display: inline-block;
        font-family: 'Bold';
        font-size: 24px;
        background-color: #fff;
        padding-left: 20px;
        color: #131d38;
        margin: 0;
    }

.mm {
    background-color: #131D38;
    background-image: url(../images/bg.png);
}

.mm-title {
    font-size: 2rem;
    color: #fff;
}

.mm-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fff;
    color: #CA171E;
    padding: 5px 5px 2px;
    border-radius: 5px;
}

.mm-wrapper {
    overflow: hidden;
    position: relative;
}

.mm-wrapper-img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.mm-wrapper-img2 {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.reel {
    background-color: #131D38;
    border-top: 1px #2C395E solid;
    padding-top: 2rem
}

.reel-img {
    width: 100%;
    height: 305px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.reel h6 {
    color: #fff;
    line-height: 1.5;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 23%;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e3eb;
}



.slide-image {
    width: 100%;
    height: 166px;
    object-fit: cover;
    position: relative;
}



.slide-content {
    padding: 10px;
    text-align: center;
}

.slide-title {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color: #333;
    font-family: 'Bold';
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

    .carousel-nav:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
        right: 10px;
    }

    .carousel-nav.next {
        left: 10px;
    }

.carousel-track {
    direction: rtl;
    touch-action: pan-y;
}
/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: #e74c3c;
        width: 30px;
        border-radius: 6px;
    }

    .dot:hover {
        background: #f39c12;
    }

.show-slider {
    box-shadow: inset 0 270px 0 0 #B01302;
}

.popular-grid {
    grid-template-columns: repeat(3, 1fr);
}

.footer {
    display: block;
    background-color: #131D38;
    background-image: url(../images/bg.png);
}

.footer-top {
    display: block;
    padding: 2rem 0;
    border-bottom: 1px #313C5B solid;
}

.footer-logo {
    float: right
}

.footerlinks {
    display: block;
    padding: 2rem 0;
}

    .footerlinks h4 {
        color: #fff;
        font-size: 18px;
        border-bottom: 1px #b01302 solid;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 1rem
    }

    .footerlinks a {
        display: block;
        color: #fff;
        font-size: 14px;
        margin-bottom: 5px
    }

.footer-xtra {
    display: block;
    padding: 2rem 0;
    border-top: 1px #313C5B solid;
    text-align: center;
}

    .footer-xtra h4 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-xtra img {
        width: 110px;
        margin: 0 5px;
    }

    .footer-xtra p {
        color: #fff;
        font-size: 14px;
        display: block;
        margin-top: 20px;
    }

.btn-primary {
    background-color: #b01302;
    border: 0;
    padding: 0.375rem 2rem;
    display: block;
}

    .btn-primary:hover {
        background-color: rgba(0,0,0,0.5)
    }

.detail-page {
    display: block;
    border-bottom: 1px #EAEAEA solid
}

.detail {
    display: block;
}

    .detail h1 {
        font-family: 'Bold';
    }

    .detail img {
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        border-radius: 12px;
    }

    .detail p {
        font-size: 18px;
        line-height: 1.9;
    }

    .detail iframe {
        width: 100%;
        height: 400px;
        margin-bottom: 1rem;
    }

    .detail blockquote {
        margin: 1rem 0 1rem;
        font-family: 'Bold';
        font-size: 32px;
        border-bottom: 1px #b01302 solid;
        padding-bottom: 20px;
    }

.detail-xtra {
    display: block;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.03);
    background: #fff;
    border: 1px solid #e0e3eb;
    overflow: hidden;
    padding: 1.5rem;
}

    .detail-xtra h1 {
        display: inline-block;
        font-family: 'Bold';
        font-size: 24px;
        background-color: #fff;
        padding-left: 20px;
        color: #131d38;
    }

    .detail-xtra ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .detail-xtra li {
        border-bottom: 1px #EAEAEA solid;
        padding: 10px 0;
    }

        .detail-xtra li:last-child {
            border: 0
        }

.wtar-detail-img {
    display: block;
    clear: both
}

    .wtar-detail-img img {
        width: 80px;
        height: 80px;
        float: right;
        margin: 0 0 1rem 10px;
    }

    .wtar-detail-img b {
        color: #b01302;
    }

.show-detai-txt {
    display: block
}

    .show-detai-txt h2 {
        font-family: 'Bold';
    }

    .show-detai-txt p {
        font-size: 18px;
        line-height: 1.9;
    }

@media (max-width: 1200px) {
    .container {
        max-width: 990px;
    }

    .main-nav li {
        margin-left: 9px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 12px 0 12px 12px;
    }

    .carousel-slide {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 990px) {

    .social-icons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

        .main-nav.active {
            max-height: inherit;
        }

        .main-nav ul {
            flex-direction: column;
        }

        .main-nav li {
            display: block;
            border-bottom: 1px #313c5b solid;
            text-align: center;
        }

        .main-nav a {
            font-size: 12px;
            padding: 12px;
        }

    .live-btn {
        margin-top: 11px;
        margin-left: 60px;
    }

    .logo img {
        height: 60px;
    }

    .banner {
        height: 60px;
    }

    .Show {
        display: block
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-content {
        bottom: 0;
        right: 0;
        left: 0;
        padding: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image-med {
        width: 100px;
        height: 100px;
    }

    .news-title-med {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .news-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .carousel-slide {
        min-width: calc(50% - 10px);
    }

    .slide-image {
        height: 200px;
    }

    .slide-title {
        font-size: 1.1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-logo {
        float: none;
        width: 100%;
    }
}



@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .detail iframe {
        height: 250px;
    }

    .detail p {
        font-size: 15px;
    }

    .padding {
        padding: 1rem 0;
    }

    .detail blockquote {
        font-size: 22px;
    }

    .mm-wrapper-img {
        height: auto;
    }

    .puk-title h1 {
        font-size: 18px;
    }

    .puk-logo {
        position: absolute;
        right: 0%;
        top: 0;
        width: 50%;
    }

    .carousel-slide {
        min-width: 100%;
    }


    .slide-content {
        padding: 15px;
    }

    .carousel-slide {
        width: 25%;
    }

    .carousel-track {
        gap: 20px;
    }

    .title h1 {
        font-size: 20px;
    }
}

@media (max-width: 450px) {
    .container {
        width: 100%
    }
}
