﻿body {
    margin: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: #fff;
}

.reel-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    background: #111;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.reel-container img{
    width: 100%;
    height: 100%;
   object-fit: cover;   
    display: block;
}



video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-icons {
    position: absolute;
    right: 12px;
    bottom: 8%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 24px;
}

    .overlay-icons a {
        background: rgba(0,0,0,0.6);
        color: #fff;
        text-decoration: none;
        padding: 10px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s;
    }

        .overlay-icons a:hover {
            background: rgba(255,255,255,0.2);
        }

.caption-container {
    max-width: 420px;
    padding: 12px;
    text-align: left;
}

    .caption-container h2 {
        margin: 0 0 8px;
        font-size: 18px;
         color: #ddd;
    }

    .caption-container p {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        color: #ccc;
    }

.specs {
    margin-top: 3px;
    max-width: 420px;
    font-family: Arial, sans-serif;
    color: white;
    padding: 0px;
    padding-top:5px;
}

    .specs h2 {
          margin: 0 0 2px;
         font-size: 18px;
         color: #ddd;
    }

    .specs ul {
        list-style: none;
        padding: 0;
    }
    .specs li {
      padding: 8px 0;
      border-bottom: 1px solid #ddd;
    }
    .specs li:last-child {
      border-bottom: none;
    }
    .label {
      font-weight: bold;
    }