* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00d4ff;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
}

.nav-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a#nav-devlog {
    color: #00d4ff;
}

.login-btn {
    background: #00d4ff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #0099cc;
}

/* DevLog Header */
.devlog-header {
    text-align: center;
    padding: 80px 50px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.devlog-header h1 {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

.devlog-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Section */
.filter-section {
    padding: 0 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(42, 42, 74, 0.8);
    color: #ccc;
    border: 1px solid #444;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #00d4ff;
    color: #000;
    border-color: #00d4ff;
}

/* Posts Section */
.posts-section {
    padding: 40px 50px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.no-posts {
    text-align: center;
    background: rgba(42, 42, 74, 0.8);
    padding: 60px 40px;
    border-radius: 10px;
    border: 1px solid #444;
}

.no-posts h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-posts p {
    color: #888;
    font-size: 1.1rem;
}

/* Stay Connected */
.stay-connected {
    text-align: center;
    padding: 80px 50px;
    background: rgba(26, 26, 46, 0.5);
}

.stay-connected h2 {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

.stay-connected p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.connect-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.connect-btn {
    background: #00d4ff;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    background: #0099cc;
    transform: translateY(-2px);
}

.connect-btn.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.connect-btn.secondary:hover {
    background: #00d4ff;
    color: #000;
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.9);
    border-top: 1px solid #00d4ff;
    padding: 40px 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.footer-section p, .footer-section li {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .devlog-header, .posts-section, .stay-connected {
        padding: 40px 20px;
    }
    
    .devlog-header h1 {
        font-size: 2rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .connect-buttons {
        flex-direction: column;
        align-items: center;
    }
}