body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center/cover;
    color: #fff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.hero {
    text-align: center;
    padding: 120px 20px 60px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.posts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

article {
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 12px;
    width: 280px;
    position: relative;
}

article img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

article::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(255,255,255,0.8);
}

article h3 a {
    color: #fff;
    text-decoration: none;
}

article h3 a:hover {
    text-decoration: underline;
}

.meta {
    font-size: 13px;
    color: #aaa;
}

.about-preview {
    margin-top: 60px;
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 12px;
}

footer {
    margin-top: 80px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 30px;
    background: rgba(0,0,0,0.7);
}
