body {
    background-color: #1C1C1E;
    color: #CCCCCC;
    padding: 0;
    margin: 0;
}

.container-box {
    max-width: 1100px;
    margin: 0 auto;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 10px;
    background-color: rgba(67, 67, 67, 0.23);
    border-radius: 20px;
}

.nav-box {
    display: flex;
    gap: 5px;
    border-radius: 8px;
}

.nav-box a {
    text-decoration: none;
    color: #FFB400;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-box a {
    font-size: 16px;
}

@media (min-width: 768px) {
    .nav-box a {
        font-size: 18px;
    }
}

.nav-box a:hover {
    background-color: rgba(133, 133, 133, 0.47);
    color: #fff;
    transform: translateY(-2px);
    transition: all 0.3s ease;
    border-radius: 20px;
}

.nav-box a:active {
    transform: translateY(0);
}

.content-main-box-horf {
    background-color: rgba(67, 67, 67, 0.23);
    margin: 60px 10px 30px;
    color: #CCCCCC;
    padding: 32px;
    border-radius: 20px;
}

.section-content-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.section-content-img {
    width: 22%;
    min-width: 230px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-content-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.section-content-img:hover img {
    transform: scale(1.03);
}

.section-content-text {
    flex: 2 1 400px;
}

.section-content-text h1 {
    color: #ffb400;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.2;
    font-size: 26px;
}

.section-content-text p {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #CCCCCC;
    opacity: 0.9;
}

.section-content-text-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.section-content-text-tags .tag {
    background-color: #2C2C33;
    color: #FFFFFF;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.section-content-text-tags .tag:hover {
    background-color: #00C2FF;
    transform: translateY(-1px);
}

.section-content-text-countdown {
    padding: 5px 10px;
    background-color: rgba(67, 67, 67, 0.23);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.section-content-text-countdown span {
    color: #FFFFFF;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.countdown-time {
    color: #ffb400;
    font-weight: bold;
    font-size: 16px;
}

.section-content-text h2 {
    color: #ffb400;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

.section-content-download {
    margin: 5px 0;
}

.section-content-download a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.section-content-download a:hover {
    transform: translateY(-2px);
}

.section-content-download img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.animated-arrow {
    display: inline-block;
    font-size: 30px;
    color: #ff4d4d;
    text-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff9999;
    animation: jump-flash-shake 1.5s infinite;
    cursor: pointer;
}

@keyframes jump-flash-shake {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }

    20% {
        transform: translateY(-3px) translateX(1px) rotate(-2deg);
        opacity: 0.85;
    }

    40% {
        transform: translateY(0) translateX(-1px) rotate(2deg);
        opacity: 1;
    }

    60% {
        transform: translateY(-2px) translateX(1px) rotate(-1deg);
        opacity: 0.9;
    }

    80% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .content-main-box-horf {
        padding: 24px;
    }

    .section-content-1 {
        flex-direction: column;
        gap: 24px;
    }

    .section-content-text h1 {
        font-size: 24px;
    }

    .section-content-text p {
        font-size: 14px;
    }

    .section-content-text-countdown {
        margin: 16px 0;
    }

    .countdown-time {
        font-size: 14px;
    }

    .section-content-text h3 {
        font-size: 18px;
        margin: 16px 0 8px;
    }

    .section-content-download {
        margin: 16px 0;
    }

    .section-content-download img {
        height: 36px;
    }

    .animated-arrow {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-content-text h1 {
        font-size: 23px;
    }

    .section-content-download img {
        height: 32px;
    }
}

.content-main-box-conmment {
    padding: 40px 20px;
    color: #f0f0f0;
}

.comment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.comment-box {
    background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comment-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffb400, rgb(249, 203, 96));
}

.comment-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #ffb400;
    object-fit: cover;
    background-color: #fff;
}

.comment-time {
    font-size: 13px;
    color: #999;
    margin-left: auto;
    padding-left: 10px;
}

.comment-content p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #f2f2f2;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 8px;
    position: relative;
}

.comment-content p::before {
    content: "💬";
    position: absolute;
    left: -10px;
    top: -12px;
    font-size: 20px;
    color: #ff4d4d;
}

