
body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #111;
    color: #fff;
}
header {
    background-color: #000;
    padding: 10px 20px;
    text-align: center;
}
header h1 {
    color: #fff;
    font-size: 24px;
}
header span {
    color: #FFD700;
}
.container {
    padding: 20px;
}
.video-fake {
    position: relative;
    cursor: pointer;
}
.thumbnail {
    width: 100%;
    border-radius: 10px;
}
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.play-btn {
    width: 70px;
    margin-bottom: 80px;
    transition: transform 0.3s ease;
}
.play-btn:hover {
    transform: scale(1.1);
}
.controls {
    position: absolute;
    bottom: 10px;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
}
.controls img {
    width: 20px;
}
.controls span {
    font-size: 14px;
}
.stats {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 14px;
    color: #ccc;
}
.stats img {
    width: 16px;
    vertical-align: middle;
    margin-right: 5px;
}
.buttons {
    margin: 15px 0;
}
.buttons a {
    background-color: #222;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.buttons a img {
    width: 16px;
    margin-right: 8px;
}
.buttons a:hover {
    background-color: #FFD700;
    color: #000;
}
.notice {
    margin: 10px 0;
    color: #aaa;
}
.suggested {
    margin-top: 30px;
}
.suggested-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
}

.suggested-videos img {
    width: 97%;
    border-radius: 10px;
}
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.popup-box {
    background-color: #fff;
    color: #000;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
}
.popup-box a {
    display: block;
    margin: 10px 0;
    background-color: #00FF88;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}
.popup-box .status {
    margin-top: 10px;
    color: red;
}
.video-fake .controls span {
  color: rgb(255, 255, 255) !important;
}
