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

:root {
    --primary: #ff6b9d;
    --secondary: #4a90e2;
    --accent: #ffd93d;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333;
    --border: #e1e8ed;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.qwemnzx-breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.qwemnzx-breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.qwemnzx-breadcrumb a:hover {
    color: var(--primary);
}

.kfjdnwq {
    background: white;
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.xnmzaqw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ytplmnb {
    font-size: 0;
    margin-bottom: 1rem;
}

.ytplmnb a {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.plmqwer {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.plmqwer a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.plmqwer a:hover,
.plmqwer a.active {
    color: white;
    background: var(--primary);
}

.mnbvcxz {
    padding: 2rem 0;
}

.zxcvbnm-main {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plkmnbv-header {
    margin-bottom: 3rem;
    text-align: center;
}

.asdfghj-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qwertyu-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.zxcmnb-grid {
    display: grid;
    gap: 2rem;
}

.qweasd-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.4s ease;
    animation: slideIn 0.6s ease both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.qweasd-item:nth-child(1) { animation-delay: 0.1s; }
.qweasd-item:nth-child(2) { animation-delay: 0.2s; }
.qweasd-item:nth-child(3) { animation-delay: 0.3s; }
.qweasd-item:nth-child(4) { animation-delay: 0.4s; }
.qweasd-item:nth-child(5) { animation-delay: 0.5s; }
.qweasd-item:nth-child(6) { animation-delay: 0.6s; }
.qweasd-item:nth-child(7) { animation-delay: 0.7s; }
.qweasd-item:nth-child(8) { animation-delay: 0.8s; }

.qweasd-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.plmnbv-cover {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.plmnbv-cover img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.qweasd-item:hover .plmnbv-cover img {
    transform: scale(1.1);
}

.zxcqwe-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.zxcqwe-badge.hot {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.asdzxc-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plkmju-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plkmju-name a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.plkmju-name a:hover {
    color: var(--primary);
}

.qwemnb-desc {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.zxcasd-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.plkjhg-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plkjhg-views {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.qwezxc-time {
    color: #999;
    font-size: 0.875rem;
}

.zxcvbnm-footer {
    background: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.plkmnbv-footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.plkmnbv-footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.plkmnbv-footer-nav a:hover {
    color: var(--primary);
}

.qwemnb-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.plkjhg-totop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.plkjhg-totop.show {
    opacity: 1;
    visibility: visible;
}

.plkjhg-totop:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

@media (max-width: 768px) {
    .zxcvbnm-main {
        padding: 2rem 1rem;
    }

    .qweasd-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plmnbv-cover img {
        height: 240px;
    }

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

    .plkmnbv-header {
        margin-bottom: 2rem;
    }
}
