body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #fdf6e3;
    color: #333;
    overflow-x: hidden;
}

header {
    background-color: #ffb347;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.meow-button {
    background-color: #fff;
    color: #ffb347;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    margin-top: 15px;
}

.meow-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.meow-button:active {
    transform: translateY(0);
}

nav {
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 0.8rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-weight: 500;
}

nav a:hover {
    color: #ffb347;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

.post {
    background: white;
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.post img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.post h2 {
    color: #d35400;
    margin-top: 20px;
}

.date {
    font-size: 0.85rem;
    color: #999;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #ffb347;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #ffb347;
}

footer {
    text-align: center;
    padding: 40px;
    background: #333;
    color: white;
}
