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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Gradient Mesh Background */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(196, 69, 105, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Header */
.sleek-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.brand-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-symbol {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symbol-layers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: layer-rotate 8s linear infinite;
}

.layer-1 {
    background: linear-gradient(45deg, #ff6b9d, transparent, #ff6b9d);
    animation-delay: 0s;
}

.layer-2 {
    background: linear-gradient(135deg, transparent, #667eea, transparent);
    animation-delay: 2s;
}

.layer-3 {
    background: linear-gradient(225deg, #c44569, transparent, #c44569);
    animation-delay: 4s;
}

@keyframes layer-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.symbol-text {
    position: relative;
    color: #ff6b9d;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn, .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover, .menu-btn:hover {
    background: rgba(255, 107, 157, 0.1);
}

.search-btn svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 3px;
}

.menu-line {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-showcase {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-flow {
    animation: content-float 6s ease-in-out infinite;
}

@keyframes content-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

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

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.headline-primary {
    display: block;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.headline-secondary {
    display: block;
    color: #333;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.action-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-action, .secondary-action {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.primary-action {
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.secondary-action {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-action:hover {
    border-color: #ff6b9d;
    color: #ff6b9d;
    transform: translateY(-3px);
}

.secondary-action svg {
    width: 20px;
    height: 20px;
}

.action-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.primary-action:hover .action-ripple {
    left: 100%;
}

.stats-showcase {
    display: flex;
    gap: 2rem;
}

.stat-bubble {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b9d;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Visual Container */
.visual-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 400px;
}

.main-preview {
    grid-row: 1 / 3;
}

.preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.preview-content {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-preview .preview-content {
    height: 100%;
}

.preview-content.small {
    height: 100%;
}

.play-indicator {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b9d;
    transition: all 0.3s ease;
}

.play-indicator.small {
    width: 40px;
    height: 40px;
}

.play-indicator svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.play-indicator.small svg {
    width: 16px;
    height: 16px;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-card:hover .preview-overlay {
    opacity: 1;
}

.preview-card:hover .play-indicator {
    transform: scale(1.1);
}

.preview-info {
    padding: 1rem;
}

.preview-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.preview-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Videos Gallery */
.videos-gallery {
    padding: 5rem 0;
    background: #f8f9fa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-highlight {
    color: #ff6b9d;
}

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

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

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-card.premium {
    border: 2px solid #ff6b9d;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.card-media {
    position: relative;
    height: 250px;
}

.video-card.premium .card-media {
    height: auto;
}

.media-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

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

.play-control:hover {
    transform: scale(1.1);
}

.play-control svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.quality-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 107, 157, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.duration-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-details {
    padding: 1.5rem;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.video-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge.premium {
    background: rgba(255, 107, 157, 0.2);
    color: #ff6b9d;
}

.badge.new {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.video-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-item svg {
    width: 16px;
    height: 16px;
}

.gallery-footer {
    text-align: center;
}

.load-more-btn {
    position: relative;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: white;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-accent {
    color: #ff6b9d;
}

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

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

.category-tile {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tile:hover {
    transform: translateY(-10px);
}

.tile-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    opacity: 0.8;
}

.tile-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

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

.tile-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tile-description {
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tile-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tile-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-tile:hover .tile-hover {
    opacity: 1;
}

/* Features Showcase */
.features-showcase {
    padding: 5rem 0;
    background: #f8f9fa;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-gradient {
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-visual {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b9d, #667eea);
    border-radius: 50%;
    opacity: 0.1;
}

.visual-icon {
    position: relative;
    z-index: 1;
}

.visual-icon svg {
    width: 40px;
    height: 40px;
    color: #ff6b9d;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.modern-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-title {
    color: white;
}

.brand-description {
    color: #ccc;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-title {
    color: #ff6b9d;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b9d;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .action-group {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-showcase {
        justify-content: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card.premium {
        grid-template-columns: 1fr;
    }
    
    .categories-grid, .features-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}