/*
Theme Name: iXXXTube Minimal Tube Theme
Author: Your Name
Description: A minimal video tube-style WordPress theme for indexed video posts.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ixxxtube
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
}

a {
    color: #ff6600;
    text-decoration: none;
}

header, footer {
    background: #000;
    padding: 1em;
    text-align: center;
}

.site-title {
    font-size: 2em;
    margin: 0;
}

.main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    padding: 1em;
}

.post-card {
    background: #222;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.post-card img {
    width: 100%;
    display: block;
}

.post-card .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    padding: 0.5em;
    box-sizing: border-box;
}

.post-card .overlay h2 {
    margin: 0;
    font-size: 1em;
    color: #fff;
}

.post-card .overlay a.category {
    font-size: 0.8em;
    color: #ccc;
}