
    *{ margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: "Inter", sans-serif;
      background: #000;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    section {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .reel__container {
      position: relative;
      background: #000;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Reel Video */
    .reel__video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Dark gradient overlay bottom par */
    .reel__overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 45%;
      background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
      z-index: 5;
    }

    .reel__title {
      position: absolute;
      top: 15px;
      left: 15px;
      display: flex;
      align-items: center;
      z-index: 10;
      background: rgba(0,0,0,0.4);
      padding: 6px 12px;
      border-radius: 8px;
      backdrop-filter: blur(4px);
    }

    .reel__back-button {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .reel__back-button p {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .reel__content {
      position: absolute;
      bottom: 25px;
      left: 15px;
      right: 15px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      z-index: 10;
    }

    .reel__desc {
      max-width: 75%;
      animation: fadeUp 0.6s ease-in-out;
    }

    @keyframes fadeUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .reel__user {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }
    .reel__avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      
    }
    .reel__username {
      font-weight: 700;
      font-size: 15px;
    }

    .reel__caption {
      font-size: 14px;
      margin: 3px 0;
      line-height: 1.4;
    }
    .reel__caption strong {
      color: #ffeb3b;
    }
    .reel__audio {
      font-size: 13px;
      margin-top: 6px;
      opacity: 0.85;
    }

    .reel__options {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      margin-right: 5px;
    }

    .reel__icon-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .reel__icon-btn:hover {
      transform: scale(1.1);
      background: rgba(255,255,255,0.2);
    }

    .reel__audio-cover {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid #fff;
      animation: spin 4s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* ✅ Laptop/Desktop */
    @media (min-width: 769px) {
      .reel__container {
        width: 400px;
        height: 700px;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.7);
      }
      body { background: #111; }
    }

    /* ✅ Mobile = Full Screen */
    @media (max-width: 768px) {
      .reel__container {
        width: 100%;
        height: 100vh;
        border-radius: 20px;
      }
    }
