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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.header {
    background: linear-gradient(90deg, #0f0f23 0%, #1a1a2e 100%);
    border-bottom: 3px solid #e94560;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #e94560;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo:hover {
    color: #ff6b9d;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #b8b8d1;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #e94560;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-content {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.hero-section {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8b8d1;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid #e94560;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(233, 69, 96, 0.2);
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image {
    transform: scale(1.1);
}

.article-info {
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.article-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #b8b8d1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.85rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(233, 69, 96, 0.2);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.category-count {
    color: #b8b8d1;
    font-size: 0.9rem;
}

.footer {
    background: linear-gradient(90deg, #0f0f23 0%, #1a1a2e 100%);
    border-top: 3px solid #e94560;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    color: #e94560;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #b8b8d1;
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b8b8d1;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e94560;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    color: #888;
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.breadcrumb a {
    color: #e94560;
}

.breadcrumb a:hover {
    color: #ff6b9d;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: #888;
}

.breadcrumb .current {
    color: #b8b8d1;
}

.article-full {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.article-header {
    padding: 2rem;
}

.article-title-full {
    font-size: 2.5rem;
    color: #fff;
    margin: 1rem 0;
    line-height: 1.3;
}

.article-meta-full {
    display: flex;
    gap: 2rem;
    color: #b8b8d1;
    font-size: 1rem;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    color: #fff;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.article-tags {
    padding: 2rem;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.tags-label {
    color: #b8b8d1;
    margin-right: 0.5rem;
}

.tag {
    background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pagination-btn {
    background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: #444;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-info {
    color: #b8b8d1;
    font-size: 1rem;
}

.search-container {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transform: translateY(-2px);
}

.search-results-info {
    text-align: center;
    color: #b8b8d1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.category-header {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.category-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.category-description {
    color: #b8b8d1;
    font-size: 1.1rem;
}

.static-page {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.static-page h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e94560;
    padding-bottom: 1rem;
}

.static-page h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.static-page p {
    color: #b8b8d1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.static-page ul {
    color: #b8b8d1;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.static-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.newsletter-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: #b8b8d1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #e94560;
}

.newsletter-btn {
    background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transform: translateY(-2px);
}

.trending-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.trending-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e94560;
}

.trending-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.trending-item:hover {
    padding-left: 10px;
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-item-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.trending-item-meta {
    color: #888;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f0f23;
        padding: 1rem;
        border-top: 2px solid #e94560;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-title-full {
        font-size: 1.8rem;
    }

    .search-form,
    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
