body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

/* Glassmorphism Navbar */
.glass-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    background: linear-gradient(135deg, #FF3366 0%, #FF9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.08);
}

.badge-published {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #FF3366;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 1rem;
}

.card-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Post detail */
.post-header {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    margin-bottom: -60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.post-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0f172a;
    letter-spacing: -1px;
}

.post-featured-img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin: 0 auto 40px auto;
    display: block;
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
    background: #fff;
    padding: 80px 50px 50px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.post-content img {
    max-width: 100%;
    height: auto !important;
    border-radius: 16px;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: block;
}

.post-content h2, .post-content h3 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Read More Button */
.btn-read-more {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #ffffff;
}