.watch-now-btn-wrapper {
    display: inline-block;
    text-align: center;
}

.watch-now-btn {
    background: linear-gradient(135deg, #ffb400, #ff9100);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 40px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 180, 0, 0.7);
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    animation: glowPulse 2s infinite;
}

.watch-now-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: #ffb400;
    border-radius: 15px;
    z-index: -1;
}

.watch-now-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 16px rgba(255, 145, 0, 0.9);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 180, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 145, 0, 0.9);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 180, 0, 0.6);
    }
}

@media screen and (max-width: 768px) {
    .watch-now-btn {
        font-size: 14px;
        padding: 9px 18px;
    }
}


.content-main-box-DownloadNow {
    padding: 20px;
    background-color: #1c1c1e;
    color: #fff;
    border-radius: 12px;
}

.section-main-title {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    position: relative;
    padding-left: 12px;
    margin-bottom: 24px;
    line-height: 1.4;
    background: linear-gradient(to right, #ffb400, #ffda7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInLeft 0.8s ease-in-out;
}

.section-main-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 80%;
    background-color: #ffb400;
    border-radius: 3px;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.section-content-flex {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section-left-img img {
    max-width: 230px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.section-right-text {
    flex: 1;
    max-width: 100%;
}

@media (max-width: 480px) {
    .section-right-text {
        flex: 1;
        max-width: 100%;
    }

    .section-right-text h3 {
        color: #ffb400;
        font-size: 20px;
        margin-top: 0px;
        margin-bottom: 10px;
    }
}

.section-right-text h3 {
    color: #ffb400;
    font-size: 22px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.section-right-text h4 {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #FFB400;
}

.section-content-text-countdown {
    font-size: 18px;
    margin: 15px 0;
}

.section-content-download .watch-now-btn {
    background-color: #ffb400;
    color: #FFF;
    font-weight: bold;
    border: none;
    padding: 6px 40px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.section-content-download .watch-now-btn:hover {
    background-color: #e89c00;
}

.animated-arrow {
    font-size: 24px;
    color: #ffb400;
    animation: bounce 1.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .section-content-flex {
        flex-direction: column;
    }

    .section-left-img img {
        max-width: 100%;
    }
}

.section-content-activitystatement {
    background: #cccccc1c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    max-width: 100%;
    margin: 15px 0;
}

.section-content-activitystatement p {
    margin: 0;
    font-size: 16px;
}

.footer-box {
    background-color: rgba(67, 67, 67, 0.23);
    border-radius: 20px;
    margin: 50px 10px 10px;
    color: #f0f0f0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

@media (min-width: 1024px) {
    .footer-content {
        flex: 1 1 200px;
        min-width: 200px;
    }
}

.footer-content h3 {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 16px;
    color: #ffb400;
    position: relative;
    display: inline-block;
}

.footer-content h3::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    background: #ffb400;
    margin-top: 6px;
}

.footer-content-text p {
    font-size: 14px;
    margin: 0px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-content-join {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-content-join a {
    display: block;
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content-Contact p {
    display: block;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content-Sign {
    display: flex;
    gap: 10px;
}

.footer-content-Sign a {
    display: block;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content-Contact a:hover {
    color: #ffb400;
}

.footer-content-join a:hover {
    color: #ffb400;
}

.footer-content-Sign a:hover {
    color: #ffb400;
}

.footer-content h3 img {
    max-width: 100px;
    height: auto;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: #777;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-content-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-content {
        width: 100%;
    }
}

.animated-arrow {
    display: inline-block;
    font-size: 30px;
    color: #ffb400;
    text-shadow: 0 0 6px #ffb400, 0 0 12px #ffb400;
    animation: jump-flash-shake 1.5s infinite;
    cursor: pointer;
}

@keyframes jump-flash-shake {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }

    20% {
        transform: translateY(-3px) translateX(1px) rotate(-2deg);
        opacity: 0.85;
    }

    40% {
        transform: translateY(0) translateX(-1px) rotate(2deg);
        opacity: 1;
    }

    60% {
        transform: translateY(-2px) translateX(1px) rotate(-1deg);
        opacity: 0.9;
    }

    80% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}