body {
    background-image: url('/img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.main {
    max-width: 900px;
    margin: 1.5rem auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
}
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}
.post-entry {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.logo a img {
    height: 35px;
    width: auto;
}
.profile img {
    border-radius: 12px;
    max-width: 150px;
}
.home-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1rem;
}
.home-logo {
    width: 140px;
    margin-bottom: 1.5rem;
}
.home-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
}
.home-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.home-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #1565c0;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}
.home-btn.outline {
    background: transparent;
    color: #1565c0;
    border: 2px solid #1565c0;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: left;
}
.feature-card {
    background: rgba(248, 249, 250, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}
