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

body {
    font-family: 'Kumbh Sans', sans-serif;
    color: #32325d;
    overflow-x: hidden;
}

#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(
        180deg,
        rgba(30, 35, 45, 0.70) 0%,
        rgba(30, 35, 45, 0.95) 100%
    );
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

#site-header.nav-fixed {
    background: linear-gradient(
        180deg,
        rgba(30, 35, 45, 0.85) 0%,
        rgba(30, 35, 45, 0.98) 100%
    );
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar-brand {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 1.5rem;
    color: #fff !important;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #3794CF;
    font-weight: 700;
    border-bottom: 2px solid #3794CF;
    padding-bottom: calc(0.5rem - 2px);
}

.btn-auth {
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-login {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff !important;
    margin-right: 0.8rem;
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-register {
    background: #3b9dd8;
    border: 1px solid #3b9dd8;
    color: #fff !important;
}

.btn-register:hover {
    background: #2d8bc7;
    border-color: #2d8bc7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 157, 216, 0.3);
}

.w3l-footer-29-main {
    background: #2d3436;
    color: #fff;
    padding: 60px 0 0;
}

.footer-logo .navbar-brand {
    font-size: 1.8rem;
}

.footer-29 p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 0.9rem;
}

.main-social-footer-29 {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.main-social-footer-29 a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.main-social-footer-29 a:hover {
    background: #667eea;
}

.footer-title-29 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

.footer-list-29 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-29 ul li {
    margin-bottom: 10px;
}

.footer-list-29 ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-list-29 ul li a:hover {
    color: #fff;
}

.post1 {
    margin-bottom: 18px;
}

.post-title {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
}

.post1 p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.w3l-copyright {
    background: #25292d;
    padding: 20px 0;
    margin-top: 50px;
}

.copy-footer-29 {
    color: rgba(255,255,255,0.5);
    margin: 0;
    font-size: 0.85rem;
}

.copy-footer-29 a {
    color: #667eea;
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(44, 50, 60, 0.98);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn-auth {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .footer-29 .row {
        text-align: center;
    }
    
    .footer-list-29 {
        margin-bottom: 30px;
    }
    
    .main-social-footer-29 {
        justify-content: center;
    }
    
    .main-social-footer-29 a {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .btn-auth {
        width: 100%;
        margin: 0.3rem 0;
    }
    
    .btn-login {
        margin-right: 0;
    }
    
    .footer-title-29 {
        font-size: 0.95rem;
    }
    
    .copy-footer-29 {
        font-size: 0.8rem;
    }
}
