* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance optimization for animations */
* {
    will-change: auto;
}

/* Header */
.header {
    background-color: #cc0000;
    color: white;
    padding: 5px 0;
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.tagline {
    background-color: #a00000;
    color: white;
    padding: 4px 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(50%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 15px;
    background-color: white;
}

.article-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.headline {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
}

.urgent {
    color: #cc0000;
    text-transform: uppercase;
}

.subheadline {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: normal;
}

.author-info {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.author-name {
    font-weight: bold;
    color: #000;
}

/* Video Section */
.video-section {
    background-color: #FFFFFF;
    color: #333;
    padding: 2px;
    text-align: center;
    margin: 10px 0;
    border-radius: 10px;
}

.video-container {
    max-width: 98%;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: #000;
}

/* Media Logos Section */
.media-logos {
    max-width: 750px;
    width: 100%;
    margin: 20px auto;
    text-align: center;
}

.media-logos img {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
}

#vid-68713d726711c1d257df8426 {
    border-radius: 20px;
    width: 100% !important;
}

vturb-smartplayer {
    border-radius: 20px;
    overflow: hidden;
    display: block;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto;
}

/* Viewers Counter */
.viewers-counter {
    background: transparent;
    color: #333;
    padding: 10px 0;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }

    50% {
        opacity: 0.6;
        transform: scale3d(1.15, 1.15, 1);
    }
}

#viewers-count {
    color: #ef4444;
    font-weight: 700;
    font-size: 17px;
}

/* Product Selection Section */
.product-selection {
    padding: 15px;
}

.container {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto
}

.card {
    background: #fff;
    border-radius: 20px;
    width: 340px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: transform .3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    will-change: transform;
    backface-visibility: hidden
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12)
}

.card.best {
    border: 3px solid #B22222
}

.card.good {
    border: 2px solid #8B2AA2
}

.card.basic {
    border: 2px solid #e5e5e5
}

.header {
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    color: #fff
}

.best .header {
    background: #B22222
}

.good .header {
    background: #8B2AA2
}

.basic .header {
    background: #9CA3AF
}

.title {
    padding: 20px 20px 10px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a
}

.img-box {
    padding: 10px 30px;
    text-align: center
}

.img-box img {
    width: 100%;
    max-width: 350px;
    height: auto
}

.best .img-box img {
    max-width: 400px
}

.treatment-duration {
    font-size: 17px;
    font-weight: 700;
    color: #22c55e;
    margin-top: 12px;
    text-align: center;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block
}

.price-section {
    padding: 15px 20px;
    text-align: center
}

.regular-price {
    font-size: 20px;
    color: #666;
    margin-bottom: 8px
}

.regular-price span {
    text-decoration: line-through
}

.current-price {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1
}

.per-bottle {
    font-size: 22px;
    color: #666;
    font-weight: 400
}

.total {
    font-size: 22px;
    color: #444;
    margin-top: 10px
}

.total span {
    text-decoration: line-through;
    color: #999
}

.total strong {
    color: #1a1a1a
}

.shipping {
    color: #22c55e;
    font-weight: 500;
    font-size: 20px;
    margin-top: 8px
}

.btn-container {
    padding: 0 20px 15px
}

.btn {
    width: 100%;
    border: none;
    cursor: pointer;
    transition: transform .2s ease;
    background: transparent;
    padding: 0;
    will-change: transform;
    backface-visibility: hidden;
    display: block;
    text-decoration: none
}

.btn img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none
}

.btn:hover {
    transform: scale(1.02)
}

.payments {
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #f0f0f0
}

.payments img {
    height: 24px
}

.savings {
    background: transparent;
    color: #B22222;
    padding: 8px 15px;
    margin: 10px 20px;
    border: 3px dashed #B22222;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    animation: pulse 1.5s infinite;
    text-shadow: 0 0 1px #B22222;
    will-change: transform, opacity;
    backface-visibility: hidden
}

.savings.purple {
    color: #8B2AA2;
    border-color: #8B2AA2;
    text-shadow: 0 0 1px #8B2AA2
}

.savings.gray {
    color: #6B7280;
    border-color: #6B7280;
    text-shadow: 0 0 1px #6B7280
}

@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 1
    }

    50% {
        transform: scale3d(1.03, 1.03, 1);
        opacity: 0.9
    }

    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1
    }
}

.guarantee-seal {
    position: absolute;
    top: -25px;
    right: -8px;
    width: 120px;
    height: 120px;
    z-index: 10
}

.guarantee-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

@media(max-width:768px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .card {
        width: 100%;
        max-width: 380px
    }

    .title {
        font-size: 28px
    }

    .current-price {
        font-size: 52px
    }

    .img-box img {
        max-width: 300px
    }

    .best .img-box img {
        max-width: 350px
    }
}

/* Comments Section */
.comments-section {
    background-color: white;
    padding: 30px 20px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comments-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #365899;
}

.comment {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    flex-shrink: 0;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: bold;
    color: #365899;
    margin-bottom: 5px;
}

.comment-text {
    margin-bottom: 8px;
    line-height: 1.4;
}

.comment-actions {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #8a8d91;
}

.comment-action {
    cursor: pointer;
    font-weight: bold;
}

.comment-action:hover {
    text-decoration: underline;
}

.like-count {
    color: #365899;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 12px;
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .products-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .best-value-card,
    .good-value-card,
    .basic-card {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 28px;
    }

    .headline {
        font-size: 24px;
        line-height: 1.1;
    }

    .subheadline {
        font-size: 16px;
    }

    .main-content {
        padding: 15px 10px;
    }

    .video-section {
        margin: 5px 0;
        padding: 1px;
    }

    .selection-title {
        font-size: 26px;
    }

    .selection-subtitle {
        font-size: 16px;
    }

    .product-selection {
        padding: 20px 8px 30px 8px;
    }

    .best-value-card,
    .good-value-card,
    .basic-card {
        padding: 20px;
        max-width: calc(100vw - 20px);
        margin: 0 5px;
    }

    .best-value-content,
    .good-value-content,
    .basic-content {
        gap: 15px;
    }

    .best-value-image,
    .good-value-image,
    .basic-image {
        width: 150px;
        height: 150px;
    }

    .best-value-info,
    .good-value-info,
    .basic-info {
        flex: 0.8;
        padding-left: 10px;
    }

    .best-value-bottles,
    .good-value-bottles,
    .basic-bottles {
        font-size: 24px;
    }

    .best-value-current,
    .good-value-current,
    .basic-current {
        font-size: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {

    .best-value-card,
    .good-value-card,
    .basic-card {
        padding: 15px;
        max-width: calc(100vw - 16px);
        margin: 0 3px;
    }

    .best-value-content,
    .good-value-content,
    .basic-content {
        gap: 12px;
    }

    .best-value-image,
    .good-value-image,
    .basic-image {
        width: 130px;
        height: 130px;
    }

    .best-value-info,
    .good-value-info,
    .basic-info {
        flex: 0.7;
        padding-left: 8px;
    }

    .best-value-bottles,
    .good-value-bottles,
    .basic-bottles {
        font-size: 20px;
    }

    .best-value-current,
    .good-value-current,
    .basic-current {
        font-size: 26px;
    }

    .best-value-original,
    .good-value-original,
    .basic-original {
        font-size: 14px;
    }

    .buy-button {
        font-size: 18px;
        padding: 15px 25px;
    }

    .selection-title {
        font-size: 22px;
    }

    .selection-subtitle {
        font-size: 14px;
    }
}