/* css/you_betcha.css */

/* --- Header Text & Email --- */
.yb-header-text { 
    font-size: 1.1em; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    color: #555; 
}
.yb-email-link { 
    font-weight: bold; 
    color: #cc0000; 
    text-decoration: none; 
}
.yb-email-link:hover { 
    text-decoration: underline; 
    color: #aa0000; 
}

/* --- Video List Row Styling --- */
.yb-video-item { 
    border-bottom: 1px solid #eee; 
    padding: 30px 0; 
    transition: background 0.3s; 
}
.yb-video-item:last-child { 
    border-bottom: none; 
}
.yb-video-item:hover { 
    background-color: #f4f4f4; 
    border-radius: 8px; 
}

/* --- Thumbnail & Play Overlay --- */
.yb-thumb-container { 
    position: relative; 
    cursor: pointer; 
    display: block; 
    overflow: hidden; 
    border-radius: 6px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.yb-thumb-img { 
    width: 100%; 
    display: block; 
    transition: transform 0.3s ease; 
}
.yb-thumb-container:hover .yb-thumb-img { 
    transform: scale(1.05); 
}

.yb-play-overlay {
    position: absolute; top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.yb-thumb-container:hover .yb-play-overlay { 
    background: rgba(0,0,0,0.1); 
}

.yb-play-icon {
    width: 60px; height: 60px; 
    background: rgba(204, 0, 0, 0.9);
    border-radius: 50%; 
    color: #fff; 
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.yb-play-icon:after { 
    content: "▶"; 
    padding-left: 4px; 
    font-family: sans-serif;
}

/* --- Text Styles --- */
.yb-vid-title { 
    font-weight: 900; 
    font-size: 1.5em; 
    color: #333; 
    margin-top: 0; 
    margin-bottom: 5px; 
}
.yb-vid-date { 
    font-size: 0.9em; 
    color: #888; 
    margin-bottom: 15px; 
    display: block; 
    font-style: italic; 
}
.yb-vid-desc { 
    font-size: 1.05em; 
    color: #444; 
    line-height: 1.6;
}

/* --- Controls (Sort) --- */
.yb-controls { 
    margin-bottom: 30px; 
    border-bottom: 2px solid #ddd; 
    padding-bottom: 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}