:root {
    --primary: #ffc83e;
    --primary-light: #ffe07a;
    --primary-dark: #e6b435;
    --button: #ff8a3e;
    --button-hover: #e67e35;
    --bg-gradient: linear-gradient(135deg, #2a2215 0%, #1a1308 30%, #0d0b14 100%);
    --text-light: rgba(255, 255, 255, 0.9);
    --section-padding: 60px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 200, 62, 0.3) 0%, rgba(13, 11, 20, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    background: rgba(21, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img img {
    max-width: 150px;
}

.header-nav-ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-ul li {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.header-nav-ul li:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.header-nav-ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 5px 0;
    position: relative;
}

.header-nav-ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--button);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.header-nav-ul li a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .header-nav-ul {
        gap: 15px;
    }

    .header-nav-ul li a {
        font-size: 0.9rem;
    }
}

.hero {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 8% 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.trending-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.trending-badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--button), var(--primary-light));
    padding: 6px 10px;
    border-radius: 3rem;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: max-content;
}

.trending-badge span {
    color: #000;
}

.hero-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    background: linear-gradient(to bottom, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 1rem;
    max-width: 100%;
    line-height: 1.7;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    padding-left: 2.2rem;
}

.detail-item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.detail-value {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 700;
}

.detail-label {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.countdown {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
    border: 1px solid rgba(255, 200, 62, 0.3);
    width: fit-content;
}

.countdown-time {
    color: white;
    font-weight: 700;
    margin-left: 5px;
}

.countdown {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-group p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 5px;
    color: var(--primary-light);
}

.btn-link {
    display: flex;
    gap: 20px;
    align-items: center;
}

.animated-arrow {
    color: var(--button);
    font-size: 2.2rem;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(5px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 13px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--button);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 138, 62, 0.4);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--button-hover);
    box-shadow: 0 12px 25px rgba(255, 138, 62, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 200, 62, 0.2);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.movie-poster-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.movie-poster-box {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.crown-icon {
    position: absolute;
    top: clamp(1rem, 3vw, 1.5rem);
    right: clamp(1rem, 3vw, 1.5rem);
    color: #ffd700;
    font-size: clamp(2rem, 4vw, 2rem);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
    z-index: 2;
}


.hero-bg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 100%;
    background: radial-gradient(circle, rgba(147, 39, 143, 0.2) 0%, rgba(13, 11, 20, 0) 80%);
    opacity: 0.5;
    filter: blur(40px);
    z-index: -1;
}

.reviews-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(21, 18, 24, 0.9) 0%, rgba(13, 11, 20, 0.85) 100%);
    position: relative;
    z-index: 1;
    font-size: 90%;
}

.reviews-section-title {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 26px;
    background: linear-gradient(to bottom, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--button));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
}

.reviewer-detail {
    font-size: 0.85rem;
    opacity: 0.7;
}

.stars {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 14px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

footer {
    padding: 40px 0 40px;
    background: rgba(10, 8, 15, 0.95);
    position: relative;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 19px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    display: inline-block;
    color: #ccc;
    transition: all 0.2s ease;
    font-size: 15px;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--button);
    transform: translateX(5px);
}

.footer-links a i {
    width: 25px;
    color: var(--primary-light);
    margin-right: 2px;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.app-links img {
    width: 150px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #ffc83e;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffc83e;
    color: black;
    transform: translateY(-5px);
}

.form-group {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.subscribe-btn {
    background: var(--button);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.subscribe-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 30px;
    text-align: center;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ff4475, #93278F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copyright {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.footer-nav a {
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--button);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    width: 50px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (min-width: 1024px) {
    .footer-col h4 {
        left: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-visual {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-text {
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 69%;
    }

    .btn-link {
        justify-content: center;
    }

    .detail-item {
        text-align: center;
    }

    .detail-item i {
        position: relative;
        margin-bottom: 10px;
    }

    footer {
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-group {
        flex-direction: column;
    }

    .countdown {
        width: auto;
        margin: 0 auto;
        justify-content: center;
    }

    .footer-col {
        padding: 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .app-links {
        align-items: center;
    }

    .footer-links a,
    .footer-links li {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .review-cards,
    .features {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        font-size: 85%;
    }
}

.movie-poster-box {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 390px) {
    .countdown {
        font-size: 14px;
    }
}

.trending-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.trending-section-title {
    max-width: 800px;
    margin: 0 auto 10px;
    text-align: center;
    font-size: 26px;
    background: linear-gradient(to bottom, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trending-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.trending-section-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.trending-section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.trending-section-image:hover img {
    transform: scale(1.05);
}

.trending-section-content {
    flex: 1;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-section-content h2 {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0px;
    background: linear-gradient(to bottom, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trending-section-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #D32DF6, #FC5652);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(211, 45, 246, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(211, 45, 246, 0.4);
}

.download-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .trending-section-container {
        flex-direction: column;
        gap: 30px;
    }

    .trending-section-content {
        text-align: center;
        padding: 20px 0;
    }

    .trending-section-content h1 {
        font-size: 23;
    }
}

@media (max-width: 576px) {
    .trending-section-content h1 {
        font-size: 1.8rem;
    }

    .trending-section-content p {
        font-size: 1rem;
    }

    .download-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}