
/*
Theme Name: TBB 787 NextGen
Theme URI: https://tbb787.com
Author: TBB 787
Description: A Cyber-Luxe, Bento-Grid theme. Fast, unique, and SEO-heavy.
Version: 2.0
Text Domain: tbb787
*/

:root {
    --bg-dark: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --accent: #00f2ff;
    --accent-2: #7000ff;
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    padding: 20px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.bento-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(45deg, var(--accent-2), #000);
}

h1, h2, h3 {
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.post-category {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
}
