body {
    margin: 0;
    background: #18141c;
    color: #fff;
    overflow-x: hidden;
}

.header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(24, 20, 28, 0.85);
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    justify-content: space-between;
}

.header .logo {
    width: 150px;
    height: 35px;
    margin-right: 0px;
}

.header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.header nav a.active,
.header nav a:hover {
    color: #ee2569;
}

.header .lang {
    color: #fff;
    font-size: 14px;
    margin-right: 8px;
}

.section-box1 {
    position: relative;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 58%) 0%, rgb(43, 43, 43) 100%);
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-container {
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.main-content {
    display: flex;
    gap: 80px;
    width: 100%;
}

.poster {
    width: 300px;
    min-width: 300px;
    height: 390px;
    background: #2d253a;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.poster .poster-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.poster .poster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.info-section {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    flex: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-section h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.info-section .meta {
    font-size: 15px;
    color: #bdbdbd;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-section .meta-labels {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.info-section .meta .tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 16px;
    border-radius: 6px;
    background: rgba(191, 140, 38, 0.18);
    color: #ffcc66;
    margin-right: 0;
    box-shadow: none;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.info-section .desc {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff2e63 60%, #ff6f91 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 15px 28px;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 46, 99, 0.18);
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    text-decoration: none;
    justify-content: center;
}

.download-btn:hover {
    background: linear-gradient(90deg, #e02656 60%, #ff6f91 100%);
    box-shadow: 0 8px 24px rgba(255, 46, 99, 0.25);
}

.bottom-info {
    margin-top: 60px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
}

.countdown span {
    color: #ff2e63;
    font-size: 16px;
    font-weight: 500;
}

.free-offer {
    color: #ffd700;
    font-size: 16px;
    font-weight: 500;
}

.section-box2 {
    max-width: 1040px;
    margin: 60px auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.section-box2-content h2 {
    font-size: 26px;
    line-height: 1.6;
    margin: 0 0 60px;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    background: #5353532f;
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 15px;
    transition: transform 0.3s;
}

.comment:hover {
    transform: translateY(-3px);
}

.content-comment {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.comment-info {
    flex: 1;
}

.comment-text {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.comment-name {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.comment-date {
    font-size: 16px;
    color: #bdbdbd;
}

.comment-website small {
    font-size: 14px;
    color: #08d9d6;
}

.comment-content {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    border-top: #bdbdbd30 2px solid;
    padding-top: 10px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {

    .header,
    .content-container,
    .section-box2 {
        padding: 20px;
    }

    .main-content {
        flex-direction: column;
        gap: 32px;
    }

    .poster {
        margin: 0 auto;
    }

    .bottom-info {
        margin-top: 20px;
    }

    .content-comment {
        align-items: flex-start;
    }

    .comment-content {
        padding-left: 0;
        margin-top: 15px;
    }
}


@media (max-width: 900px) {

    .header,
    .content-container,
    .section-box2 {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .main-content {
        gap: 20px;
    }
}

.download-btn {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-box {
    background: #18141c;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    padding: 0 20px;
}

.footer-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-div h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 8px;
    position: relative;
}

.footer-div h3 img {
    height: 40px;
    width: auto;
    margin: 0;
}

.footer-content-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-Introduction {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-Introduction.expanded {
    -webkit-line-clamp: unset;
}

.footer-content-text a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
}

.footer-content-text a:hover {
    color: #ee2569;
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-logo-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-wrap {
    height: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 35px;
    width: 150px;
    display: block;
}

.footer-div h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    padding-bottom: 0;
    position: relative;
    line-height: 24px;
    height: 24px;
    display: flex;
    align-items: center;
}

.footer-content-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-content-text p {
    margin: 0;
    color: #999;
}

.footer-logo-div .footer-content-text {
    margin-top: 0;
}

@media (max-width: 768px) {

    .footer-logo-wrap,
    .footer-div h3 {
        height: 22px;
        font-size: 16px;
    }

    .footer-logo-img {
        height: 35px;
    }
}

.section-box3 {
    background: transparent;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0 255px;
}

.section-box3-headline {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 40px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.section-box3-headline h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-box3-content {
    position: relative;
    height: 400px;
}

.section-box3-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 30px;
}

.section-box3-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-box3-img-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, rgba(0, 0, 0, 0) 0%, #18141c);
}

.section-box3-text {
    position: absolute;
    bottom: -202px;
    right: 0px;
    width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.section-box3-title h3 {
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-box3-countdown {
    font-size: 16px;
    font-weight: 500;
    color: #ee2569;
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #ff5c9330;
    padding: 5px 15px;
    border-radius: 8px;
}

.download-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-box3-statement p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.info-section .desc p {
    margin: 5px 0;
    text-align: justify;
}

.countdown {
    width: 403px;
    font-size: 18px;
    font-weight: 500;
    color: #ee2569;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    background-color: #ff5c9330;
    padding: 5px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.countdown-time {
    font-size: 16px;
    font-weight: 500;
    color: #ff2e63;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .countdown-time {
        font-size: 14px;
    }

    .info-section .meta-labels {
        justify-content: center;
    }

    .section-box3-content {
        height: auto;
        padding: 20px;
    }

    .section-box3-img-wrap {
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 20px;
    }

    .section-box3-text {
        position: static;
        width: 100%;
        padding: 0px;
        border-radius: 8px;
        align-items: center;
    }

    .section-box3-title h3 {
        font-size: 24px;
        text-align: center;
    }

    .section-box3-countdown {
        font-size: 14px;
    }

    .download-btn {
        padding: 14px 0px;
        font-size: 16px;
        width: 50%;
        margin-top: 0px;
    }

    .section-box3-statement p {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin: 0;
    }

    .section-box3 {
        background: transparent;
        max-width: 1040px;
        margin: 0 auto;
        position: relative;
        padding: 40px 0 80px;
    }

    .section-box3-img-gradient {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: transparent;
    }

    .section-box3-headline {
        margin-bottom: 20px;
    }

    .header nav {
        gap: 10px;
    }

    .hero-img img,
    .poster-img img {
        width: 100%;
        height: auto;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
    }

    .poster {
        margin-bottom: 20px;
    }

    .info-section {
        text-align: center;
    }

    .download-button {
        margin-bottom: 20px;
    }

    .bottom-info {
        display: flex;
        text-align: center;
        margin-top: 40px;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .countdown,
    .free-offer {
        text-align: center;
    }

    .info-section h1 {
        font-size: 24px;
    }

    .info-section .meta {
        font-size: 14px;
    }

    .info-section .desc p {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .download-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .countdown span,
    .free-offer {
        font-size: 14px;
    }

    .countdown {
        justify-content: center;
        margin-bottom: 0px;
    }

    .section-box2 {
        margin: 10px 0 40px;
    }

    .section-box3-headline h2 {
        text-align: center;
        font-size: 23px;
    }

    .section-box2-content h2 {
        font-size: 23px;
    }
}

@media (max-width: 390px) {
    .countdown span {
        font-size: 12px;
    }

    .section-box3-countdown {
        font-size: 12px;
    }

    .download-btn {
        width: 60%;
    }

    .header nav a {
        font-size: 15px;
    }
}