

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    min-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul, ol {
    list-style: none;
}

.site-header {
    background: #1a1a1a;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex: 1;
}

.header-nav .header-menu-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav .header-menu-list li a,
.header-nav .header-menu-list li .menu-btn,
.menu-btn {
    display: inline-block;
    background: #E31837;
    color: #fff;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: bolder;
    text-transform: uppercase;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.header-nav .header-menu-list li a:hover,
.menu-btn:hover {
    background: #c41530;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    align-items: center;
    gap: 20px;
}

.header-logo img {
    height: 45px;
    width: auto;
    position: relative;
    top: 5px;
}

.header-divider {
    display: none;
    width: 1px;
    height: 40px;
    background: rgb(137 4 4);
}

.header-brand-name {
    display: none;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lang-switcher:hover {
    opacity: 1;
}

.globe-icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.lang-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.site-main {
    padding-top: 60px; 
    width: 100%;
    max-width: 100%;
}

.section-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slide a {
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(227, 24, 55, 0.8);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: #E31837;
    border-color: #E31837;
}

.section-intro {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden; 
}

.intro-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    min-height: 200px; 
}

.intro-signature {
    position: absolute;
    left: 40px;
    top: 60px;
    width: 225px;
    z-index: 10;
}

.intro-signature img {
    width: 100%;
    height: auto;
}

.intro-center {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.intro-title {
    font-size: 48px;
    font-weight: 800;
    color: #E31837;
    margin-bottom: 8px;
    letter-spacing: 3px;
    font-style: italic;
}

.intro-subtitle {
    margin-bottom: 25px;
}

.intro-subtitle span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #E31837;
    font-style: italic;
    line-height: 1.5;
}

.intro-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.intro-logos img {
    width: auto;
    padding: 20px 50px;
}

.intro-person-placeholder {
    width: 320px;
    flex-shrink: 0;
}

.intro-person {
    position: absolute;
    left: 50%;
    margin-left: 250px;
    top: 22px;
    width: 450px;
    z-index: 1;
}

.intro-person img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.intro-videos {
    position: relative;
    z-index: 5;
    padding-bottom: 15px; 
    
    overflow: visible;
}

.intro-videos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.video-nav {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.video-prev {
    left: -5px;
}

.video-next {
    right: -5px;
}

.video-nav:hover {
    background: #f5f5f5;
    
}

.video-nav svg {
    width: 20px;
    height: 20px;
}

.video-slider {
    
    width: auto;
    overflow: hidden;
    position: relative;
    margin: 0 60px;
}

.video-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.video-item {
    width: calc((100% - 50px) / 3);
    min-width: calc((100% - 50px) / 3);
    max-width: calc((100% - 50px) / 3);
    flex-shrink: 0;
    overflow: hidden;
    background: transparent;
}

.video-link {
    display: block;
    text-decoration: none;
    color: #333;
    position: relative;
}

.video-thumb {
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s;
}

.video-play-icon svg {
    width: 50px;
    height: 50px;
}

.video-link:hover .video-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title-overlay {
    display: none;
}

.video-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 93%) 100%);
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    padding: 25px 15px 12px;
    margin: 0;
}

