 /* Reset & Base Styles */
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     background-color: #ffffff;
     color: #333;
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 /* Variables */
 :root {
     --cnn-red: #CC0000;
     --cnn-black: #000000;
     --cnn-gray: #f2f2f2;
     --text-dark: #262626;
     --text-light: #666666;
     --border-color: #e6e6e6;
 }

 /* Header */
 header {
     background-color: var(--cnn-black);
     color: white;
     border-bottom: 4px solid var(--cnn-red);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .header-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo-nav {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .menu-icon {
     cursor: pointer;
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .menu-icon span {
     display: block;
     width: 20px;
     height: 2px;
     background-color: white;
 }

 .logo {
     background-color: var(--cnn-red);
     color: white;
     font-weight: bold;
     font-size: 24px;
     padding: 4px 8px;
     letter-spacing: -1px;
     line-height: 1;
 }

 .nav-links {
     display: none;
 }

 @media (min-width: 768px) {
     .nav-links {
         display: flex;
         gap: 20px;
         font-size: 14px;
         font-weight: bold;
         text-transform: uppercase;
         color: #ccc;
     }

     .nav-links a:hover {
         color: white;
     }
 }

 .header-actions {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .live-tv {
     display: none;
     align-items: center;
     gap: 6px;
     font-size: 12px;
     font-weight: bold;
     color: white;
 }

 @media (min-width: 768px) {
     .live-tv {
         display: flex;
     }
 }

 .live-dot {
     width: 8px;
     height: 8px;
     background-color: var(--cnn-red);
     border-radius: 50%;
     animation: pulse 1.5s infinite;
 }

 @keyframes pulse {
     0% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }

     100% {
         opacity: 1;
     }
 }

 /* Ticker */
 .ticker-wrap {
     background-color: var(--cnn-gray);
     border-bottom: 1px solid #ccc;
     overflow: hidden;
     height: 40px;
     display: flex;
     align-items: center;
     padding: 0 15px;
 }

 .ticker-label {
     color: var(--cnn-red);
     font-weight: bold;
     text-transform: uppercase;
     font-size: 14px;
     margin-right: 15px;
     white-space: nowrap;
     z-index: 10;
     background-color: var(--cnn-gray);
 }

 .ticker-content {
     white-space: nowrap;
     animation: ticker 20s linear infinite;
     font-size: 14px;
     font-weight: 600;
 }

 @keyframes ticker {
     0% {
         transform: translateX(100%);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 /* Main Content */
 main {
     max-width: 900px;
     margin: 0 auto;
     padding: 30px 15px;
 }

 .headline-section {
     margin-bottom: 20px;
     border-bottom: 1px solid var(--border-color);
     padding-bottom: 15px;
 }

 h1 {
     font-size: 32px;
     line-height: 1.2;
     margin-bottom: 10px;
     color: var(--text-dark);
 }

 @media (min-width: 768px) {
     h1 {
         font-size: 42px;
     }
 }

 .meta-info {
     font-size: 14px;
     color: var(--text-light);
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

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

 /* Video Section */
 .video-container {
     position: relative;
     width: 100%;
     padding-bottom: 56.25%;
     /* 16:9 Aspect Ratio */
     background-color: black;
     margin-bottom: 30px;
     cursor: pointer;
     overflow: hidden;
 }

 .video-thumbnail {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.8;
     transition: opacity 0.3s;
 }

 .video-container:hover .video-thumbnail {
     opacity: 0.6;
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 80px;
     height: 80px;
     background-color: rgba(204, 0, 0, 0.9);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     transition: transform 0.2s;
 }

 .video-container:hover .play-button {
     transform: translate(-50%, -50%) scale(1.1);
 }

 .play-icon {
     width: 0;
     height: 0;
     border-top: 15px solid transparent;
     border-bottom: 15px solid transparent;
     border-left: 25px solid white;
     margin-left: 5px;
 }

 .breaking-badge {
     position: absolute;
     bottom: 20px;
     left: 20px;
     background-color: var(--cnn-red);
     color: white;
     padding: 5px 10px;
     font-weight: bold;
     text-transform: uppercase;
     font-size: 12px;
 }

 /* Article Text */
 .article-body {
     font-size: 18px;
     line-height: 1.8;
     color: var(--text-dark);
     margin-bottom: 40px;
 }

 .article-body p {
     margin-bottom: 20px;
 }

 .cnn-prefix {
     font-weight: bold;
     color: var(--cnn-red);
 }

 .highlight-box {
     background-color: #f9f9f9;
     border-left: 4px solid var(--cnn-red);
     padding: 20px;
     font-style: italic;
     font-size: 20px;
     margin: 30px 0;
     color: #444;
 }

 /* CTA Button */
 .cta-container {
     text-align: center;
     margin: 40px 0;
 }

 .cta-button {
     background-color: var(--cnn-red);
     color: white;
     font-size: 24px;
     font-weight: bold;
     padding: 20px 40px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     text-transform: uppercase;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: background-color 0.3s, transform 0.2s;
     display: inline-block;
 }

 .cta-button:hover {
     background-color: #a30000;
     transform: translateY(-2px);
 }

 /* Comments Section */
 .comments-section {
     background-color: #f9f9f9;
     padding: 40px 0;
     border-top: 1px solid var(--border-color);
 }

 .comments-container {
     max-width: 800px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .comments-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
     border-bottom: 1px solid #ddd;
     padding-bottom: 15px;
 }

 .comments-title {
     font-size: 22px;
     font-weight: bold;
 }

 .comments-count {
     color: var(--text-light);
     font-weight: normal;
 }

 .comment-input-area {
     background: white;
     padding: 20px;
     border: 1px solid #ddd;
     border-radius: 4px;
     margin-bottom: 30px;
     display: flex;
     gap: 15px;
 }

 .avatar-placeholder {
     width: 40px;
     height: 40px;
     background-color: #ddd;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .input-wrapper {
     flex-grow: 1;
 }

 textarea {
     width: 100%;
     height: 80px;
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
     resize: vertical;
     font-family: inherit;
 }

 .post-btn {
     background-color: var(--cnn-red);
     color: white;
     border: none;
     padding: 8px 20px;
     border-radius: 4px;
     font-weight: bold;
     margin-top: 10px;
     cursor: pointer;
     float: right;
 }

 .comment-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .comment-item {
     display: flex;
     gap: 15px;
 }

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

 .comment-content {
     background-color: white;
     padding: 15px;
     border: 1px solid #eee;
     border-radius: 8px;
     flex-grow: 1;
 }

 .comment-author {
     font-weight: bold;
     font-size: 14px;
     margin-bottom: 2px;
     color: #365899;
     /* Facebook blueish for names */
 }

 .comment-time {
     font-size: 12px;
     color: #999;
     margin-left: 5px;
     font-weight: normal;
 }

 .comment-text {
     font-size: 14px;
     color: #333;
     margin-bottom: 10px;
 }

 .comment-actions {
     display: flex;
     gap: 15px;
     font-size: 12px;
     color: var(--text-light);
     font-weight: bold;
 }

 .action-link {
     cursor: pointer;
 }

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

 /* Footer */
 footer {
     background-color: black;
     color: white;
     padding: 40px 0;
     text-align: center;
     font-size: 12px;
     border-top: 4px solid var(--cnn-red);
 }

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

 .footer-links a {
     color: #999;
     text-transform: uppercase;
     font-weight: bold;
 }

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

 .copyright {
     color: #666;
 }

 /* Video Player Simulation */
 .video-active {
     background-color: black;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
 }

 /* Discount / Order Section */
 #discountSection {
     background-color: #f9f9f9;
     border-top: 1px solid var(--border-color);
     border-bottom: 1px solid var(--border-color);
 }

 .bb-section {
     max-width: 1100px;
     margin: 0 auto;
     padding: 40px 15px 50px;
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .bb-steps {
     display: flex;
     gap: 10px;
     font-size: 12px;
     text-transform: uppercase;
     font-weight: bold;
 }

 .bb-step {
     padding: 6px 12px;
     border-radius: 999px;
     border: 1px solid var(--border-color);
     background-color: white;
     color: var(--text-light);
 }

 .bb-step--active {
     background-color: var(--cnn-red);
     color: #fff;
     border-color: var(--cnn-red);
 }

 .bb-section-header h3 {
     font-size: 20px;
     text-transform: uppercase;
     color: var(--text-dark);
     margin-bottom: 8px;
 }

 .bb-divider {
     width: 60px;
     height: 3px;
     background-color: var(--cnn-red);
 }

 .bb-packages {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
 }

 @media (min-width: 900px) {
     .bb-packages {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .bb-card {
     background-color: #fff;
     border-radius: 8px;
     border: 1px solid var(--border-color);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
     display: flex;
     flex-direction: column;
     position: relative;
     overflow: hidden;
 }

 .bb-card--best {
     border-width: 2px;
     border-color: var(--cnn-red);
     transform: translateY(-4px);
 }

 .bb-card-tag {
     position: absolute;
     top: 10px;
     left: 0;
     background: var(--cnn-red);
     color: #fff;
     font-size: 11px;
     font-weight: bold;
     padding: 5px 12px;
     text-transform: uppercase;
     border-radius: 0 999px 999px 0;
 }

 .bb-card-body {
     display: flex;
     gap: 15px;
     padding: 35px 18px 18px;
 }

 .bb-card-left {
     flex: 1;
 }

 .bb-card-left h4 {
     font-size: 18px;
     margin-bottom: 4px;
 }

 .bb-supply {
     font-size: 13px;
     color: var(--text-light);
     margin-bottom: 10px;
 }

 .bb-product-img {
     max-width: 100%;
     height: auto;
 }

 .bb-card-right {
     flex: 1;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 6px;
 }

 .bb-price-per-bottle {
     display: flex;
     flex-direction: column;
 }

 .bb-price {
     font-size: 26px;
     font-weight: 700;
     color: var(--cnn-red);
 }

 .bb-price-label {
     font-size: 12px;
     color: var(--text-light);
 }

 .bb-save {
     font-size: 13px;
     font-weight: bold;
     color: #0a7c2f;
 }

 .bb-save--highlight {
     font-size: 14px;
 }

 .bb-label {
     font-size: 11px;
     text-transform: uppercase;
     font-weight: bold;
     padding: 4px 8px;
     border-radius: 999px;
     background-color: #f3f3f3;
     color: var(--text-light);
 }

 .bb-label--accent {
     background-color: #ffe9e9;
     color: var(--cnn-red);
 }

 .bb-cards-img {
     max-width: 120px;
 }

 .bb-total {
     font-size: 13px;
     font-weight: bold;
 }

 .bb-total-old {
     text-decoration: line-through;
     color: var(--text-light);
     margin-left: 4px;
 }

 .bb-total-new {
     color: var(--cnn-red);
     margin-left: 4px;
 }

 .bb-shipping {
     font-size: 12px;
     color: var(--text-light);
 }

 .bb-shipping--free {
     color: #0a7c2f;
     font-weight: bold;
 }

 .bb-btn {
     display: block;
     text-align: center;
     padding: 14px 10px;
     margin: 0 18px 18px;
     border-radius: 4px;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 14px;
     border: none;
     cursor: pointer;
     background: #ffb100;
     color: #222;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
 }

 .bb-btn--primary {
     background: var(--cnn-red);
     color: #fff;
 }

 .bb-btn:hover {
     filter: brightness(1.05);
 }

 .bb-guarantee {
     display: flex;
     gap: 15px;
     align-items: center;
     background-color: #fff;
     border-radius: 8px;
     border: 1px solid var(--border-color);
     padding: 18px;
 }

 .bb-guarantee-img {
     width: 90px;
     max-width: 25%;
 }

 .bb-guarantee-text h3 {
     font-size: 18px;
     margin-bottom: 5px;
 }

 .bb-guarantee-text p {
     font-size: 14px;
     color: var(--text-light);
 }

 @media (max-width: 700px) {
     .bb-card-body {
         flex-direction: column;
     }

     .bb-guarantee {
         flex-direction: column;
         align-items: flex-start;
     }

     .bb-guarantee-img {
         width: 70px;
     }
 }