* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.navbar {
    background: #0a0a0a;
    padding: 16px 0;
    border-bottom: 3px solid #cc0000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-circle {
    width: 62px;
    height: 62px;
    border: 3px solid #cc0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: 900;
    background: rgba(204, 0, 0, 0.1);
    flex-shrink: 0;
}

.logo-text h2 {
    color: white;
    margin: 0;
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text span {
    color: #cc0000;
}

.logo-text p {
    color: #aaa;
    margin: 0;
    letter-spacing: 6px;
    font-size: 11px;
    font-weight: 600;
}

.desktop-menu {
    display: block;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-link {
    color: #ddd;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background: rgba(204, 0, 0, 0.2);
}

.nav-link.active {
    color: white;
    background: #cc0000;
}

.mobile-dropdown {
    display: none;
    margin-left: auto;
}

.menu-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    transition: background 0.2s;
}

.menu-btn:hover {
    background: #aa0000;
}

.custom-menu {
    background: #111;
    border: 1px solid #222;
    border-top: 2px solid #cc0000;
    width: 230px;
    margin-top: 12px;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown {
    position: relative;
}

.custom-menu .dropdown-item {
    color: #ccc;
    padding: 13px 22px;
    font-size: 14px;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.custom-menu .dropdown-item:last-child {
    border-bottom: none;
}

.custom-menu .dropdown-item:hover {
    background: #cc0000;
    color: white;
}

@media (max-width: 1100px) {
    .desktop-menu {
        display: none;
    }

    .mobile-dropdown {
        display: block;
    }
}

@media (max-width: 576px) {
    .menu-btn {
        padding: 8px 18px;
        font-size: 11px;
    }

    .menu-btn i {
        font-size: 14px;
    }
}

.hero {
    height: 95vh;
    background: url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1600&auto=format&fit=crop') center/cover;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.82) 55%, rgba(180, 0, 0, 0.18) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 720px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    color: #ddd;
}

.tag {
    background: #cc0000;
    color: white;
    padding: 8px 22px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    display: inline-block;
}

.btn-main {
    background: #cc0000;
    color: white;
    text-decoration: none;
    padding: 14px 36px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    display: inline-block;
    transition: background 0.2s;
}

.btn-main:hover {
    background: #aa0000;
    color: white;
}

.title {
    margin-bottom: 42px;
}

.title h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    position: relative;
    padding-bottom: 14px;
}

.title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 4px;
    background: #cc0000;
}

.title p {
    color: #666;
    font-size: 16px;
    margin-top: 14px;
    line-height: 1.7;
}

.title.text-white p {
    color: #aaa;
}

.news-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.news-card:hover img {
    transform: scale(1.04);
}

.news-content {
    padding: 22px 24px 28px;
}

.news-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.news-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.carousel-section {
    background: #0d0d0d;
}

.custom-carousel {
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.78);
    color: white;
    padding: 20px 28px;
    max-width: 460px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    border-left: 4px solid #cc0000;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(204, 0, 0, 0.85);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.prev:hover,
.next:hover {
    background: #aa0000;
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

.video-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.video-card iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
}

.about {
    background: #fff;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #cc0000;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    font-weight: 600;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fafafa;
    border-radius: 10px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #cc0000;
    transition: 0.25s;
}

.value-item:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.value-icon {
    font-size: 1.35rem;
    color: #cc0000;
    min-width: 2rem;
    padding-top: 2px;
}

footer {
    background: #0a0a0a;
    border-top: 3px solid #cc0000;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
}

.footer-circle {
    width: 62px;
    height: 62px;
    border: 3px solid #cc0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 900;
    color: white;
    background: rgba(204, 0, 0, 0.08);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: transform 0.25s;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.08);
    color: white;
}

.facebook {
    background: #1877f2;
    box-shadow: 0 4px 18px rgba(24, 119, 242, 0.4);
}

.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    box-shadow: 0 4px 18px rgba(238, 42, 123, 0.4);
}

.twitter {
    background: #1a1a1a;
    box-shadow: 0 4px 18px rgba(150, 150, 150, 0.25);
}

.youtube {
    background: #cc0000;
    box-shadow: 0 4px 18px rgba(204, 0, 0, 0.45);
}

.tiktok {
    background: #1a1a1a;
    box-shadow: 0 4px 18px rgba(255, 0, 80, 0.3);
}

@media (max-width: 576px) {
    .custom-carousel {
        height: 380px;
    }

    .slide-info {
        left: 12px;
        right: 12px;
        bottom: 14px;
        max-width: none;
        clip-path: none;
        border-radius: 8px;
        padding: 16px 18px;
    }

    .prev,
    .next {
        width: 38px;
        height: 38px;
        font-size: 14px;
        border-radius: 50%;
    }
}