.video-button {
    width: 140px;
    height: 140px;
    background-color: #F6F6F6;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.video-button:hover {
    background-color: #01cbd0;
    box-shadow: 0 6px 16px rgba(1, 203, 208, 0.3);
    transform: translateY(-2px);
}

.play-icon {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.video-button:hover .play-icon path {
    fill: #F6F6F6;
    stroke: #F6F6F6;
}

.button-text {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #868686;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.video-button:hover .button-text {
    color: #ffffff;
}







.logo {
  color: #333333;
  background-image: linear-gradient(to right, #333333 50%, #01cbd0 50%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease;
  display: inline-block;
}

.logo:hover {
  background-position: -100% 0;
}













