/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0F172A;
    color: #F1F5F9;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #F1F5F9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B5CF6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 1px;
}

/* Hero Banner (Netflix-style) */
.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-thumbnail:hover img {
    transform: scale(1.05);
}

.hero-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    cursor: pointer;
}

.hero-thumbnail:hover .hero-play-overlay {
    opacity: 1;
    background: rgba(139, 92, 246, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
    pointer-events: auto;
}

.hero-upvote-section {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    pointer-events: auto;
}

.hero-upvote-btn {
    background: rgba(16, 185, 129, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: auto;
    position: relative;
    z-index: 4;
}

.hero-upvote-btn:hover {
    background: rgba(109, 40, 217, 1);
    transform: translateY(-2px);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 20px 20px;
    z-index: 4;
}

.hero-info {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.play-btn {
    background: #F1F5F9;
    color: #0F172A;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #E2E8F0;
    transform: scale(1.05);
}

.info-btn {
    background: rgba(109, 40, 217, 0.8);
    color: #F1F5F9;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.info-btn:hover {
    background: rgba(109, 40, 217, 1);
    transform: scale(1.05);
}

.hero-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIgdmlld0JveD0iMCAwIDQwMCAzMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSI0MDAiIGhlaWdodD0iMzAwIiBmaWxsPSIjMUUyOTNCIi8+CjxwYXRoIGQ9Ik0xNjAgMTIwTDIyMCAxNTBMMTYwIDE4MFYxMjBaIiBmaWxsPSIjOEY1Q0Y2Ii8+Cjwvc3ZnPgo=') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

/* Main Navigation (Netflix-style) */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: #E2E8F0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #F1F5F9;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #8B5CF6;
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Main Content */
.main-content {
    background: #0F172A;
    padding-top: 0;
}

/* Content Rows (Netflix-style) */
.content-row {
    margin-bottom: 50px;
    padding: 0 20px;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-title {
    font-size: 24px;
    font-weight: 600;
    color: #F1F5F9;
    margin: 0;
}

.row-controls {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #F1F5F9;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Video Row */
.video-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-row::-webkit-scrollbar {
    display: none;
}

/* Video Cards in Rows */
.video-card-row {
    flex: 0 0 300px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-card-row:hover {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.video-thumbnail-row {
    width: 100%;
    height: 180px;
    background: #1E293B;
    position: relative;
    overflow: hidden;
}

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

.video-card-row:hover .video-thumbnail-row img {
    transform: scale(1.1);
}

.play-overlay-row {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card-row:hover .play-overlay-row {
    opacity: 1;
    background: rgba(139, 92, 246, 0.8);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0));
    padding: 5px;
    color: white;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta {
    position: absolute;
    top: 10px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #64748B;
}

.upvote-btn-row {
    background: rgba(16, 185, 129, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 800;
}

.upvote-btn-row:hover {
    background: #10B981;
    color: white;
    transform: translateY(-1px);
}

/* Featured Section (Legacy - keeping for compatibility) */
.featured-section {
    padding: 80px 0;
    background: #0F172A;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #F1F5F9;
}

.featured-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.featured-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: #1E293B;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.featured-card:hover .play-overlay {
    background: rgba(139, 92, 246, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.product-name {
    position: absolute;
    bottom: 35px;
    left: 15px;
    right: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.product-tagline {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.upvote-section {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upvote-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.upvote-btn:hover {
    background: rgba(16, 185, 129, 0.8);
    border-color: #10B981;
    transform: translateY(-1px);
}

.upvote-count {
    font-weight: 600;
}

/* Filter Bar */
.filter-section {
    padding: 20px 0;
    background: #0F172A;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #94A3B8;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Video Grid */
.video-grid-section {
    padding: 50px 0 100px;
    background: #0F172A;
}

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

.video-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.video-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.video-thumbnail-small {
    width: 100%;
    height: 200px;
    background: #1E293B;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.video-thumbnail-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.product-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: white;
}

.category-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.category-tag-row {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.timestamp {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

/* Full-Screen Video Modal (Netflix-style) */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.video-modal.active {
    display: flex;
}

.video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.video-container-fullscreen {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Video Placeholder for YouTube/Vimeo */
.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 40px;
}

.placeholder-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.placeholder-content p {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.placeholder-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.watch-external-btn {
    background: #FF0000;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.watch-external-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.visit-website-btn {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.visit-website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Video Overlay Controls */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Top Controls */
.overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.close-btn-fullscreen {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-btn-fullscreen:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-title-overlay {
    flex: 1;
    margin-left: 20px;
}

.video-title-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-title-overlay p {
    font-size: 20px;
    color: #E2E8F0;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Center Play/Pause */
.overlay-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.play-pause-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid white;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Bottom Controls */
.overlay-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.video-progress-fill {
    height: 100%;
    background: #8B5CF6;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.video-time {
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.video-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.upvote-btn-fullscreen:hover {
    background: rgba(16, 185, 129, 0.8);
    border-color: #10B981;
}

.website-btn-fullscreen:hover {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-color: transparent;
}

.info-btn-fullscreen:hover {
    background: rgba(139, 92, 246, 0.8);
    border-color: #8B5CF6;
}

.video-details-overlay {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maker-info-overlay {
    display: flex;
    align-items: center;
    gap: 15px;
}

.maker-info-overlay p {
    color: #E2E8F0;
    font-size: 16px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.category-badge {
    background: rgba(139, 92, 246, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.description-overlay {
    color: #B0B8C8;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 600px;
}

/* Info Panel */
.info-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(3px);
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 20;
    overflow-y: auto;
}

.info-panel.active {
    transform: translateX(0);
}

.info-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 15px;
}

.info-content p {
    color: #94A3B8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-actions .upvote-btn {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    color: #10B981;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.info-actions .upvote-btn:hover {
    background: #10B981;
    color: white;
    transform: translateY(-2px);
}

.info-actions .website-btn {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-actions .website-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.info-actions .maker-info {
    color: #64748B;
    font-size: 14px;
}

/* Mobile Responsive for Video Modal */
@media (max-width: 768px) {
    .video-title-overlay h1 {
        font-size: 32px;
    }
    
    .video-title-overlay p {
        font-size: 16px;
    }
    
    .play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .action-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .info-panel {
        width: 100%;
        padding: 20px;
    }
    
    .info-content h2 {
        font-size: 24px;
    }
    
    .overlay-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .video-title-overlay {
        margin-left: 0;
    }
}

/* Submit Page Styles */
.submit-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    min-height: 100vh;
}

.submit-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.submit-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #F1F5F9;
}

.submit-subtitle {
    text-align: center;
    color: #94A3B8;
    margin-bottom: 40px;
}

.submit-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #F1F5F9;
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #F1F5F9;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-file {
    background: transparent;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-file:hover {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
}

.form-help {
    color: #64748B;
    font-size: 12px;
    margin-top: 5px;
}

/* Featured Upsell */
.featured-upsell {
    margin: 30px 0;
}

.upsell-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.upsell-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

.upsell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.upsell-header h3 {
    color: #F1F5F9;
    font-size: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
}

.upsell-content p {
    color: #94A3B8;
    margin-bottom: 15px;
}

.upsell-features {
    list-style: none;
    margin-bottom: 20px;
}

.upsell-features li {
    color: #F1F5F9;
    margin-bottom: 8px;
    font-size: 14px;
}

.upsell-button {
    margin-top: 15px;
}

.featured-payment-btn {
    display: inline-block;
    background: blueviolet;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.featured-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    text-decoration: none;
    color: white;
}

.featured-payment-btn:active {
    transform: translateY(0);
}

.submit-btn {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.active {
    display: flex;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin: 0 auto 20px;
}

.success-modal h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #F1F5F9;
}

.success-modal p {
    text-align: center;
    color: #94A3B8;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #F1F5F9;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Loading Spinner */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid #8B5CF6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Launch Page Styles */
.launch-main {
    flex: 1;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

/* Fullscreen video styles */
.launch-hero-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.video-container-fullscreen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.hero-video-fullscreen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Iframe styling for YouTube/Vimeo embeds */
.video-container-fullscreen iframe {
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    transition: opacity 0.3s ease;
}

/* Video navbar */
.video-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.video-navbar .nav-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}

.video-navbar .brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.video-navbar .brand-icon {
    font-size: 1.5rem;
}

.video-navbar .submit-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
    text-shadow: none;
}

.video-navbar .submit-btn:hover {
    transform: translateY(-2px);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-info {
    color: white;
    max-width: 800px;
    padding: 2rem;
    margin-top: 4rem; /* Space for navbar */
}

.video-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-info p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.maker-info {
    font-size: 1.1rem;
    opacity: 0.9;
}

.category-badge {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.play-icon {
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive design for fullscreen video */
@media (max-width: 768px) {
    .video-navbar {
        padding: 0.75rem 1rem;
    }
    
    .video-info {
        padding: 1rem;
        margin-top: 3rem;
    }
    
    .video-info h1 {
        font-size: 2rem;
    }
    
    .video-info p {
        font-size: 1rem;
    }
    
    .play-pause-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        font-size: 1.5rem;
    }
}

/* Mobile portrait: Move action buttons to bottom */
@media (max-width: 768px) and (orientation: portrait) {
    .video-overlay {
        flex-direction: column;
        justify-content: space-between;
    }
    
    .video-info {
        margin-top: 4rem;
        margin-bottom: auto;
    }
    
    .hero-actions {
        position: absolute;
        bottom: 2rem;
        left: 1rem;
        right: 1rem;
        display: flex;
        gap: 1rem;
        justify-content: center;
        z-index: 10;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        flex: 1;
        max-width: 200px;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* Launch Footer Styles */
.launch-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand .brand-icon {
    font-size: 1.75rem;
}

.footer-brand .brand-text {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8B5CF6;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #EC4899;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .launch-footer {
        padding: 2rem 0 1rem;
    }
}

.launch-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: #334155;
}

.placeholder-content {
    text-align: center;
    color: #8b5cf6;
}

.play-button {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top:70px;
    padding: 2rem;
    background: transparent;
    z-index: 3;
}

.hero-info h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-info p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.maker-info {
    color: #94a3b8;
    font-size: 1rem;
}

.category-badge {
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #8b5cf6;
    color: white;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.launch-details {
    padding: 4rem 0;
    background: #0f0f23;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.details-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.details-main p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.launch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maker-card {
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.maker-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.maker-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.maker-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.maker-details p {
    margin: 0;
    color: #cbd5e1;
}

.maker-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.maker-email {
    font-size: 0.875rem;
    color: #94a3b8;
}

.launch-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.upvote-btn {
    background: #8b5cf6;
    color: white;
}

.upvote-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.website-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.website-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.loading-container, .error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.error-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ef4444;
}

.error-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #F1F5F9;
    margin-top: 4rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    align-items: baseline;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F1F5F9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #F1F5F9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F1F5F9;
}

.footer-bottom {
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-bottom p {
    color: #94A3B8;
    margin: 0;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(148, 163, 184, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Banner */
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-content {
        padding: 30px 15px 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .play-btn,
    .info-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-play-overlay {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 15px;
        height: 60px;
        flex-wrap: wrap;
    }
    
    .nav-logo h1 {
        font-size: 20px;
        margin: 0;
    }
    
    .nav-logo p {
        display: none;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .submit-btn {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Content Rows */
    .content-row {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .row-title {
        font-size: 20px;
    }
    
    .video-card-row {
        flex: 0 0 250px;
    }
    
    .video-thumbnail-row {
        height: 140px;
    }
    
    .card-info {
        padding: 12px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-tagline {
        font-size: 12px;
    }
    
    /* Legacy styles */
    .featured-carousel {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .filter-bar {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .submit-container {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .modal-content {
        margin: 0 20px;
        padding: 20px;
    }
    
    #modalVideo {
        height: 250px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .nav-logo h1 {
        font-size: 18px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .submit-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: auto;
    }
    
    /* Ensure navbar doesn't overflow on very small screens */
    .navbar {
        overflow: hidden;
    }
    
    .nav-container {
        min-width: 0;
        flex-shrink: 1;
    }
    
    .nav-logo {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .nav-links {
        flex-shrink: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Embedded Video Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.embedded-video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls-overlay {
    opacity: 1;
}

.timeline-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.timeline {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.timeline-progress {
    height: 100%;
    background: #8B5CF6;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.timeline-handle {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #8B5CF6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: left 0.1s ease;
}

/* Launch Page Mobile Styles */
@media (max-width: 768px) {
    .launch-hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .hero-info p {
        font-size: 1rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .launch-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

.time-display {
    display: flex;
    gap: 5px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    min-width: 80px;
}
