:root {
    --primary-pink: #ff9ecf;
    --secondary-pink: #ffb3d9;
    --light-pink: #ffcce5;
    --lighter-pink: #ffe0f0;
    --lightest-pink: #fff0f5;
    --accent-pink: #ffd6e8;
    --gradient-1: linear-gradient(135deg, #ff9ecf 0%, #ffb3d9 50%, #ffcce5 100%);
    --gradient-2: linear-gradient(135deg, #ffe0f0 0%, #fff0f5 50%, #ffd6e8 100%);
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(255, 158, 207, 0.2);
    --shadow-hover: 0 8px 30px rgba(255, 158, 207, 0.3);
}

* {
    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: var(--text-dark);
    background: var(--gradient-2);
    overflow-x: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 158, 207, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 179, 217, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 229, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 158, 207, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    animation: pulse 3s ease-in-out infinite;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 8px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary,
.btn-primary {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-search {
    position: relative;
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 2px solid rgba(255, 158, 207, 0.3);
    border-radius: 30px;
    font-size: 16px;
    background: var(--white);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: var(--shadow);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 158, 207, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-pink);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid rgba(255, 158, 207, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.floating-card p {
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
}

/* Section Styles */
.featured-section,
.categories-section,
.creators-section,
.features-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 158, 207, 0.1);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.video-item.featured {
    border-color: var(--primary-pink);
    box-shadow: 0 8px 40px rgba(255, 158, 207, 0.4);
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gradient-2);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumb img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.video-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.video-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.creator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pink);
}

.creator-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.video-stats {
    font-size: 13px;
    color: var(--text-lighter);
    display: flex;
    gap: 10px;
}

.video-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: rgba(255, 158, 207, 0.1);
    color: var(--primary-pink);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-count {
    font-size: 14px;
    color: var(--text-light);
}

/* Creators */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.creator-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.creator-avatar-large {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.creator-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-pink);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border: 3px solid var(--white);
}

.creator-name-large {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.creator-bio {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.creator-stats-large {
    font-size: 14px;
    color: var(--text-lighter);
    margin-bottom: 20px;
}

.follow-btn {
    padding: 10px 30px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: var(--gradient-1);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.link-group a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* Video List Page */
.page-hero {
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.filter-bar {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 10px 20px;
    border: 2px solid rgba(255, 158, 207, 0.3);
    border-radius: 20px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 20px;
    border: 2px solid rgba(255, 158, 207, 0.3);
    border-radius: 20px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.video-list-section {
    padding: 40px 0 80px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.list-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.view-toggle {
    display: flex;
    gap: 10px;
    background: var(--white);
    padding: 5px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.view-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--gradient-1);
    color: var(--white);
}

.video-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-list-grid.list-view {
    grid-template-columns: 1fr;
}

.list-video-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 158, 207, 0.1);
    display: flex;
    flex-direction: column;
}

.video-list-grid.list-view .list-video-item {
    flex-direction: row;
}

.list-video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.list-video-thumb {
    position: relative;
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gradient-2);
}

.video-list-grid.list-view .list-video-thumb {
    width: 320px;
    height: 180px;
}

.list-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.list-video-item:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.list-video-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.list-video-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.list-video-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-lighter);
}

.list-creator {
    font-weight: 600;
    color: var(--text-dark);
}

.list-video-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.list-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.list-tag {
    padding: 4px 12px;
    background: rgba(255, 158, 207, 0.1);
    color: var(--primary-pink);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 20px;
    border: 2px solid rgba(255, 158, 207, 0.3);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 158, 207, 0.3);
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .creators-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .video-list-grid {
        grid-template-columns: 1fr;
    }
    
    .video-list-grid.list-view .list-video-item {
        flex-direction: column;
    }
    
    .video-list-grid.list-view .list-video-thumb {
        width: 100%;
    }
    
    .filter-bar {
        padding: 20px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* Category Page Styles */
.category-page-section {
    padding: 40px 0 80px;
}

.category-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.category-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
}

.category-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.category-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.category-icon-large {
    font-size: 64px;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-stats {
    font-size: 14px;
    color: var(--text-lighter);
    display: flex;
    gap: 10px;
    align-items: center;
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.preview-item {
    text-align: center;
}

.preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 2px solid rgba(255, 158, 207, 0.2);
}

.preview-item p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.category-link-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.category-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* About Page Styles */
.about-section {
    padding: 40px 0 80px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    border: 2px solid rgba(255, 158, 207, 0.1);
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.about-stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.stat-icon-large {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number-large {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label-large {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.about-features {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    border: 2px solid rgba(255, 158, 207, 0.1);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item-large {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon-large {
    font-size: 48px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-values {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 25px;
    background: rgba(255, 158, 207, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive for Category and About Pages */
@media (max-width: 768px) {
    .category-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item-large {
        flex-direction: column;
        text-align: center;
    }
    
    .about-intro,
    .about-features,
    .about-values {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .category-preview {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .category-detail-card {
        padding: 20px;
    }
}

/* Trending Tags Section */
.trending-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.trending-tag {
    padding: 12px 24px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 158, 207, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.trending-tag:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.trending-tag.hot {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    position: relative;
}

.trending-tag.hot::before {
    content: '🔥';
    margin-right: 5px;
}

/* Latest Section */
.latest-section {
    padding: 80px 0;
}

.video-badge.new {
    background: var(--gradient-1);
    color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-role {
    font-size: 13px;
    color: var(--text-lighter);
}

.testimonial-rating {
    text-align: center;
    font-size: 18px;
    color: #ffd700;
}

/* Stats Showcase Section */
.stats-showcase-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: var(--white);
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.stats-desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.stats-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-detail-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-detail-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-detail-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-detail-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 600;
}

.stats-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-chart {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    height: 300px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 60px;
}

.chart-bar {
    width: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chart-item:hover .chart-bar {
    background: rgba(255, 255, 255, 0.5);
    transform: scaleY(1.1);
}

.chart-item span {
    font-size: 12px;
    color: var(--white);
    font-weight: 600;
    opacity: 0.9;
}

/* App Download Section */
.app-download-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.app-download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-title {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.app-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.app-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-features-list {
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.app-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 158, 207, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}

.download-icon {
    font-size: 32px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.download-version {
    font-size: 13px;
    color: var(--text-lighter);
}

.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #333, #666);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-mock {
    background: var(--gradient-1);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.app-video-mock {
    flex: 1;
    background: var(--gradient-2);
    margin: 10px;
    border-radius: 15px;
}

.app-controls-mock {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    border-top: 1px solid rgba(255, 158, 207, 0.2);
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 158, 207, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Responsive for New Sections */
@media (max-width: 1024px) {
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .app-download-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-chart {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .trending-tags {
        justify-content: flex-start;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-details {
        grid-template-columns: 1fr;
    }
    
    .stats-chart {
        height: 200px;
        gap: 15px;
    }
    
    .chart-item {
        min-width: 50px;
    }
    
    .chart-bar {
        width: 40px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 480px) {
    .stats-title,
    .app-title {
        font-size: 28px;
    }
    
    .stats-chart {
        gap: 10px;
    }
    
    .chart-item {
        min-width: 40px;
    }
    
    .chart-bar {
        width: 30px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

