        :root {
            --primary: #93278f;
            --primary-light: #a83ab5;
            --dark: #1a1a1a;
            --dark-light: #2d2d2d;
            --white: #ffffff;
            --pink: #ff2c9c;
            --pink-dark: #e0268f;
            --gray: #cccccc;
            --gray-light: #f0f0f0;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark);
            color: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            max-width: 800px;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 3rem;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--pink);
            margin: 0.75rem auto 0;
            border-radius: 3px;
        }

        .btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            background-color: var(--pink);
            color: var(--white);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.85rem 2rem;
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-align: center;
            box-shadow: 0 4px 12px rgba(255, 44, 156, 0.3);
        }

        .btn:hover,
        .btn:focus-visible {
            background-color: var(--pink-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 44, 156, 0.4);
            outline: none;
        }

        .countdown {
            font-weight: 600;
            color: var(--pink);
            font-size: 16px;
            user-select: none;
            letter-spacing: 0.05em;
            display: inline-block;
            padding: 0.5rem 6px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            text-transform: uppercase;
        }

        header {
            background: var(--dark);
            color: var(--white);
            padding: 1rem 0;
            user-select: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 0.75rem 0;
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(8px);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 1.8rem;
            color: var(--pink);
            font-weight: 700;
            text-decoration: none;
            user-select: text;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-menu ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            user-select: text;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-menu ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--pink);
            transition: var(--transition);
        }

        .nav-menu ul li a:hover::after,
        .nav-menu ul li a:focus-visible::after {
            width: 100%;
        }

        .nav-menu ul li a:hover,
        .nav-menu ul li a:focus-visible {
            color: var(--pink);
            outline: none;
        }

        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            user-select: none;
            transition: var(--transition);
            z-index: 1001;
        }

        .nav-toggle:hover {
            color: var(--pink);
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .nav-menu ul.show {
                display: flex;
                animation: fadeIn 0.3s ease;
            }

            .nav-toggle {
                display: block;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #hero {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 3rem 1rem;
        }

        #hero .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        #hero .poster {
            display: flex;
            justify-content: flex-start;
        }

        #hero .poster img {
            width: 100%;
            max-width: 350px;
            border-radius: 12px;
            height: auto;
            object-fit: cover;
            box-shadow: var(--shadow);
            user-select: none;
            transition: var(--transition);
            transform: perspective(1000px) rotateY(5deg);
        }

        #hero .poster img:hover {
            transform: perspective(1000px) rotateY(0) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        #hero .text {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        #hero .text h1 {
            font-size: 28px;
            margin: 0;
            color: var(--pink);
            line-height: 1.5;
            position: relative;
        }

        #hero .text h1 span {
            color: var(--pink);
        }

        #hero .text p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            #hero .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            #hero .text {
                text-align: center;
            }

            #hero .text h1 {
                font-size: 26px;
            }

            #hero .poster img {
                transform: none;
            }
        }

        @media (max-width: 480px) {
            #hero .text h1 {
                font-size: 25px;
            }

            #hero .poster {
                justify-content: center;
            }
        }

        #reviews {
            background: linear-gradient(180deg, var(--dark), #2e003f);
            padding: 4rem 1rem;
        }

        #reviews .review-list {
            display: grid;
            gap: 10px;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        #reviews .card-review {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 15px;
            text-align: left;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: default;
            user-select: text;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        #reviews .card-review:hover {
            transform: translateY(-6px);
            background-color: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.1);
        }

        #reviews .review-header {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        #reviews .review-header img {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            object-fit: cover;
            user-select: none;
            border: 2px solid var(--pink);
        }

        #reviews .review-header strong {
            font-weight: 500;
            font-size: 14px;
            user-select: text;
        }

        #reviews .review-header time {
            font-size: 0.85rem;
            color: var(--gray);
            user-select: text;
        }

        #reviews p {
            font-size: 1rem;
            line-height: 1.6;
            color: #ffffffc0;
            margin: 0;
        }

        @media (min-width: 768px) {
            #reviews .review-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            #reviews .review-list {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        #synopsis {
            background: linear-gradient(180deg, #2e003f, var(--dark));
            padding: 0rem 1rem 4rem;
        }

        #synopsis .synopsis-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        #synopsis .synopsis-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }

        #synopsis .synopsis-image:hover {
            transform: translateY(-6px);
        }

        #synopsis .synopsis-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: var(--transition);
        }

        #synopsis .synopsis-image:hover img {
            transform: scale(1.03);
        }

        #synopsis .synopsis-text {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        #synopsis .synopsis-text h2 {
            font-size: 24px;
            margin: 0;
            color: var(--white);
            line-height: 1.3;
        }

        #synopsis .synopsis-text p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.1;
        }

        #synopsis .synopsis-text ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        #synopsis .synopsis-text ul li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
        }

        #synopsis .synopsis-text ul li::before {
            content: '•';
            color: var(--pink);
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            #synopsis .synopsis-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            #synopsis .synopsis-text {
                text-align: center;
            }

            #synopsis .synopsis-text ul {
                text-align: left;
                max-width: 400px;
                margin: 0 auto 2rem;
            }
        }

        footer {
            background-color: var(--dark);
            color: #ddd;
            user-select: none;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 3rem 1rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-about h3 {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--pink);
            margin-bottom: 1rem;
            user-select: text;
        }

        .footer-about p {
            line-height: 1.5;
            user-select: text;
        }

        .footer-nav h3,
        .footer-support h3,
        .footer-subscribe h3 {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--pink);
            margin-bottom: 1rem;
            user-select: text;
        }

        .footer-nav ul,
        .footer-support ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav ul li,
        .footer-support ul li {
            margin-bottom: 0.7rem;
        }

        .footer-nav ul li a,
        .footer-support ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            user-select: text;
            display: inline-block;
        }

        .footer-nav ul li a:hover,
        .footer-nav ul li a:focus-visible,
        .footer-support ul li a:hover,
        .footer-support ul li a:focus-visible {
            color: var(--pink);
            outline: none;
            transform: translateX(4px);
        }

        .footer-subscribe {
            user-select: text;
        }

        .subscribe-info {
            font-size: 0.85rem;
            color: #bbb;
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 0 auto;
            padding: 1rem;
            font-size: 0.8rem;
            color: #777;
            text-align: center;
            user-select: none;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        html {
            scroll-behavior: smooth;
        }

        @media (max-width: 768px) {
            .footer-container {
                justify-items: center;
            }

            .footer-about h3,
            .footer-about p,
            .footer-nav ul li,
            .footer-support h3,
            .footer-support ul li,
            .footer-subscribe h3,
            .footer-nav h3,
            .subscribe-info {
                text-align: center;
            }

            .footer-about p,
            .footer-nav ul li,
            .footer-support ul li,
            .subscribe-info {
                font-size: 14px;
            }
        }