body { font-family: 'Inter', Arial, Helvetica, sans-serif; background: #fff; color: #222; margin: 0; }
.container { max-width: 900px; margin: 0 auto; padding: 0 16px; }
.vimeo-header { background: #162221; padding: 18px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.vimeo-header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.vimeo-logo img { height: 36px; vertical-align: middle; }
.vimeo-nav { display: flex; gap: 16px; }
.btn-login, .btn-join { background: #1ab7ea; color: #fff; border: none; border-radius: 20px; font-size: 1.1rem; font-weight: 700; padding: 10px 28px; cursor: pointer; transition: background 0.2s, box-shadow 0.2s; }
.btn-login:hover, .btn-join:hover { background: #162221; color: #1ab7ea; box-shadow: 0 2px 8px rgba(26,183,234,0.18); }
.video-main { margin-top: 32px; }
.video-player { display: flex; justify-content: center; margin-bottom: 24px; }
.video-player iframe { border-radius: 12px; box-shadow: 0 4px 24px rgba(26,183,234,0.10); width: 100%; max-width: 800px; height: 450px; }
.video-info { background: #f7f8fa; border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.video-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: #162221; }
.video-meta { font-size: 1rem; color: #555; margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 16px; }
.video-meta a { color: #1ab7ea; text-decoration: none; }
.video-meta a:hover { text-decoration: underline; }
.video-description { font-size: 1.1rem; margin-bottom: 18px; color: #222; }
.video-actions { display: flex; gap: 16px; margin-bottom: 12px; }
.btn-like, .btn-share { background: #fff; color: #1ab7ea; border: 2px solid #1ab7ea; border-radius: 20px; font-size: 1.05rem; font-weight: 700; padding: 8px 24px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.btn-like:hover, .btn-share:hover { background: #1ab7ea; color: #fff; }
.video-reviews { background: #f7f8fa; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.video-reviews h2 { color: #1ab7ea; font-size: 1.3rem; margin-bottom: 16px; }
.review { border-bottom: 1px solid #eee; padding: 12px 0; }
.review-head { font-size: 1rem; margin-bottom: 4px; }
.stars { color: #1ab7ea; font-size: 1.1rem; }
.review-body { font-size: 1rem; color: #222; }
.vimeo-footer { background: #162221; color: #fff; font-size: 1rem; }
@media (max-width: 700px) {
  .container { max-width: 100%; padding: 0 4px; }
  .vimeo-header .container {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .vimeo-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }
  .vimeo-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
    margin-bottom: 8px;
  }
  .btn-login, .btn-join {
    width: 90%;
    min-width: 0;
    padding: 16px 0;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 24px;
    margin-bottom: 10px;
    box-shadow: 0 2px 12px rgba(26,183,234,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    display: block;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none !important;
  }
  .btn-login {
    background: linear-gradient(90deg,#1ab7ea,#0099cc);
    color: #fff;
    border: none;
  }
  .btn-join {
    background: linear-gradient(90deg,#f9d423,#ff4e50);
    color: #fff;
    border: none;
  }
  .btn-login:active, .btn-join:active {
    transform: scale(0.97);
    box-shadow: 0 4px 18px rgba(26,183,234,0.18);
  }
  .video-player {
    margin-bottom: 16px;
  }
  .video-player video {
    width: 100% !important;
    height: auto !important;
    max-width: 100vw;
    border-radius: 10px;
  }
  .video-info, .video-reviews {
    padding: 8px;
    border-radius: 8px;
  }
  .video-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .video-meta {
    font-size: 0.92rem;
    gap: 6px;
    flex-direction: column;
  }
  .video-description {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }
  .video-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  .btn-like, .btn-share {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border-radius: 16px;
  }
  .review {
    padding: 10px 0;
  }
  .review-head, .review-body {
    font-size: 0.98rem;
  }
  .video-reviews h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
}
