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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #fff0f5 50%, #f8f0ff 100%);
    overflow-x: hidden;
}

.site-wrapper {
    min-height: 100vh;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(255, 182, 193, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.brand-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-logo a {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #ff69b4;
    margin-top: -3px;
    font-weight: 500;
}

.primary-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.primary-nav a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.primary-nav a:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 105, 180, 0.1);
}

.toggle-line {
    width: 25px;
    height: 3px;
    background: #ff69b4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.main-container {
    margin-top: 85px;
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.3), rgba(218, 112, 214, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
}

.hero-text h2 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.search-box {
    display: flex;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
}

.search-field {
    flex: 1;
    padding: 1.3rem 2rem;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: #333;
}

.search-field::placeholder {
    color: #999;
}

.search-button {
    padding: 1.3rem 2.5rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.hero-features {
    display: flex;
    gap: 3rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.badge-info strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.badge-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-dramas, .latest-updates, .genre-categories, .ranking-section, .why-choose {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff69b4, #ff1493, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.deco-dot {
    width: 8px;
    height: 8px;
    background: #ff69b4;
    border-radius: 50%;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #ff69b4, #da70d6);
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.drama-carousel {
    position: relative;
}

.carousel-container {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.carousel-container::-webkit-scrollbar {
    height: 6px;
}

.carousel-container::-webkit-scrollbar-track {
    background: rgba(255, 105, 180, 0.1);
    border-radius: 3px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-radius: 3px;
}

.drama-card {
    min-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.drama-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 105, 180, 0.25);
}

.card-poster {
    position: relative;
    overflow: hidden;
}

.card-poster img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.drama-card:hover .card-poster img {
    transform: scale(1.1);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drama-card:hover .poster-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.play-icon {
    font-size: 1.8rem;
    color: #ff69b4;
    margin-left: 3px;
}

.episode-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 105, 180, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.drama-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

.card-details {
    padding: 2rem;
}

.card-details h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    transition: color 0.3s ease;
}

.card-details h3 a:hover {
    color: #ff69b4;
}

.drama-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.drama-meta span {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-weight: 600;
}

.genre {
    background: rgba(255, 105, 180, 0.15);
    color: #ff69b4;
}

.year {
    background: rgba(218, 112, 214, 0.15);
    color: #da70d6;
}

.status {
    background: rgba(50, 205, 50, 0.15);
    color: #32cd32;
}

.drama-summary {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cast-info {
    color: #888;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.update-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.update-item {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.update-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.2);
}

.update-poster {
    position: relative;
    flex-shrink: 0;
}

.update-poster img {
    width: 280px;
    height: 200px;
    object-fit: cover;
}

.update-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.episode-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.update-content h4 a {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.update-content h4 a:hover {
    color: #ff69b4;
}

.update-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 105, 180, 0.15);
    color: #ff69b4;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.update-info {
    display: flex;
    gap: 2rem;
    color: #888;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.05), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.category-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.category-content {
    flex: 1;
}

.category-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.category-content h3 a:hover {
    color: #ff69b4;
}

.category-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.drama-count {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-preview {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
}

.category-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.rank-tab {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 105, 180, 0.3);
    color: #ff69b4;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.rank-tab.active, .rank-tab:hover {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.rank-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rank-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.rank-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.rank-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    background: #f0f0f0;
    color: #666;
}

.rank-number.top {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
}

.rank-poster {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1.5rem;
}

.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info {
    flex: 1;
}

.rank-info h4 a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.rank-info h4 a:hover {
    color: #ff69b4;
}

.rank-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rank-genre, .rank-year {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
}

.rank-genre {
    background: rgba(255, 105, 180, 0.15);
    color: #ff69b4;
}

.rank-year {
    background: rgba(218, 112, 214, 0.15);
    color: #da70d6;
}

.rank-desc {
    color: #666;
    font-size: 0.9rem;
}

.rank-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rank-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff69b4;
}

.rank-views {
    font-size: 0.8rem;
    color: #888;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-item h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.site-footer {
    background: linear-gradient(135deg, #ff69b4, #ff1493, #da70d6);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-keywords {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .header-content {
        padding: 0 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .carousel-container {
        gap: 2rem;
    }
    
    .drama-card {
        min-width: 320px;
    }
    
    .content-wrapper {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .primary-nav.active {
        left: 0;
    }
    
    .primary-nav .nav-menu {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        height: 100%;
        justify-content: flex-start;
    }
    
    .primary-nav a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .search-field, .search-button {
        border-radius: 0;
    }
    
    .search-button {
        border-radius: 0 0 25px 25px;
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .carousel-container {
        gap: 1.5rem;
    }
    
    .drama-card {
        min-width: 280px;
    }
    
    .update-item {
        flex-direction: column;
    }
    
    .update-poster img {
        width: 100%;
        height: 250px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-preview {
        width: 100px;
        height: 100px;
    }
    
    .ranking-tabs {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .rank-tab {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .rank-item {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .rank-number {
        margin-right: 0;
    }
    
    .rank-poster {
        margin-right: 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 1rem;
        height: 75px;
    }
    
    .main-container {
        margin-top: 75px;
    }
    
    .brand-logo a {
        font-size: 1.8rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .drama-card {
        min-width: 250px;
    }
    
    .card-poster img {
        height: 350px;
    }
    
    .card-details {
        padding: 1.5rem;
    }
    
    .update-content {
        padding: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .advantage-item {
        padding: 2rem 1.5rem;
    }
    
    .footer-wrapper {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

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

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

