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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(to bottom, #ffeaa7 0%, #fdcb6e 100%);
    min-height: 100vh;
}

.hk-header-top {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(253, 121, 168, 0.4);
    position: sticky;
    top: 0;
    z-index: 5000;
}

.hk-nav-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.hk-brand-link {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.hk-brand-link:hover {
    transform: scale(1.05) rotate(-2deg);
}

.hk-menu-nav {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.hk-menu-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.15rem;
    position: relative;
    padding: 8px 0;
}

.hk-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.hk-menu-nav a:hover::after {
    width: 100%;
}

.hk-hero-banner {
    background: linear-gradient(135deg, #a29bfe 0%, #fd79a8 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hk-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.hk-hero-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.hk-title-main {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hk-subtitle-text {
    font-size: 1.6rem;
    opacity: 0.95;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hk-content-wrapper {
    max-width: 1500px;
    margin: 4rem auto;
    padding: 0 50px;
}

.hk-section-container {
    background: white;
    border-radius: 25px;
    padding: 3.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 40px rgba(253, 121, 168, 0.2);
    transition: all 0.4s;
}

.hk-section-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(253, 121, 168, 0.3);
}

.hk-section-title {
    font-size: 2.8rem;
    color: #fd79a8;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 5px solid #fd79a8;
    position: relative;
}

.hk-section-title::before {
    content: '★';
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 2rem;
    color: #fdcb6e;
}

.hk-anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.hk-anime-card {
    background: linear-gradient(135deg, #fff 0%, #ffeaa7 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid #fd79a8;
    cursor: pointer;
    position: relative;
}

.hk-anime-card::before {
    content: '★';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fdcb6e;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.hk-anime-card:hover::before {
    opacity: 1;
}

.hk-anime-card:hover {
    transform: translateY(-15px) scale(1.03) rotate(2deg);
    box-shadow: 0 20px 50px rgba(253, 121, 168, 0.4);
}

.hk-anime-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s;
}

.hk-anime-card:hover .hk-anime-image {
    transform: scale(1.2);
}

.hk-anime-info {
    padding: 2rem;
}

.hk-anime-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fd79a8;
    line-height: 1.5;
}

.hk-anime-description {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.8;
}

.hk-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.hk-feature-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    border-radius: 25px;
    color: white;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.3);
}

.hk-feature-box:hover {
    transform: translateY(-20px) rotate(-5deg);
    box-shadow: 0 20px 60px rgba(253, 121, 168, 0.5);
}

.hk-feature-emoji {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hk-feature-heading {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
}

.hk-footer-area {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.hk-footer-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
}

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

.hk-footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fdcb6e;
    font-size: 1.5rem;
}

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

.hk-footer-section a {
    color: #dfe6e9;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    padding-left: 0;
}

.hk-footer-section a:hover {
    color: #fdcb6e;
    padding-left: 15px;
}

.hk-copyright-bar {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid #636e72;
    color: #b2bec3;
    font-size: 1.05rem;
}

.hk-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hk-category-box {
    background: linear-gradient(135deg, #a29bfe 0%, #fd79a8 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(162, 155, 254, 0.3);
}

.hk-category-box:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 45px rgba(162, 155, 254, 0.5);
}

.hk-text-paragraph {
    line-height: 2;
    color: #636e72;
    margin-bottom: 2rem;
    text-align: justify;
    font-size: 1.1rem;
}

.hk-showcase-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 25px;
    margin: 3rem auto;
    display: block;
    box-shadow: 0 15px 50px rgba(253, 121, 168, 0.3);
    transition: transform 0.3s;
}

.hk-showcase-img:hover {
    transform: scale(1.05);
}

.hk-search-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hk-search-input {
    flex: 1;
    padding: 1.5rem;
    border: 4px solid #fd79a8;
    border-radius: 50px;
    font-size: 1.15rem;
    transition: all 0.3s;
    background: white;
}

.hk-search-input:focus {
    outline: none;
    box-shadow: 0 0 25px rgba(253, 121, 168, 0.5);
    transform: scale(1.02);
}

.hk-search-btn {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

.hk-search-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(253, 121, 168, 0.6);
}

.hk-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hk-tag-item {
    background: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.05rem;
    color: #fd79a8;
    text-decoration: none;
    transition: all 0.3s;
    border: 3px solid #fd79a8;
    font-weight: 600;
}

.hk-tag-item:hover {
    background: #fd79a8;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(253, 121, 168, 0.4);
}

@media (max-width: 768px) {
    .hk-menu-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hk-title-main {
        font-size: 2.8rem;
    }

    .hk-anime-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .hk-section-container {
        padding: 2rem;
    }
}
