.slide   :root {
       --bg-dark: #0a0a0b;
       --card-bg: #111112;
       --primary-blue: #4477ff;
       --success-green: #14b8a6;
       --text-gray: #9ca3af;
   }

   * {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
       font-family: 'Inter', sans-serif;
   }

   .slider-container-body {
       /* background-color: var(--bg-dark); */
       display: flex;
       justify-content: center;
       align-items: center;
       min-height: 100vh;
       color: white;
       padding: 20px;
   }

   /* Slider Container */
   .slider-container {
       max-width: 1250px;
       width: 100%;
       position: relative;
       overflow: hidden;
       border-radius: 24px;
       /*border: 1px solid #333;*/
   }

   .slider-wrapper {
       display: flex;
       transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
   }

   /* Individual Card Slide */
   .slide {
       min-width: 100%;
       display: grid;
       grid-template-columns: 1fr 1fr;
       background: var(--card-bg);
       border-radius: 20px;
   }

   /* Left Content Side */
   .content-side {
       padding: 50px;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .badge {
       background: rgba(68, 119, 255, 0.1);
       color: var(--primary-blue);
       font-size: 10px;
       font-weight: 800;
       padding: 4px 10px;
       border-radius: 10px;
       width: fit-content;
       text-transform: uppercase;
       border: 1px solid rgba(68, 119, 255, 0.3);
       margin-bottom: 20px;
   }

   h1 {
       font-size: 42px;
       line-height: 1.1;
       font-weight: 800;
       margin-bottom: 20px;
   }

   h1 span {
       color: var(--primary-blue);
   }

   .description {
       color: var(--text-gray);
       font-size: 14px;
       line-height: 1.6;
       margin-bottom: 10px;
   }

   .cta-link {
       color: var(--primary-blue);
       text-decoration: none;
       font-size: 14px;
       margin-bottom: 25px;
       display: inline-block;
   }

   .price-row {
       display: flex;
       align-items: center;
       gap: 15px;
       margin-bottom: 25px;
   }

   .price-main {
       font-size: 28px;
       font-weight: 800;
   }

   .discount-tag {
       background: #1e3a34;
       color: var(--success-green);
       padding: 2px 6px;
       border-radius: 4px;
       font-size: 12px;
       font-weight: bold;
   }

   .buy-btn {
       background: var(--primary-blue);
       color: white;
       padding: 12px 24px;
       border-radius: 30px;
       text-decoration: none;
       font-weight: 600;
       font-size: 14px;
       display: flex;
       align-items: center;
       gap: 8px;
       transition: transform 0.2s;
   }

   .buy-btn:hover {
       transform: scale(1.05);
   }

   .feature-tags {
       display: flex;
       gap: 10px;
       margin-bottom: 15px;
   }

   .tag {
       display: flex;
       align-items: center;
       gap: 6px;
       background: rgba(255, 255, 255, 0.05);
       border: 1px solid rgba(20, 184, 166, 0.4);
       padding: 6px 12px;
       border-radius: 10px;
       font-size: 12px;
       color: #eee;
   }

   .savings {
       color: var(--success-green);
       font-size: 12px;
       display: flex;
       align-items: center;
       gap: 5px;
   }

   /* Right Image Side */
   .image-side {
       position: relative;
       background-size: cover;
       background-position: center;
       min-height: 400px;
       border-radius: 20px;
   }

   .image-overlay-text {
       position: absolute;
       bottom: 40px;
       right: 40px;
       font-size: 40px;
       font-weight: 900;
       line-height: 0.9;
       text-align: right;
       text-transform: uppercase;
   }

   /* Navigation Arrows */
   .nav-btn {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       background: rgba(0, 0, 0, 0.5);
       border: 1px solid #444;
       color: white;
       width: 40px;
       height: 40px;
       border-radius: 50%;
       cursor: pointer;
       z-index: 10;
   }

   .prev {
       left: 15px;
   }

   .next {
       right: 15px;
   }

   /* Mobile Responsiveness */
   @media (max-width: 768px) {
       .slide {
           grid-template-columns: 1fr;
       }

       .content-side {
           padding: 30px;
           order: 2;
       }

       .image-side {
           order: 1;
           min-height: 300px;
       }

       h1 {
           font-size: 32px;
       }

       .image-overlay-text {
           font-size: 30px;
       }
   }