@media (max-width: 1024px) {
    .intro-wrapper {
        padding: 15px 20px;
    }

    .intro-signature {
        width: 150px;
        left: 20px;
        top: 50px;
    }

    .intro-person {
        width: 320px;
        margin-left: 100px;
    }

    .intro-person-placeholder {
        width: 220px;
    }

    .intro-title {
        font-size: 36px;
    }

    .intro-subtitle span {
        font-size: 16px;
    }

    .intro-logos img {
        padding: 15px 30px;
    }

    .video-item {
        width: calc(50% - 13px);
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 900px) {
    .intro-person {
        width: 280px;
        margin-left: 50px;
    }

    .intro-person-placeholder {
        width: 180px;
    }

    .intro-signature {
        width: 120px;
        left: 15px;
        top: 45px;
    }
}

@media (max-width: 768px) {
    
    .site-header {
        padding: 10px 0;
        position: absolute;
    }

    .header-container {
        padding: 0 15px;
    }

    .header-left {
        flex: 0 0 auto;
    }

    .header-nav .header-menu-list li a,
    .header-nav .header-menu-list li .menu-btn,
    .menu-btn {
        padding: 2px;
        font-size: 0;
        border-radius: 23px;
        background: #E31837;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }
    .mb-hiden {
        display: none;
    }

    .header-nav .header-menu-list li a::before,
    .menu-btn::before {
        content: '';
        display: block;
        width: 30px;
        height: 30px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .header-center {
        position: static;
        transform: none;
        flex: 1;
        justify-content: center;
        gap: 8px;
    }

    .header-logo img {
        height: 35px;
        left: 20px;
    }

    .header-brand-name {
        font-size: 11px;
        letter-spacing: 1px;
        display: none;
    }

    .header-divider {
        height: 18px;
        display: none;
    }

    .header-right {
        flex: 0 0 auto;
        display: none;
    }

    .lang-switcher .lang-text {
        display: none;
    }

    .lang-switcher .globe-icon {
        width: 20px;
        height: 20px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .section-intro {
        background-size: cover;
        padding-bottom: 0;
        display: block;
        position: relative;
        overflow: visible;
        min-height: 650px;
    }

    .intro-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px 15px;
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 100%;
    }

    .intro-signature {
        display: block !important;
        position: absolute;
        left: 5%;
        top: 340px;
        width: 90%;
        max-width: 170px;
        z-index: 10;
        margin: 0;
        padding: 0;
    }

    .intro-person {
        position: absolute !important;
        left: auto !important;
        right: 0 !important;
        top: 316px;
        margin: 0 !important;
        width: 75%;
        max-width: 75%;
        z-index: 1;
        padding: 0;
    }

    .intro-person img {
        width: 100%;
        height: auto;
        display: block;
    }

    .intro-person-placeholder {
        display: none;
    }

    .intro-center {
        padding: 0;
        order: 1;
        margin-bottom: 10px;
    }

    .intro-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .intro-subtitle {
        margin-bottom: 15px;
    }

    .intro-subtitle span {
        font-size: 16px;
    }

    .intro-logos {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: center;
    }

    .intro-logos img {
        max-height: auto;
        padding: 8px 12px;
    }

    .intro-videos {
        padding: 0 0 15px;
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        z-index: 5;
    }

    .intro-videos-container {
        padding: 0 20px;
        gap: 10px;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .video-slider {
        overflow: hidden;
        width: 100%;
        margin: 0;
    }

    .video-item {
        width: 100%;
        min-width: 100%;
    }

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-nav svg {
        width: 24px;
        height: 24px;
    }

    .video-desc {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 93%) 100%) !important;
        color: #fff !important;
        font-size: 14px;
        padding: 30px 15px 15px !important;
        line-height: 1.5;
    }

    .video-thumb {
        position: relative;
    }

    .video-nav {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 12px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

    .video-prev {
        left: 10px;
    }

    .video-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .section-intro {
        min-height: 600px;
    }

    .intro-person {
        top: 290px;
    }

    .intro-signature {
        top: 315px;
        max-width: 150px;
    }
}

@media (max-width: 390px) {
    .section-intro {
        min-height: 580px;
    }

    .intro-person {
        top: 280px;
    }

    .intro-signature {
        top: 305px;
        max-width: 140px;
    }
}

@media (max-width: 360px) {
    .section-intro {
        min-height: 560px;
    }

    .intro-person {
        top: 270px;
    }

    .intro-signature {
        top: 295px;
        max-width: 130px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:wght@800&display=swap');

body {
    opacity: 0;
    animation: fadeInBody 0.5s ease forwards;
}

@keyframes fadeInBody {
    to { opacity: 1; }
}

.site-header {
    transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-background img {
    transition: transform 0.1s ease-out;
}

.video-play-btn {
    box-shadow: 0 0 0 0 rgba(196, 18, 48, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 18, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(196, 18, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(196, 18, 48, 0);
    }
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.signing-item {
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.signing-item:hover {
    box-shadow: 0 10px 40px rgba(196, 18, 48, 0.3);
}

.quote-section {
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(196, 18, 48, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.article-item {
    border-left: 3px solid transparent;
}

.article-item:hover {
    border-left-color: var(--color-primary);
}

.partner-logos img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.footer-menu a {
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-menu a:hover::after {
    width: 100%;
}

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
    .intro-name {
        font-size: 1.8rem;
    }

    .intro-subtitle {
        font-size: 1.1rem;
    }

    .quote-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .quote-text::before {
        display: none;
    }
    .d-none {
        display: none;
    }
    .d-block {
        display: block;
    }

    .signing-brand {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }
    .person-title-line1 {
        font-size: 13px;
    }

    .person-title-line2 {
        font-size: 13px;
    }

    .person-year {
        font-size: 13px;
    }
    .director-content {
        gap: 30px;
    }

    .footer-partners-mobile {
        width: 100%;
    }

    .partners-mobile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px 20px;
    }

    .partner-group:nth-child(1) { grid-area: 1 / 1; } 
    .partner-group:nth-child(2) { grid-area: 1 / 2; } 
    .partner-group:nth-child(3) { grid-area: 2 / 1; } 
    .partner-group:nth-child(4) { grid-area: 2 / 2; } 

    .partner-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .partner-group-title {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    .partner-logos {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .partner-logos .partner-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .partner-logos .partner-logo img {
        max-height: 32px;
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0.95;
        transition: opacity 0.3s ease;
    }

    .partner-logos .partner-logo:hover img {
        opacity: 1;
    }
    .footer-menu {
        display: none !important;
    }
    .footer-copyright {
        color: white;
        font-size: 17px;
    }

}

@media (min-width: 821px) {
    .d-md-block {
        display: block;
    }
    .d-md-none {
        display: none;
    }

    .footer-copyright {
        color: #666;
        font-size: 11px;
    }
    .footer-partners-mobile {
        display: none !important;
    }
    .kp-stat-item .stat-title {
        font-size: 20px;
    }
}

@media print {
    .site-header,
    .video-modal,
    .slider-nav {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

.kp-main-wrapper {
    background: linear-gradient(180deg, #55100e 0%, #560000 30%, #2b0000 100%);
    padding: 0;
}

.kp-statistics-section {
    background: transparent;
    padding: 30px 40px;
}

.kp-statistics-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.kp-stat-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1;
    height: 175px;
}

.kp-stat-item .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #C42221;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.kp-stat-item .stat-title {
    font-size: 26px;
    color: #C42221;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
}

.kp-kevin-section {
    background: transparent;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.kp-kevin-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.kp-kevin-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kp-kevin-name-title {
    margin-bottom: 20px;
}

.kp-kevin-name-title .kevin-name {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 28px;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kp-kevin-name-title .kevin-name .name-kevin {
    color: #E53935;
    margin-right: 8px;
}

.kp-kevin-name-title .kevin-name .name-phillips {
    color: #FFFFFF !important;
}

.kp-kevin-name-title .kevin-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 800;
    color: #F5F0E8;
    margin: 0 0 20px 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.kevin-logo-inline {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.kevin-logo-inline img {
    max-height: 50px;
    width: auto;
    vertical-align: middle;
}

.kp-kevin-name-title .kevin-logo {
    margin-top: 5px;
}

.kp-kevin-name-title .kevin-logo img {
    height: 45px;
    width: auto;
}

.kp-kevin-main-image {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.kp-kevin-main-image img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    border-radius: 8px;
    object-fit: contain;
    object-position: bottom;
}

.kp-kevin-main-image .kevin-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.kp-kevin-main-image .kevin-badge img {
    width: 80px;
    height: auto;
}

.kp-kevin-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.kevin-description-top p,
.kevin-description-bottom p {
    color: #D4C5B5;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.kevin-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.kevin-gallery.kevin-gallery-row {
    grid-template-columns: repeat(2, 1fr);
}

.kevin-gallery-item {
    border-radius: 0px;
    overflow: hidden;
    background: linear-gradient(135deg, #6B2540 0%, #4A1A2C 100%);
}

.kevin-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kevin-gallery-item:hover img {
    transform: scale(1.05);
}

.kp-ambassadors-section {
    background: transparent;
    padding: 60px 40px;
}

.kp-ambassadors-container {
    max-width: 1400px;
    margin: 0 auto;
}

.kp-ambassadors-header {
    text-align: center;
    margin-bottom: 30px;
}

.kp-ambassadors-header .ambassadors-title {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    font-size: 130px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2em !important;
    word-spacing: 0.15em;
    background: linear-gradient(90deg, #1a0505 0%, #8B2020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
    text-align: center;
    padding-left: 0.2em;
}

.kp-ambassadors-header .ambassadors-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
    margin-top: -15px;
}

.kp-ambassadors-header .ambassadors-subtitle .subtitle-prefix {
    color: #FFFFFF;
}

.kp-ambassadors-header .ambassadors-subtitle .subtitle-highlight {
    color: #C42221;
}

.kp-ambassadors-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: stretch;
}

.kp-ambassadors-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.kp-ambassadors-right {
    flex: 1;
}

.kp-ambassadors-main-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.kp-ambassadors-main-image img {
    width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    object-position: bottom left;
}

.kp-ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
}

.kp-ambassador-card {
    display: flex;
    flex-direction: column;
}

.ambassador-image-wrapper {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6B2540 0%, #4A1A2C 100%);
}

.ambassador-image-wrapper img.ambassador-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambassador-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6B2540 0%, #4A1A2C 100%);
}

.ambassador-brand-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

.ambassador-brand-badge .brand-j88 {
    background: #FFC107;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.ambassador-brand-badge .brand-abcvip img {
    height: 28px;
    width: auto;
}

.ambassador-info {
    padding: 0;
}

.ambassador-info .ambassador-description {
    color: #D4C5B5;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kp-quote-section {
    background-image: url('assets/images/background-section-two.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.kp-quote-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.kp-quote-content {
    text-align: left;
}

.kp-quote-text {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.kp-quote-text .quote-mark {
    color: #FFFFFF;
    font-size: 48px;
}

.kp-quote-author {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.kp-quote-author .quote-line {
    flex: 0 0 80px;
    height: 2px;
    background: #FFFFFF;
}

.kp-quote-author .quote-author-name {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.kp-quote-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.kp-quote-image img {
    width: auto;
    position: relative;
    top: 60px;
}

@media screen and (max-width: 1024px) {
    .kp-kevin-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kp-kevin-left {
        
    }

    .kp-kevin-main-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .kp-ambassadors-header .ambassadors-title {
        font-size: 78px;
        letter-spacing: 0.2em;
        padding-left: 0.2em;
    }

    .kp-ambassadors-header .ambassadors-subtitle {
        font-size: 28px;
    }

    .kp-video-news-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kp-video-news-section {
        display: block;
        order: 5;
        position: relative;
        padding: 30px 15px;
    }

    .kp-news-column {
        display: none;
    }

    .kp-video-news-container {
        display: block;
    }

    .kp-video-player {
        width: 100%;
    }

    .kp-banner-section {
        display: block;
    }
}

@media screen and (max-width: 820px) {
    
    .kp-main-wrapper {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .kp-kevin-section {
        padding: 30px 15px 0;
        position: relative;
        order: 1;
    }

    .kp-statistics-section {
        padding: 30px 15px 20px;
        position: absolute;
        top: 500px;
        z-index: 10;
        width: 100%;
    }
    .kp-banner-section {
        padding: 0px !important;
    }

    .kp-statistics-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .kevin-gallery.kevin-gallery-row {
        display: block;
    }
    .kevin-gallery.kevin-gallery-row .kevin-gallery-item {
        margin-bottom: 10px;
    }
    .intro-center {
        min-width: 100%;
    }

    .kp-stat-item {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 36px 10px 7px 7px;
        flex-direction: row;
        text-align: center;
        
        position: relative;
        margin-top: 15px;
        border-radius: 0;
    }

    .kp-stat-item::before {
        content: 'Sá»° KIá»†N Ná»”I Báº¬T';
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        background: #C42221;
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 0px;
        white-space: nowrap;
    }

    .kp-stat-item .stat-number {
        font-size: 52px;
    }

    .kp-stat-item .stat-title {
        font-size: 18px;
    }

    .kp-ambassadors-section {
        order: 3;
    }

    .kp-quote-section {
        order: 4;
    }

    .kp-video-news-section {
        display: block;
        order: 5;
        position: relative;
        padding: 30px 15px;
    }

    .video-thumbnail {
        min-height: 200px !important;
    }

    .video-slides-container {
        min-height: 200px;
    }

    .video-thumbnail .play-btn {
        width: 55px !important;
        height: 55px !important;
    }

    .video-wrapper button.nav-arrow {
        width: 30px;
        height: 30px;
    }

    .video-slide .video-description-overlay {
        padding: 40px 15px 15px;
    }

    .video-description {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .kp-news-column {
        display: none !important;
    }

    .kp-video-news-container {
        display: block;
    }

    .kp-video-player {
        width: 100%;
    }

    .kp-kevin-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kp-kevin-left {
        order: -1;
    }

    .kp-kevin-name-title {
        
    }

    .kp-kevin-name-title .kevin-name {
        
    }

    .kp-kevin-name-title .kevin-title {
        
    }

    .kevin-logo-inline img {
        max-height: 28px;
    }

    .kp-kevin-main-image {
        max-width: 320px;
        margin: 0 auto;
        padding-bottom: 150px;
    }

    .kevin-description-top,
    .kevin-description-bottom {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 5px;
        text-align: justify;
    }

    .kevin-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .kevin-gallery-item img {
        border-radius: 0px;
    }

    .kevin-gallery-row {
        grid-template-columns: 1fr 1fr !important;
    }
    .kp-ambassadors-right {
        margin-top: -279px;
    }

    .kp-ambassadors-section {
        padding: 40px 15px;
    }

    .kp-ambassadors-header .ambassadors-title {
        font-size: 63px;
        letter-spacing: 0.15em;
        padding-left: 0.15em;
        word-spacing: 0.1em;
    }

    .kp-ambassadors-header .ambassadors-subtitle {
        font-size: 20px;
        margin-top: -5px;
    }

    .kp-ambassadors-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kp-ambassadors-left {
        display: block;
        order: -1;
    }

    .kp-ambassadors-main-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .kp-ambassadors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ambassador-image-wrapper {
        aspect-ratio: 16/10;
    }

    .kp-quote-section {
        padding: 40px 20px 0;
    }

    .kp-quote-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .kp-quote-content {
        order: 1;
    }

    .kp-quote-text .quote-mark {
        display: none;
    }

    .kp-quote-text {
        font-size: 22px;
        line-height: 1.5;
        font-style: italic;
        text-align: center;
    }

    .kp-quote-text::before {
        content: '" ';
        font-size: 28px;
        font-style: normal;
    }

    .kp-quote-text::after {
        content: ' "';
        font-size: 28px;
        font-style: normal;
    }

    .kp-quote-author {
        justify-content: center;
        flex-direction: row;
        gap: 15px;
        margin-top: 20px;
    }

    .kp-quote-author .quote-line {
        flex: 0 0 60px;
    }

    .kp-quote-author .quote-author-name {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .kp-quote-image {
        order: 2;
        justify-content: center;
    }

    .kp-quote-image img {
        max-height: 350px;
        top: 20px;
    }

    .kp-video-news-title h2 {
        font-size: 15px;
        letter-spacing: 15px !important;
        font-family: Sofia Sans Extra Condensed;
        font-weight: 800;
        line-height: 48px;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
    }

    .kp-banner-section {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .kp-stat-item .stat-number {
        font-size: 42px;
    }

    .kp-stat-item .stat-title {
        font-size: 16px;
    }

    .kp-kevin-name-title .kevin-name {
        
    }

    .kp-kevin-name-title .kevin-title {
        
    }

    .kevin-logo-inline img {
        max-height: 25px;
    }

    .kp-ambassadors-header .ambassadors-title {
        font-size: 41px;
        letter-spacing: 0.1em;
        padding-left: 0.1em;
    }

    .kp-ambassadors-header .ambassadors-subtitle {
        font-size: 12px;
    }

    .kp-quote-text {
        font-size: 14px;
    }

    .kp-video-news-title h2 {
        font-size: 24px;
        letter-spacing: 0.1em;
    }
}

.kp-video-news-section {
    background: #1a0808;
    padding: 60px 40px 0;
    position: relative;
}

.kp-video-news-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.kp-video-player {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #2a1515;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-slides-container {
    position: relative;
    width: 100%;

}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.video-slide .video-description-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 80px 25px 25px;
    z-index: 3;
}

.video-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    flex: 1;
    min-height: 300px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}

.video-thumbnail .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5;
}

.video-thumbnail .play-btn svg {
    width: 100%;
    height: 100%;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto;
}

.nav-arrow.prev {
    left: 15px;
}

.nav-arrow.next {
    right: 15px;
}

.nav-arrow:hover {
    background: #C42221;
    border-color: #C42221;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

.video-description-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 80px 25px 25px;
}

.video-description {
    color: #D4C5B5;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    font-style: italic;
}

.kp-news-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.kp-news-column .arrow-top {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.kp-news-column .arrow-bottom {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.kp-news-list-wrapper {
    width: 100%;
    overflow: hidden;

    max-height: 417px;
}

.news-scroll-arrows {
    display: flex;
    justify-content: center;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.scroll-arrow:hover:not(.disabled) {
    border-color: #C42221;
    color: #C42221;
    background: rgba(196, 34, 33, 0.1);
    transform: scale(1.1);
}

.scroll-arrow:active:not(.disabled) {
    transform: scale(0.95);
}

.scroll-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

.scroll-arrow svg {
    width: 18px;
    height: 18px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
    transition: transform 0.4s ease;
}

.news-item {
    display: flex;
    gap: 0;
    padding: 0;
    background: transparent;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
    height: 127px;

    box-sizing: border-box;
}

.news-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.news-item .news-thumb{
    height: 100%;
}

.news-thumb {
    width: 40%;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    background: #2a1515;
}

.news-thumb img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 100%;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
    padding: 10px 20px;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}
.site-footer .news-content {
    background: #ffffff00;
}

.news-title {
    color: #C42221;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    color: #666;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kp-video-news-title {
    text-align: center;
    margin-top: 50px;
}

.kp-video-news-title h2 {
    font-size: 72px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 32px;
    font-family: Sofia Sans Extra Condensed;
    line-height: 48px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;

}

.kp-video-news-title .name-kevin {
    color: #C42221;
}

.kp-video-news-title .name-phillips {
    color: #FFFFFF;
}

.kp-banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px 0;
    position: relative;
}

.kp-four-people-banner {
    text-align: center;
    line-height: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.kp-four-people-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    vertical-align: bottom;
}

@media screen and (max-width: 992px) {
    .kp-video-news-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kp-news-column .arrow-top,
    .kp-news-column .arrow-bottom {
        position: static;
        transform: none;
        margin: 10px 0;
    }

    .kp-video-news-title h2 {
        letter-spacing: 31px;
        font-family: Sofia Sans Extra Condensed;
        font-weight: 800;
        font-size: 60px;
        line-height: 48px;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
    }
}

@media screen and (max-width: 576px) {
    .kp-video-news-section {
        padding: 40px 20px 0;
    }

    .news-thumb {
        width: 120px;
    }

    .news-title {
        font-size: 14px;
    }

    .kp-video-news-title h2 {
        font-size: 32px;
        letter-spacing: 3px;
    }
}

.site-footer {
    background: #1C0F0F;
    padding: 50px 60px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-people {
    display: flex;
    gap: 50px;
    flex: 1;
}

.footer-person-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.person-image {
    width: 100px;
    height: 130px;
    overflow: hidden;
    flex-shrink: 0;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.person-details {
    display: flex;
    flex-direction: column;
}

.person-signature {
    margin-bottom: 10px;
}

.person-signature img {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.person-info {
    color: #A0A0A0;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.person-title-line1 {
    color: #888;
    margin-bottom: 2px;
}

.person-title-line2 {
    color: #C9A227;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 13px;
}

.person-year {
    color: #C9A227;
    font-size: 11px;
}

.footer-partners {
    flex-shrink: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px 25px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.partner-logo img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.partner-logo:hover img {
    opacity: 1;
}

.footer-bottom {
    padding-top: 25px;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 18px;
}

.footer-menu-link {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    padding: 0 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-menu-link::before {
    content: '|';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 300;
}

.footer-menu-link:first-child::before {
    display: none;
}

.footer-menu-link:hover {
    color: #C9A227;
}

@media screen and (max-width: 1200px) {
    .footer-people {
        gap: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px 20px;
    }

    .partner-logo img {
        max-height: 32px;
    }

    .kp-stat-item .stat-title {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .site-footer {
        padding: 40px 30px 25px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-people {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-partners {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 15px 25px;
    }

    .partner-logo img {
        max-height: 35px;
    }
}

@media screen and (max-width: 820px) {
    .site-footer {
        padding: 35px 20px 20px;
    }

    .footer-people {
        gap: 25px;
    }

    .footer-people {
        flex-direction: column;
        width: 100%;
    }

    .footer-person-item {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-person-item:last-child {
        border-bottom: none;
    }

    .person-image {
        display: none !important;
    }

    .person-signature {
        flex-shrink: 0;
    }

    .person-signature img {
        height: 65px;
    }

    .person-info {
        text-align: right;
    }

    .person-title-line2 {
        font-size: 14px;
    }

    .person-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-direction: row;
    }

    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px 18px;
    }

    .partner-logo img {
        max-height: 28px;
    }

    .footer-menu-link {
        padding: 0 15px;
        font-size: 11px;
    }
}

@media screen and (max-width: 576px) {
    .footer-person-item {
        gap: 10px;
        padding: 12px 0;
    }

    .person-signature img {
        height: 65px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px 12px;
    }

    .partner-logo img {
        max-height: 24px;
    }

    .footer-menu {
        flex-wrap: wrap;
    }

    .footer-menu-link {
        padding: 5px 12px;
    }

    .footer-menu-link::before {
        display: none;
    }
    .news-title {
        font-size: 13px !important;
    }
    .news-excerpt {
        font-size: 10px !important;
    }
}

.official-partner-badge {
    display: none;
}

@media (max-width: 821.98px) {
    .official-partner-badge {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 20px;
        position: relative;
    }

    .official-partner-badge::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        width: calc(50% - 110px);
        height: 36px;
        background: linear-gradient(90deg, transparent 0%, #8B0000 50%, #ff4d4d 100%);
    }
}

.official-partner-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: calc(50% - 110px);
    height: 36px;
    background: linear-gradient(90deg, #ff4d4d 0%, #8B0000 50%, transparent 100%);
}

.badge-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px 30px;
    background: linear-gradient(180deg, #ff6b4a 0%, #e63c2f 50%, #c41e10 100%);
    clip-path: polygon(11% 0%, 89% 0%, 100% 60%, 92% 100%, 8% 100%, 0% 60%);
    min-width: 280px;
    z-index: 2;
    box-shadow:
            0 4px 15px rgba(255, 77, 77, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.badge-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}
}

@media (max-width: 480px) {
    .official-partner-badge::before,
    .official-partner-badge::after {
        width: calc(47% - 84px);
    }

    .badge-container {
        padding: 8px 35px;
        min-width: 220px;
    }

    .badge-text {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 821px) {
    .official-partner-badge {
        display: none !important;
    }
}

.footer-news-mobile {
    display: none;
}

@media (max-width: 821.98px) {
    .footer-news-mobile {
        display: block;
    }

    .news-title-badge {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 25px;
        position: relative;
    }

    .news-title-badge::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: calc(50% - 80px);
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #8B0000 50%, #ff4d4d 100%);
    }

    .news-title-badge::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: calc(50% - 80px);
        height: 2px;
        background: linear-gradient(90deg, #ff4d4d 0%, #8B0000 50%, transparent 100%);
    }

    .news-badge-container {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 8px 40px;
        background: linear-gradient(180deg, #ff6b4a 0%, #e63c2f 50%, #c41e10 100%);
        clip-path: polygon(
                8% 0%,
                92% 0%,
                100% 50%,
                92% 100%,
                8% 100%,
                0% 50%
        );
        min-width: 160px;
        z-index: 2;
        box-shadow:
                0 4px 15px rgba(255, 77, 77, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .news-badge-text {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .news-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .news-item {
        display: flex;
        background: linear-gradient(180deg, #DD4812 0%, #A8051D 100%);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255, 77, 77, 0.3);
        padding: 12px;
        transition: border-color 0.3s ease;
    }

    .news-item:hover {
        border-color: rgba(255, 77, 77, 0.6);
    }

    .news-thumbnail {
        flex-shrink: 0;
        width: 46%;
        height: auto;
        border-radius: 8px;
        overflow: hidden;
    }

    .news-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .news-item:hover .news-thumbnail img {
        transform: scale(1.05);
    }

    .news-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
    }

    .news-title {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.3;
    }

    .news-title a {
        color: #FFFB00;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .news-title a:hover {
        color: #ff8c6a;
    }

    .news-excerpt {
        color: #cccccc;
        font-size: 16px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 380px) {
    .news-thumbnail {
        width: 46%;
    }

    .news-title {
        font-size: 14px;
    }

    .news-excerpt {
        font-size: 10px;
        -webkit-line-clamp: 3;
    }
}

@media (min-width: 821px) {
    .footer-news-mobile {
        display: none !important;
    }
}

.video-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-popup-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-popup-modal.active .video-popup-content {
    transform: scale(1);
}

.video-popup-content video {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-popup-close:hover {
    background: rgba(196, 18, 48, 0.8);
    transform: rotate(90deg);
}

.video-popup-close svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

body.video-popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .video-popup-content {
        max-width: 95%;
    }

    .video-popup-content video {
        max-height: 70vh;
    }

    .video-popup-close {
        top: -45px;
        right: 50%;
        transform: translateX(50%);
    }

    .video-popup-close:hover {
        transform: translateX(50%) rotate(90deg);
    }
}