.page-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrap {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    padding: 20px 0;
    width: 100%;
    position: relative;
    margin-top: 40px;
}

/* Add gradient separator at the top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(88, 65, 255, 0.2) 30%,
        rgba(255, 61, 255, 0.2) 50%,
        rgba(88, 65, 255, 0.2) 70%,
        transparent 100%
    );
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(20, 18, 35, 0.4) 20%,
        rgba(20, 18, 35, 0.4) 80%,
        transparent 100%
    );
    backdrop-filter: blur(10px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1);
}

.header {
    z-index: 100;
    background: var(--background-primary);
    border-bottom: 1px solid var(--border-color);
}

.main-content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.content-section {
    background: var(--background-secondary);
    border-radius: 8px;
    margin: 0 auto;
    width: 75%;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Adjust responsive margins for smaller screens */
@media (max-width: 768px) {
    .main-content-container {
        margin-top: 60px;
        padding: 0 1rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .content-section {
        width: 95%;
    }
}

.post-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
}

.post-content {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-content a:hover {
    color: #a855f7;
}

/* Style for quoted text */
.post-content blockquote {
    border-left: 4px solid #4f46e5;
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-content {
        font-size: 1rem;
    }
}

.post-list {
    margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.post-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.post-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.post-list li strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
} 