        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&display=swap');

        :root {
            --main-color: #1bb3ad;
            --main-gradient-start: #1bb3ad;
            --main-gradient-end: #4cd9d0;
            --hover-color: #16a19c;
            --bg-dark: #121212;
            --bg-gradient-start: #0e3a3a;
            --bg-gradient-end: #121212;
            --text-muted: #b0b0b0;
            --text-muted-dark: #888888;
            --card-bg: #1f2f2f;
            --footer-bg: #122424;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
            color: white;
            margin: 0;
            padding: 0;
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        a {
            text-decoration: none;
        }

        h1,
        h2,
        h3 {
            margin: 0;
        }

        .header-div {
            padding: 0.5rem 0.5rem;
            position: sticky;
            top: 0;
            margin-top: 20px;
            border-radius: 20px;
            background: rgba(18, 36, 36, 0.95);
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .header-div>div:first-child {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .header-div img {
            height: 2rem;
        }

        nav {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 5px;
        }

        nav a:hover {
            color: var(--main-color);
            background: rgba(255, 255, 255, 0.1);
        }

        input[type="text"] {
            background-color: var(--card-bg);
            border-radius: 0.375rem;
            padding: 0.5rem 0.75rem;
            color: white;
            font-size: 0.875rem;
            border: none;
            outline: none;
            width: 180px;
            transition: width 0.3s;
        }

        input[type="text"]:focus {
            width: 220px;
        }

        input[type="text"]::placeholder {
            color: var(--text-muted);
        }

        button {
            font-size: 1rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0;
            user-select: none;
        }

        section {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .hero-section {
            padding-top: 3rem;
            padding-bottom: 3rem;
            text-align: center;
        }

        .hero-inner {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            justify-content: center;
            text-align: left;
        }

        .hero-img {
            flex: 1 1 33%;
            border-radius: 0.5rem;
            box-shadow: 0 10px 20px rgb(0 0 0 / 0.6);
            transition: transform 0.3s ease;
            cursor: pointer;
            max-width: 33%;
            object-fit: cover;
        }

        .hero-img:hover {
            transform: scale(1.05);
        }

        .hero-content {
            flex: 1 1 67%;
            margin-top: 0;
        }

        .hero-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero-title {
            font-weight: 700;
            font-size: 28;
            line-height: 1.5;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .tag {
            display: inline-flex;
            align-items: center;
            background-color: #1bb3ad;
            color: white;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 16px;
            margin-right: 6px;
            cursor: default;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .tag:hover {
            background-color: #0d9a94;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .tag.clickable {
            cursor: pointer;
        }

        .tag.small {
            font-size: 10px;
            padding: 2px 8px;
        }

        .tag.large {
            font-size: 14px;
            padding: 6px 12px;
        }

        .tag.outline {
            background-color: transparent;
            border: 1px solid #1bb3ad;
            color: #1bb3ad;
        }

        .tag.outline:hover {
            background-color: #e6f7f7;
        }

        .tag.light {
            background-color: #d9f2f2;
            color: #0d7a75;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 38rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .btn-download {
            background: linear-gradient(to right, var(--main-gradient-start), var(--main-gradient-end));
            padding: 10px 35px;
            border-radius: 9999px;
            color: white;
            font-weight: 600;
            box-shadow: 0 10px 15px rgba(27, 179, 173, 0.5);
            cursor: pointer;
            transition: transform 0.15s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 18px;
        }

        .btn-download:hover {
            background: linear-gradient(to right, var(--hover-color), #3accc4);
            transform: translateY(-2px);
        }

        .btn-download:active {
            transform: scale(0.95);
        }

        .countdown-text {
            margin-top: 1.5rem;
            color: var(--main-color);
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            text-transform: uppercase;
        }

        .countdown-text span {
            margin-left: 0.5rem;
            font-weight: 700;
            font-size: 16px;
        }

        .limited-offer {
            color: var(--text-muted);
            font-size: 16px;
            margin-top: 0.25rem;
        }

        .reviews-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
            max-width: 768px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--main-color);
            border-radius: 3px;
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .review-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgb(0 0 0 / 0.3);
            text-align: left;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            gap: 0.75rem;
        }

        .review-header img {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            object-fit: cover;
            border: 2px solid var(--main-color);
        }

        .review-author {
            font-weight: 600;
            color: white;
            margin: 5px 0;
            font-size: 18px;
        }

        .review-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin: 0;
        }

        .review-text {
            color: #cccccc;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.6;
        }

        .exclusive-section {
            padding-top: 3rem;
            padding-bottom: 3rem;
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .exclusive-inner {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            justify-content: center;
            text-align: left;
        }

        .exclusive-img {
            width: 100%;
            max-width: 480px;
            border-radius: 0.5rem;
            box-shadow: 0 10px 20px rgb(0 0 0 / 0.6);
            transition: transform 0.3s ease;
            cursor: pointer;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .exclusive-img:hover {
            transform: scale(1.05);
        }

        .exclusive-text {
            max-width: 480px;
        }

        .exclusive-text h2 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .exclusive-text h2 span {
            color: var(--main-gradient-end);
            text-shadow: 0 0 10px rgba(76, 217, 208, 0.4);
        }

        .exclusive-text p {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer {
            background-color: var(--footer-bg);
            padding-top: 2rem;
            padding-bottom: 1rem;
            color: var(--text-muted-dark);
            font-size: 0.875rem;
            text-align: left;
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 30px;
            margin-top: 40px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2.5rem;
            max-width: 1024px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-grid ul li {
            margin: 0 0 0.8rem;
        }

        .footer h3 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.2rem;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--main-color);
            border-radius: 3px;
        }

        .footer a {
            color: var(--text-muted-dark);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        .footer a:hover {
            color: var(--main-color);
            transform: translateX(5px);
        }

        .footer img {
            width: 150px;
            height: 50px;
            border-radius: 0.25rem;
        }

        .footer p {
            margin: 0px;
            color: var(--text-muted-dark);
            font-size: 16px;
        }

        .footer-bottom {
            text-align: center;
            color: #555555;
            font-size: 0.85rem;
            margin-top: 1rem;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--card-bg);
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            z-index: 99;
            border-radius: 0 0 10px 10px;
        }

        .mobile-nav.active {
            display: flex;
        }

        @media (max-width: 767px) {

            .hero-section,
            .exclusive-section {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .hero-inner,
            .exclusive-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .hero-content,
            .exclusive-text {
                text-align: center;
            }

            .hero-img,
            .exclusive-img {
                max-width: 100%;
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-grid>div {
                text-align: center;
            }

            .footer-grid img {
                margin: 0 auto;
            }

            .hero-title {
                font-size: 26;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .exclusive-text h2 {
                font-size: 1.6rem;
            }

            .btn-download {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                display: block;
            }

            .countdown-text {
                text-align: center;
                justify-content: center;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .footer h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer a:hover {
                transform: none;
            }
        }

        @media (min-width: 768px) {

            .mobile-menu-btn,
            .mobile-nav {
                display: none;
            }

            .header-div {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .reviews-section {
                max-width: 1024px;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                padding: 0 40px;
            }

            .footer {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        @media (min-width: 992px) {
            .hero-section {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .exclusive-section {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }
        }

        @media (max-width: 767px) {
            .hero-tags {
                justify-content: center;
            }
        }