        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #ee2569;
            --primary-dark: #9c1b50;
            --secondary: #1a1a2e;
            --accent: #ffcc00;
            --light: #f5f7fa;
            --dark: #fff;
            --gray: #ffffffcc;
            --white: #fff;
            --max-width: 1024px;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 15px;
        }

        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-dark) 100%);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 15px;
        }

        .logo {
            height: 35px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 0px 2px;
            border-radius: 4px;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .nav-links .active {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .section-1 {
            position: relative;
            padding: 40px 0;
            overflow: hidden;
            background-color: #000000b3;
        }

        .section-1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        .section-1-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 90px;
            color: var(--white);
        }

        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
            background-color: #57555561;
        }

        .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .poster-container {
            flex: 0 0 26%;
            min-width: 270px;
            display: flex;
            justify-content: center;
        }

        .poster-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .section-1-text {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 20px;

        }

        .section-1 h1 {
            font-size: 28px;
        }

        .meta-info {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .meta-item {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .section-1 p {
            line-height: 1.8;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            width: 250px;
            height: 50px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .countdown-section {
            margin-top: 40px;
        }

        .countdown-text {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .countdown-timer {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 3px;
            color: var(--white);
            background-color: #ee256963;
            border-radius: 10px;
            padding: 2px 10px;
        }

        .free-offer {
            font-size: 18px;
            margin-top: 5px;
            text-align: left;
            color: #ffcc00;
        }

        .section-2 {
            padding: 60px 0;
            background-color: var(--secondary);
            color: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--light);
            max-width: 700px;
            margin: 0 auto;
        }

        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 15px;
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
            margin-right: 15px;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            font-size: 15px;
            font-weight: 600;
        }

        .review-date {
            color: var(--light);
            font-size: 14px;
            margin-top: 5px;
        }

        .stars {
            color: var(--accent);
            font-size: 16px;
            letter-spacing: 2px;
        }

        .review-content {
            color: var(--light);
            line-height: 1.4;
            font-style: italic;
            font-size: 14px;
        }

        .section-3 {
            padding: 60px 0;
            background-color: var(--white);
        }

        .section-3-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .section-3-image {
            flex: 0 0 26%;
            min-width: 285px;
            display: flex;
            justify-content: center;
        }

        .section-3-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .section-3-text {
            flex: 1;
            min-width: 300px;
        }

        .section-3 h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .section-3 p {
            margin-bottom: 30px;
            color: var(--gray);
            line-height: 1.8;
        }

        .footer {
            background: var(--secondary);
            color: #eee;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 10px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--white);
        }

        .footer-description {
            margin-bottom: 20px;
            color: #aaa;
            line-height: 1.8;
        }

        .footer-heading {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-contact {
            color: #aaa;
            line-height: 1.8;
        }

        .footer-contact a {
            color: var(--primary);
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 14px;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                gap: 10px;
            }
            
            .footer-logo,
            .footer-description,
            .footer-heading,
            .footer-links li,
            .footer-heading {
                text-align: center;
            }
            .footer-contact p {
                text-align: center;
            }

            .nav-links {
                justify-content: center;
                gap: 10px;
            }

            .section-1-content {
                gap: 20px;
            }

            .section-1-content,
            .section-3-content {
                flex-direction: column;
                text-align: center;
            }

            .meta-info {
                justify-content: center;
            }

            .section-1-text {
                justify-content: center;
                align-items: center;
            }

            .section-1 h1,
            .section-header h2,
            .section-3 h2 {
                font-size: 24px;
            }

            .section-header p,
            .section-1 p,
            .section-3 p {
                font-size: 15px;
            }

            .download-btn {
                font-size: 16px;
                padding: 12px 15px;
            }

            .countdown-timer {
                font-size: 1rem;
            }

            .countdown-text {
                font-size: 16px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .free-offer {
                font-size: 16px;
                text-align: center;
            }

            .review-card {
                text-align: center;
            }

            .review-header {
                text-align: center;
            }

            .user-avatar {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }