/* ============================================================================
   MUSE Services Interactive - YouTube Channel Style
   ============================================================================ */

/* ============================================================================
   YouTube Services Section - Full Page Layout
   ============================================================================ */

.yt-services-section {
    background: #0f0f0f;
    min-height: 100vh;
    padding-top: 72px; /* Account for nav */
}

/* YouTube Page Header */
.yt-page-header {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 56px;
    background: #0f0f0f;
    border-bottom: 1px solid #272727;
}

.yt-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.yt-logo {
    display: flex;
    align-items: center;
}

.yt-header-center {
    flex: 1;
    max-width: 640px;
    margin: 0 40px;
}

.yt-search-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.yt-search-input {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    background: #121212;
    border: 1px solid #303030;
    border-right: none;
    border-radius: 20px 0 0 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.yt-search-input::placeholder {
    color: #888;
}

.yt-search-input:focus {
    border-color: #1c62b9;
}

.yt-search-btn {
    height: 40px;
    width: 64px;
    background: #222;
    border: 1px solid #303030;
    border-radius: 0 20px 20px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-search-btn:hover {
    background: #333;
}

.yt-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.yt-header-icon:hover {
    background: #272727;
}

.yt-avatar-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 8px;
    cursor: pointer;
}

.yt-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Channel Page */
.yt-channel-page {
    padding-top: 56px; /* Account for fixed header */
}

/* Banner */
.yt-banner-wrapper {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
}

.yt-banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Channel Header */
.yt-channel-header {
    display: flex;
    gap: 24px;
    padding: 24px;
    max-width: 1284px;
    margin: 0 auto;
}

.yt-channel-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: -40px;
    border: 4px solid #0f0f0f;
    background: #0f0f0f;
}

.yt-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-channel-meta {
    flex: 1;
    padding-top: 8px;
}

.yt-channel-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.yt-channel-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.yt-verified-badge {
    flex-shrink: 0;
}

.yt-channel-stats {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
}

.yt-stat-separator {
    margin: 0 4px;
}

.yt-channel-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px 0;
    max-width: 600px;
}

.yt-channel-actions {
    display: flex;
    gap: 12px;
}

.yt-subscribe-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    color: #0f0f0f;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.yt-subscribe-btn-large:hover {
    background: #d9d9d9;
}

.yt-join-btn {
    padding: 10px 20px;
    background: transparent;
    color: #3ea6ff;
    border: 1px solid #3ea6ff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.yt-join-btn:hover {
    background: rgba(62, 166, 255, 0.1);
}

/* Search Wrapper & Suggestions */
.yt-search-wrapper {
    position: relative;
    width: 100%;
}

.yt-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #212121;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.yt-search-wrapper:focus-within .yt-search-suggestions,
.yt-search-input:focus ~ .yt-search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yt-suggestion-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.yt-suggestion-item:hover,
.yt-suggestion-item.focused {
    background: #3d3d3d;
}

.yt-suggestion-item.focused {
    background: #4a4a4a;
}

/* Search input filled animation */
.yt-search-input.filled {
    animation: inputFilled 0.5s ease;
}

@keyframes inputFilled {
    0%, 100% { background: #121212; }
    50% { background: #1a3a1a; border-color: #2ecc71; }
}

.yt-suggestion-item svg {
    color: #aaa;
    flex-shrink: 0;
}

.yt-suggestion-item span {
    font-size: 14px;
}

/* Services Section Header */
.yt-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    max-width: 1284px;
    margin: 0 auto;
    border-bottom: 1px solid #272727;
}

.yt-services-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.yt-services-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-services-header-icon svg {
    color: white;
}

.yt-services-header-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.yt-services-header-text p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

.yt-services-header-arrow {
    width: 36px;
    height: 36px;
    background: #272727;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-down 2s infinite;
}

.yt-services-header-arrow svg {
    color: #ff0000;
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Channel Navigation - Service Tabs */
.yt-channel-nav {
    display: flex;
    gap: 0;
    padding: 0 24px;
    max-width: 1284px;
    margin: 0 auto;
    border-bottom: 1px solid #272727;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.yt-nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    white-space: nowrap;
}

.yt-nav-tab svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.yt-nav-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.yt-nav-tab.active {
    color: #fff;
}

.yt-nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #fff;
}

.yt-tab-badge {
    background: #ff0000;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Tab Content */
.yt-tab-content {
    padding: 32px 24px;
    max-width: 1284px;
    margin: 0 auto;
}

.yt-tab-panel {
    display: none;
    gap: 24px;
}

.yt-tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: fadeIn 0.3s ease;
}

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

/* Explore Cards in Tabs */
.yt-explore-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #272727;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yt-explore-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transition: width 0.3s ease;
}

.yt-explore-card.viral-card::before { background: linear-gradient(180deg, #3b82f6, #1d4ed8); }
.yt-explore-card.content-card::before { background: linear-gradient(180deg, #ec4899, #be185d); }
.yt-explore-card.community-card::before { background: linear-gradient(180deg, #f97316, #c2410c); }
.yt-explore-card.ai-card::before { background: linear-gradient(180deg, #06b6d4, #0e7490); }

.yt-explore-card:hover {
    background: #222;
    border-color: #3d3d3d;
    transform: translateY(-4px);
}

.yt-explore-card:hover::before {
    width: 6px;
}

.yt-explore-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.viral-card .yt-explore-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2)); }
.content-card .yt-explore-icon { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(190, 24, 93, 0.2)); }
.community-card .yt-explore-icon { background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(194, 65, 12, 0.2)); }
.ai-card .yt-explore-icon { background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(14, 116, 144, 0.2)); }

.yt-explore-icon svg {
    width: 28px;
    height: 28px;
}

.viral-card .yt-explore-icon svg { stroke: #3b82f6; }
.content-card .yt-explore-icon svg { stroke: #ec4899; }
.community-card .yt-explore-icon svg { stroke: #f97316; }
.ai-card .yt-explore-icon svg { color: #06b6d4; }

.yt-explore-content {
    flex: 1;
}

.yt-explore-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.yt-explore-tag.new {
    background: #ff0000;
    color: #fff;
}

.yt-explore-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.yt-explore-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

/* Service Features List */
.yt-explore-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.yt-explore-features li {
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-explore-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Explicit CTA Button */
.yt-explore-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.yt-explore-card:hover .yt-explore-cta {
    background: #cc0000;
    transform: translateX(4px);
}

.yt-explore-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.yt-stat-pill {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3d3d3d;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
}

.yt-explore-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.yt-explore-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.yt-explore-card:hover .yt-explore-arrow {
    background: #fff;
}

.yt-explore-card:hover .yt-explore-arrow svg {
    stroke: #0f0f0f;
}

/* Video Preview in Tabs */
.yt-tab-video-preview {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #272727;
    transition: all 0.3s ease;
}

.yt-tab-video-preview:hover {
    border-color: #3d3d3d;
    transform: translateY(-4px);
}

.yt-preview-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

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

.yt-tab-video-preview:hover .yt-preview-thumbnail img {
    transform: scale(1.05);
}

.yt-preview-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yt-tab-video-preview:hover .yt-preview-play {
    opacity: 1;
}

.yt-preview-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.yt-preview-new {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.yt-preview-info {
    padding: 16px;
}

.yt-preview-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.yt-preview-info p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
}

/* Responsive for Tab Content */
@media (max-width: 900px) {
    .yt-tab-panel.active {
        grid-template-columns: 1fr;
    }

    .yt-nav-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .yt-nav-tab svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {
    .yt-explore-card {
        flex-direction: column;
        align-items: stretch;
    }

    .yt-explore-arrow {
        align-self: flex-end;
    }

    .yt-tab-content {
        padding: 16px;
    }
}

/* Featured Section */
.yt-featured-section {
    padding: 24px;
    max-width: 1284px;
    margin: 0 auto;
}

.yt-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.yt-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.yt-play-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.yt-play-all-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Video Grid */
.yt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Service Card */
.yt-service-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.yt-service-card:hover {
    transform: translateY(-4px);
}

.yt-card-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #272727;
}

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

.yt-service-card:hover .yt-card-thumbnail img {
    transform: scale(1.05);
}

.yt-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.yt-service-card:hover .yt-thumbnail-overlay {
    opacity: 1;
}

.yt-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 3px 6px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.yt-watch-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ff0000;
}

.yt-new-label {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Card Content */
.yt-card-content {
    display: flex;
    gap: 12px;
    padding: 12px 0;
}

.yt-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yt-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-card-info {
    flex: 1;
    min-width: 0;
}

.yt-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
}

.yt-card-channel {
    font-size: 12px;
    color: #aaa;
}

.yt-card-channel:hover {
    color: #fff;
}

.yt-mini-verified {
    flex-shrink: 0;
}

.yt-card-stats {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #aaa;
}

.yt-stat-dot {
    font-size: 10px;
}

.yt-card-menu {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.yt-service-card:hover .yt-card-menu {
    opacity: 1;
}

/* CTA Banner */
.yt-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    margin: 32px 24px;
    max-width: calc(1284px - 48px);
    margin-left: auto;
    margin-right: auto;
    background: #272727;
    border-radius: 12px;
}

.yt-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.yt-cta-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-cta-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.yt-cta-text p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

.yt-cta-subscribe {
    padding: 12px 24px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.yt-cta-subscribe:hover {
    background: #cc0000;
}

/* Responsive */
@media (max-width: 1200px) {
    .yt-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .yt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yt-channel-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .yt-channel-avatar {
        margin-top: -60px;
    }

    .yt-channel-description {
        max-width: 100%;
    }

    .yt-channel-actions {
        justify-content: center;
    }

    .yt-header-center {
        display: none;
    }

    .yt-page-header {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .yt-services-grid {
        grid-template-columns: 1fr;
    }

    .yt-channel-avatar {
        width: 100px;
        height: 100px;
    }

    .yt-channel-title {
        font-size: 24px;
    }

    .yt-banner-img {
        height: 120px;
    }

    .yt-channel-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px;
        overflow-x: visible;
    }

    .yt-nav-tab {
        padding: 10px 8px;
        white-space: normal;
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .yt-nav-tab svg {
        width: 20px;
        height: 20px;
    }

    .yt-nav-tab.active {
        background: rgba(255, 255, 255, 0.1);
    }

    .yt-nav-tab.active::after {
        display: none;
    }

    .yt-tab-badge {
        font-size: 8px;
        padding: 2px 4px;
    }

    /* Hide social proof stats on mobile */
    .social-proof {
        display: none;
    }

    .yt-cta-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .yt-cta-content {
        flex-direction: column;
    }

    /* Services Header Mobile */
    .yt-services-header {
        padding: 16px;
    }

    .yt-services-header-icon {
        width: 40px;
        height: 40px;
    }

    .yt-services-header-icon svg {
        width: 20px;
        height: 20px;
    }

    .yt-services-header-text h2 {
        font-size: 16px;
    }

    .yt-services-header-text p {
        font-size: 12px;
    }

    .yt-services-header-arrow {
        display: none;
    }

    /* Features List Mobile */
    .yt-explore-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .yt-explore-features li {
        font-size: 12px;
    }

    .yt-explore-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ============================================================================
   Legacy Styles - Keep for other sections
   ============================================================================ */

/* Services Hero - Compact (Legacy) */
.services-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    line-height: 1.1;
    margin: var(--space-4) 0 var(--space-6);
    color: var(--color-primary);
}

.services-hero-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    font-weight: 500;
}

/* Viral Feed Section - Legacy */
.viral-feed-section {
    padding: var(--space-20) 0;
    background: #ffffff;
}

.feed-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.feed-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.feed-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-10);
    line-height: 1.6;
}

/* Stats Bar - Horizontal */
.feed-stats {
    display: flex;
    gap: var(--space-12);
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--space-6) 0;
    margin-bottom: var(--space-2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Laptop Showcase Section */
.laptop-showcase {
    padding: var(--space-20) 0;
    background: #ffffff;
}

/* Service Tabs - Horizontal Layout */
.viral-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.service-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-6);
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: visible;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    pointer-events: auto;
    z-index: 10;
}

/* Breathing animation for idle state */
.service-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(64, 93, 230, 0.05) 0%, transparent 70%);
    opacity: 0;
    animation: breathe 3s ease-in-out infinite;
    pointer-events: none;
}

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

/* Hover state */
.service-tab:hover {
    background: var(--gray-100);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-tab:hover::before {
    opacity: 0.5;
    animation: none;
}

/* Active state */
.service-tab.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(64, 93, 230, 0.3);
    transform: translateY(-4px);
}

.service-tab.active::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Ripple effect on click */
.service-tab::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease-out;
    pointer-events: none;
}

.service-tab.clicked::after {
    opacity: 1;
    transform: scale(2);
    transition: all 0.6s ease-out;
}

/* Tab Icon */
.tab-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-tab:hover .tab-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(64, 93, 230, 0.1);
}

.service-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.tab-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-tab.active .tab-icon svg {
    color: white;
}

/* Icon Animations */
/* Viral Engineering - Trending Line */
[data-icon="viral"] .icon-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 2s ease-in-out infinite;
}

[data-icon="viral"] .icon-pulse {
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes drawLine {
    0%, 100% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Creator Content - Camera Shutter */
[data-icon="content"] .icon-flash {
    opacity: 0;
    animation: flash 3s ease-in-out infinite;
}

[data-icon="content"] .icon-lens {
    animation: focus 2s ease-in-out infinite;
}

@keyframes flash {
    0%, 90%, 100% { opacity: 0; }
    92%, 96% { opacity: 1; }
}

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

/* Community Army - Network Animation */
[data-icon="community"] .icon-person {
    animation: bobble 2s ease-in-out infinite;
}

[data-icon="community"] .icon-person-1 {
    animation-delay: 0s;
}

[data-icon="community"] .icon-person-2 {
    animation-delay: 0.3s;
}

[data-icon="community"] .icon-person-3 {
    animation-delay: 0.6s;
}

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

/* AI Influencers - Neural Network */
[data-icon="ai"] .icon-node {
    animation: aiPulse 2s ease-in-out infinite;
}

[data-icon="ai"] .icon-node-1 { animation-delay: 0s; }
[data-icon="ai"] .icon-node-2 { animation-delay: 0.2s; }
[data-icon="ai"] .icon-node-3 { animation-delay: 0.4s; }
[data-icon="ai"] .icon-node-4 { animation-delay: 0.6s; }

[data-icon="ai"] .icon-network {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: networkPulse 3s linear infinite;
}

@keyframes aiPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes networkPulse {
    0%, 100% { stroke-dashoffset: 50; }
    50% { stroke-dashoffset: 0; }
}

/* Tab Check Mark */
.tab-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-tab.viewed .tab-check {
    opacity: 1;
    transform: scale(1);
}

/* NEW Badge */
.tab-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 10;
}

.service-tab.viewed .tab-new {
    display: none;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.tab-content {
    flex: 1;
    min-width: 0;
}

.tab-title {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-subtitle {
    font-size: var(--text-xs);
    opacity: 0.7;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-tab:hover .tab-title {
    transform: translateX(2px);
}

.service-tab.active .tab-subtitle {
    opacity: 0.9;
}

/* Progress Indicator */
.service-progress {
    max-width: 600px;
    margin: 0 auto var(--space-12);
    text-align: center;
}

.progress-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-3);
    font-weight: 600;
}

.progress-count {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-primary);
    display: inline-block;
    min-width: 20px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Interaction Hint */
.interaction-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    font-size: 12px;
    color: var(--gray-400);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.interaction-hint:hover {
    opacity: 1;
}

.hint-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hint-divider {
    color: var(--gray-300);
}

.hint-keyboard {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 11px;
}

/* Hide keyboard hints on mobile */
@media (max-width: 768px) {
    .hint-keyboard {
        display: none;
    }
    .hint-divider:last-of-type {
        display: none;
    }
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Laptop Container */
.laptop-container {
    max-width: 1200px;
    margin: var(--space-16) auto 0;
    perspective: 1500px;
    padding: 0 var(--space-4);
}

.laptop-frame {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    animation: laptopFloat 6s ease-in-out infinite;
}

@keyframes laptopFloat {
    0%, 100% { transform: translateY(0px) rotateX(2deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

/* Laptop Glow Effect */
.laptop-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.laptop-glow[data-glow="viral"] {
    background: radial-gradient(circle, rgba(64, 93, 230, 0.4) 0%, transparent 70%);
}

.laptop-glow[data-glow="content"] {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.4) 0%, transparent 70%);
}

.laptop-glow[data-glow="community"] {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
}

.laptop-glow[data-glow="ai"] {
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
}

.laptop-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px 12px 0 0;
    padding: 20px;
    box-shadow:
        inset 0 0 0 8px #0a0a0a,
        inset 0 0 0 10px #1f1f1f,
        0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 1;
}

/* Screen Content - Notion Style */
.service-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: var(--space-12) var(--space-10);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) translateY(30px) rotateX(8deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
    z-index: 1;
    filter: blur(8px);
}

/* Glitch effect overlay */
.service-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 0, 0, 0.05) 4px
    );
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.1s;
}

/* Glitch on transition */
.service-screen.glitching::before {
    opacity: 1;
    animation: glitchScan 0.3s linear;
}

@keyframes glitchScan {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-100%) scaleX(1.02); }
    50% { transform: translateY(0) scaleX(0.98); }
    75% { transform: translateY(100%) scaleX(1.01); }
}

.service-screen::-webkit-scrollbar {
    width: 8px;
}

.service-screen::-webkit-scrollbar-track {
    background: transparent;
}

.service-screen::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.service-screen::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

.service-screen.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0) rotateX(0deg);
    pointer-events: auto;
    z-index: 10;
    filter: blur(0px);
    animation: screenFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes screenFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(30px) rotateX(8deg);
        filter: blur(8px);
    }
    40% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

.screen-content {
    max-width: 700px;
    margin: 0 auto;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.screen-header h3 {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.screen-description {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

/* Notion-Style Divider */
.divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--space-8) 0;
}

/* Feature List - Notion Style */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-left: 3px solid transparent;
    padding-left: var(--space-4);
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-left-color: var(--color-accent);
    padding-left: var(--space-5);
    background: var(--gray-50);
    margin-left: -8px;
    padding-right: var(--space-4);
    border-radius: var(--radius-md);
}

.feature-text strong {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--color-primary);
}

.feature-text p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Proof Card - Notion Style */
.proof-card {
    background: var(--gray-50);
    border-left: 3px solid var(--color-accent);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.proof-card:hover {
    background: var(--gray-100);
    border-left-color: #405de6;
    box-shadow: var(--shadow-md);
}

.proof-label {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    letter-spacing: 0.5px;
}

.proof-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    margin: 0;
    color: var(--gray-700);
}

.proof-card strong {
    font-weight: 700;
    color: var(--color-primary);
}

/* Animated Counters */
.counter {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 2ch;
    text-align: left;
    transition: all 0.3s ease;
}

.counter.counting {
    animation: countPulse 0.3s ease;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--color-accent); }
}

/* Laptop Base */
.laptop-base {
    width: 120%;
    height: 20px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    margin: 0 -10%;
    border-radius: 0 0 20px 20px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
}

/* Service Packages Preview */
.packages-preview {
    background: white;
    padding: var(--space-20) 0;
}

.packages-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.packages-header h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.packages-header p {
    font-size: var(--text-xl);
    color: var(--gray-600);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto var(--space-8);
}

.package-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
}

.package-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured {
    border-color: var(--color-accent);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-label {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.package-name {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.package-price {
    margin-bottom: var(--space-4);
}

.price-amount {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-primary);
}

.price-period {
    font-size: var(--text-lg);
    color: var(--gray-500);
    font-weight: 500;
}

.package-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.package-features {
    list-style: none;
    margin-bottom: var(--space-8);
    padding: 0;
}

.package-features li {
    padding: var(--space-3) 0;
    color: var(--gray-700);
    font-size: var(--text-base);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: var(--space-3);
    flex-shrink: 0;
}

.package-cta {
    display: block;
    text-align: center;
    padding: var(--space-4) var(--space-6);
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
}

.package-cta:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.package-cta.primary {
    background: var(--color-primary);
    color: white;
}

.package-cta.primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.packages-note {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

/* Flip Card Comparison */
.flip-comparison {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.comparison-header h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
    color: var(--color-primary);
}

.comparison-instruction {
    font-size: var(--text-lg);
    color: var(--gray-600);
    font-weight: 500;
}

/* Flip Card Container */
.flip-card-container {
    max-width: 900px;
    margin: 0 auto;
    perspective: 1500px;
    cursor: pointer;
    position: relative;
}

.flip-card-container * {
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 700px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-container.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-face {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.flip-card-front {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    color: #1f2937;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 100%);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-header {
    text-align: center;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.flip-card-back .flip-card-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.flip-card-header h3 {
    font-size: var(--text-4xl);
    font-weight: 900;
    margin-bottom: var(--space-4);
}

.flip-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flip-badge.bad {
    background: #fee2e2;
    color: #dc2626;
}

.flip-badge.good {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.flip-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.flip-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.flip-card-back .flip-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-item:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-back .flip-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flip-item.highlight {
    background: rgba(220, 38, 38, 0.05);
    border: 2px solid #dc2626;
}

.flip-card-back .flip-item.highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.flip-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: var(--text-xl);
    font-weight: 900;
}

.flip-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.flip-icon.bad {
    background: #dc2626;
    color: white;
}

.flip-icon.good {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.flip-text {
    flex: 1;
}

.flip-text strong {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.flip-text p {
    font-size: var(--text-base);
    opacity: 0.8;
    line-height: 1.5;
}

.flip-card-back .flip-text p {
    opacity: 0.9;
}

.flip-card-footer {
    text-align: center;
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 0.6;
    font-size: var(--text-sm);
}

.flip-card-back .flip-card-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

/* Social Proof - Redesigned */
.social-proof {
    padding: var(--space-20) 0;
    background: #fafafa;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.proof-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #dc2626;
    border-radius: 12px;
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top-color: #dc2626;
}

.proof-stat {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: var(--space-4);
    line-height: 1;
}

.social-proof .proof-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    background: none;
    border-radius: 0;
    padding: 0;
}

/* Final CTA */
.final-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.cta-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-10);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
}

.cta-trust {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--text-base);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-primary {
    background: white;
    color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-hero-title {
        font-size: var(--text-4xl);
    }

    .feed-title {
        font-size: var(--text-4xl);
    }

    .feed-subtitle {
        font-size: var(--text-lg);
    }

    .feed-stats {
        gap: var(--space-8);
    }

    .viral-posts-grid {
        flex-direction: column;
    }

    .service-tab {
        max-width: 100%;
    }

    .service-tabs {
        grid-template-columns: 1fr;
    }

    .laptop-frame {
        max-width: 100%;
    }

    .screen-content {
        padding: var(--space-6);
    }

    .screen-header h3 {
        font-size: var(--text-2xl);
    }

    .ticker-stats {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .ticker-divider {
        display: none;
    }

    .comparison-vs {
        gap: var(--space-3);
    }

    .vs-item {
        font-size: var(--text-sm);
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }

    .proof-stat {
        font-size: 2.75rem;
    }

    .social-proof .proof-label {
        font-size: 0.8125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-trust {
        flex-direction: column;
        gap: var(--space-3);
    }
}

@media (max-width: 968px) {
    .flip-card-face {
        padding: var(--space-8);
        min-height: 550px;
    }

    .flip-card-header h3 {
        font-size: var(--text-3xl);
    }

    .flip-item {
        padding: var(--space-4);
    }

    .flip-text strong {
        font-size: var(--text-base);
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding: 100px 0 40px;
    }

    .services-hero-title {
        font-size: var(--text-3xl);
    }

    .feed-title {
        font-size: var(--text-3xl);
    }

    .feed-subtitle {
        font-size: var(--text-base);
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    .service-tab {
        padding: var(--space-4) var(--space-5);
        gap: var(--space-2);
    }

    .tab-title {
        font-size: var(--text-sm);
    }

    .flip-card-face {
        padding: var(--space-6);
        min-height: 650px;
    }

    .flip-card-header h3 {
        font-size: var(--text-2xl);
    }

    .flip-badge {
        font-size: var(--text-xs);
    }

    .flip-item {
        padding: var(--space-3);
        gap: var(--space-3);
    }

    .flip-icon {
        width: 32px;
        height: 32px;
        font-size: var(--text-base);
    }

    .flip-text strong {
        font-size: var(--text-base);
    }

    .flip-text p {
        font-size: var(--text-sm);
    }

    .laptop-showcase {
        padding: var(--space-12) 0;
    }

    .service-tab {
        padding: var(--space-4);
        gap: var(--space-3);
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .tab-title {
        font-size: var(--text-base);
    }

    .laptop-screen {
        padding: 12px;
    }

    .service-screen {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: var(--space-5);
    }

    .feature-item {
        padding: var(--space-3) 0;
        padding-left: var(--space-3);
    }

    .feature-item:hover {
        margin-left: -4px;
        padding-left: var(--space-4);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: var(--space-6);
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .proof-item {
        padding: var(--space-6) var(--space-5);
    }

    .proof-stat {
        font-size: 2.5rem;
    }

    .social-proof .proof-label {
        font-size: 0.75rem;
    }

    .cta-content h2 {
        font-size: var(--text-3xl);
    }

    .cta-content p {
        font-size: var(--text-lg);
    }
}

/* ============================================================================
   YouTube Channel Style - Laptop Display
   ============================================================================ */

.laptop-screen.youtube-channel {
    background: #0f0f0f;
    padding: 0;
    position: relative;
}

.yt-channel-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #0f0f0f;
    border-radius: 8px;
}

.yt-channel-wrapper::-webkit-scrollbar {
    width: 8px;
}

.yt-channel-wrapper::-webkit-scrollbar-track {
    background: #0f0f0f;
}

.yt-channel-wrapper::-webkit-scrollbar-thumb {
    background: #3f3f3f;
    border-radius: 4px;
}

/* YouTube Header Bar */
.yt-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: #0f0f0f;
    border-bottom: 1px solid #272727;
    position: sticky;
    top: 0;
    z-index: 100;
}

.yt-logo {
    flex-shrink: 0;
}

.yt-logo svg {
    height: 16px;
    width: auto;
}

.yt-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #121212;
    border: 1px solid #303030;
    border-radius: 20px;
    padding: 6px 16px;
    flex: 1;
    max-width: 300px;
    margin: 0 16px;
}

.yt-search-bar span {
    color: #aaa;
    font-size: 12px;
    flex: 1;
}

.yt-search-bar svg {
    color: #aaa;
    flex-shrink: 0;
}

.yt-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-create-btn {
    background: #272727;
    color: #fff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.yt-create-btn:hover {
    background: #3f3f3f;
}

/* Channel Banner */
.yt-channel-banner {
    width: 100%;
    aspect-ratio: 6.2/1;
    overflow: hidden;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
}

.yt-channel-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Channel Info Section */
.yt-channel-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #0f0f0f;
}

.yt-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #272727;
    margin-top: -32px;
    border: 4px solid #0f0f0f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.yt-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-channel-details {
    flex: 1;
    min-width: 0;
}

.yt-channel-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.yt-verified {
    flex-shrink: 0;
}

.yt-channel-handle {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 4px;
}

.yt-channel-bio {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.4;
}

.yt-subscribe-btn {
    background: #fff;
    color: #0f0f0f;
    border: none;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-subscribe-btn:hover {
    background: #d9d9d9;
}

/* Channel Tabs */
.yt-channel-tabs {
    display: flex;
    gap: 0;
    padding: 0 20px;
    border-bottom: 1px solid #272727;
    background: #0f0f0f;
}

.yt-tab {
    background: none;
    border: none;
    color: #aaa;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.yt-tab:hover {
    color: #fff;
}

.yt-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Video Section */
.yt-video-section {
    padding: 16px 20px;
}

.yt-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.yt-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/* Video Cards */
.yt-video-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, outline 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.yt-video-card:hover {
    transform: scale(1.02);
}

/* Highlighted state - when service tab is clicked */
.yt-video-card.highlighted {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(64, 93, 230, 0.5),
        0 0 40px rgba(64, 93, 230, 0.3);
    transform: scale(1.03);
    z-index: 10;
}

/* Service-specific highlight colors */
.yt-video-card.highlighted[data-service="viral"] {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(64, 93, 230, 0.6),
        0 0 40px rgba(64, 93, 230, 0.3);
}

.yt-video-card.highlighted[data-service="content"] {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(225, 48, 108, 0.6),
        0 0 40px rgba(225, 48, 108, 0.3);
}

.yt-video-card.highlighted[data-service="community"] {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 107, 53, 0.3);
}

.yt-video-card.highlighted[data-service="ai"] {
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(0, 217, 255, 0.6),
        0 0 40px rgba(0, 217, 255, 0.3);
}

/* Pulse animation on highlight */
.yt-video-card.pulse-highlight {
    animation: videoCardPulse 1s ease-out;
}

@keyframes videoCardPulse {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.7),
            0 0 0 rgba(64, 93, 230, 0);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 0 0 6px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(64, 93, 230, 0.6),
            0 0 60px rgba(64, 93, 230, 0.3);
    }
    100% {
        transform: scale(1.03);
        box-shadow:
            0 0 0 3px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(64, 93, 230, 0.5),
            0 0 40px rgba(64, 93, 230, 0.3);
    }
}

/* Show play overlay on highlighted cards */
.yt-video-card.highlighted .yt-play-overlay {
    opacity: 1;
}

/* "Click to learn more" tooltip for highlighted cards */
.yt-video-card.highlighted::after {
    content: 'Click for details';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
    animation: tooltipFadeIn 0.3s ease-out;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.yt-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #272727;
}

.yt-thumbnail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.9;
}

.yt-thumbnail-bg.viral-bg {
    background: linear-gradient(135deg, #405de6 0%, #5b51d8 100%);
}

.yt-thumbnail-bg.content-bg {
    background: linear-gradient(135deg, #e1306c 0%, #c13584 100%);
}

.yt-thumbnail-bg.community-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.yt-thumbnail-bg.ai-bg {
    background: linear-gradient(135deg, #00d9ff 0%, #0099ff 100%);
}

.yt-thumbnail-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.yt-thumbnail-icon svg {
    width: 28px;
    height: 28px;
}

.yt-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
    z-index: 3;
}

.yt-new-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #ff0000;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
}

.yt-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 4;
}

.yt-play-overlay svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

/* Video Info */
.yt-video-info {
    padding: 8px 0;
}

.yt-video-title {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-video-meta {
    font-size: 10px;
    color: #aaa;
}

/* Responsive for YouTube layout */
@media (max-width: 900px) {
    .yt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yt-profile-pic {
        width: 60px;
        height: 60px;
        margin-top: -24px;
    }

    .yt-channel-name {
        font-size: 16px;
    }

    .yt-search-bar {
        display: none;
    }
}

@media (max-width: 600px) {
    .yt-video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .yt-channel-info {
        padding: 12px 16px;
    }

    .yt-video-section {
        padding: 12px 16px;
    }
}

/* ============================================================================
   YouTube Watch Page Styles
   ============================================================================ */

/* Watch Wrapper - Initially Hidden */
.yt-watch-wrapper {
    position: absolute;
    inset: 0;
    background: #0f0f0f;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
}

.yt-watch-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* Channel Wrapper Transition */
.yt-channel-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.yt-channel-wrapper.hidden {
    opacity: 0;
    transform: translateX(-20%);
    pointer-events: none;
}

/* Watch Header */
.yt-watch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #0f0f0f;
    border-bottom: 1px solid #272727;
    position: sticky;
    top: 0;
    z-index: 100;
}

.yt-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 18px;
    transition: background 0.2s ease;
}

.yt-back-btn:hover {
    background: #272727;
}

.yt-back-btn svg {
    width: 16px;
    height: 16px;
}

.yt-watch-logo {
    opacity: 0.8;
}

/* Watch Content Layout */
.yt-watch-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 16px;
    padding: 12px;
    height: calc(100% - 45px);
    overflow-y: auto;
}

.yt-watch-content::-webkit-scrollbar {
    width: 8px;
}

.yt-watch-content::-webkit-scrollbar-track {
    background: #0f0f0f;
}

.yt-watch-content::-webkit-scrollbar-thumb {
    background: #3f3f3f;
    border-radius: 4px;
}

/* Main Video Area */
.yt-watch-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Video Player */
.yt-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.yt-player-bg {
    position: absolute;
    inset: 0;
}

.yt-player-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    z-index: 2;
}

.yt-player-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.yt-player-overlay.playing {
    background: rgba(0, 0, 0, 0);
}

.yt-player-overlay.playing .yt-play-btn-large {
    opacity: 0;
    transform: scale(0.5);
}

.yt-play-btn-large {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.yt-play-btn-large svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.yt-video-player:hover .yt-play-btn-large {
    background: rgba(255, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Progress Bar */
.yt-player-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.yt-progress-bar-fill {
    height: 100%;
    background: #ff0000;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.yt-progress-bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.yt-video-player:hover .yt-progress-bar-fill::after {
    opacity: 1;
}

.yt-player-time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 10;
}

/* Video Details */
.yt-video-details {
    background: #0f0f0f;
}

.yt-watch-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.yt-watch-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #aaa;
    margin-bottom: 12px;
}

.yt-view-count {
    font-weight: 500;
}

/* Action Buttons */
.yt-action-buttons {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.yt-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #272727;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-action-btn:hover {
    background: #3f3f3f;
}

.yt-action-btn.liked {
    background: rgba(255, 255, 255, 0.1);
    color: #3ea6ff;
}

.yt-action-btn.liked svg {
    fill: #3ea6ff;
    stroke: #3ea6ff;
}

.yt-action-btn svg {
    width: 16px;
    height: 16px;
}

/* Channel Info in Watch Page */
.yt-watch-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #272727;
    border-bottom: 1px solid #272727;
    margin-bottom: 12px;
}

.yt-watch-channel-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.yt-watch-channel-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-watch-channel-info {
    flex: 1;
    min-width: 0;
}

.yt-watch-channel-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.yt-watch-channel-subs {
    font-size: 10px;
    color: #aaa;
}

.yt-subscribe-btn-watch {
    background: #fff;
    color: #0f0f0f;
    border: none;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.yt-subscribe-btn-watch:hover {
    background: #d9d9d9;
}

.yt-subscribe-btn-watch.subscribed {
    background: #272727;
    color: #fff;
}

/* Description */
.yt-description {
    background: #272727;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
}

.yt-description-content {
    font-size: 11px;
    color: #fff;
    line-height: 1.6;
    max-height: 60px;
    overflow: hidden;
    white-space: pre-line;
    transition: max-height 0.3s ease;
}

.yt-description-content.expanded {
    max-height: none;
}

.yt-description-content strong {
    color: #fff;
}

.yt-show-more {
    background: none;
    border: none;
    color: #aaa;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 6px;
    padding: 0;
}

.yt-show-more:hover {
    color: #fff;
}

/* Comments Section */
.yt-comments-section {
    margin-top: 8px;
}

.yt-comments-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.yt-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yt-comment {
    display: flex;
    gap: 10px;
}

.yt-comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #405de6 0%, #833ab4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.yt-comment-content {
    flex: 1;
    min-width: 0;
}

.yt-comment-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
    flex-wrap: wrap;
}

.yt-comment-author {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.yt-comment-role {
    font-size: 9px;
    color: #aaa;
    background: #272727;
    padding: 2px 6px;
    border-radius: 4px;
}

.yt-comment-text {
    font-size: 11px;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 6px 0;
}

.yt-comment-actions {
    display: flex;
    gap: 12px;
}

.yt-comment-like,
.yt-comment-reply {
    background: none;
    border: none;
    color: #aaa;
    font-size: 10px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.yt-comment-like:hover,
.yt-comment-reply:hover {
    color: #fff;
}

/* Related Videos Sidebar */
.yt-watch-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yt-sidebar-title {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.yt-related-videos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yt-related-video {
    display: flex;
    gap: 8px;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.yt-related-video:hover {
    background: #272727;
}

.yt-related-thumbnail {
    position: relative;
    width: 80px;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.yt-related-duration {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 500;
}

.yt-related-info {
    flex: 1;
    min-width: 0;
}

.yt-related-title {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-related-meta {
    font-size: 9px;
    color: #aaa;
}

/* Watch Page Responsive */
@media (max-width: 800px) {
    .yt-watch-content {
        grid-template-columns: 1fr;
    }

    .yt-watch-sidebar {
        display: none;
    }
}

@media (max-width: 600px) {
    .yt-watch-content {
        padding: 8px;
        gap: 10px;
    }

    .yt-watch-title {
        font-size: 13px;
    }

    .yt-action-buttons {
        gap: 4px;
    }

    .yt-action-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    .yt-action-btn span {
        display: none;
    }

    .yt-play-btn-large {
        width: 50px;
        height: 50px;
    }

    .yt-play-btn-large svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================================================
   Hover Preview Tooltips for Service Tabs
   ============================================================================ */

.service-tab {
    position: relative;
}

.service-preview-tooltip {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: var(--space-5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
    border: 1px solid var(--gray-200);
}

.service-preview-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: white;
}

.service-tab:hover .service-preview-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--gray-200);
}

.preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-icon.viral { background: linear-gradient(135deg, #405de6, #5b51d8); }
.preview-icon.content { background: linear-gradient(135deg, #e1306c, #c13584); }
.preview-icon.community { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.preview-icon.ai { background: linear-gradient(135deg, #00d9ff, #0099ff); }

.preview-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.preview-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.preview-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4) 0;
}

.preview-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 0.8125rem;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.preview-benefits li:last-child {
    margin-bottom: 0;
}

.preview-benefits li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
}

.preview-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-3);
    border-top: 1px solid var(--gray-100);
}

.preview-cta-text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.preview-cta-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.preview-cta-link:hover {
    text-decoration: underline;
}

/* Hide tooltip on mobile */
@media (max-width: 768px) {
    .service-preview-tooltip {
        display: none;
    }
}

/* ============================================================================
   Expandable Inline Details Panel
   ============================================================================ */

.service-expand-panel {
    display: none;
    width: 100%;
    background: white;
    border-radius: 20px;
    margin-top: var(--space-8);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: expandPanelIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-expand-panel.active {
    display: block;
}

@keyframes expandPanelIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.expand-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.expand-panel-left {
    padding: var(--space-10);
    border-right: 1px solid var(--gray-200);
}

.expand-panel-right {
    padding: var(--space-10);
    background: var(--gray-50);
}

.expand-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.expand-panel-title {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.expand-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-panel-icon.viral { background: linear-gradient(135deg, #405de6, #5b51d8); }
.expand-panel-icon.content { background: linear-gradient(135deg, #e1306c, #c13584); }
.expand-panel-icon.community { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.expand-panel-icon.ai { background: linear-gradient(135deg, #00d9ff, #0099ff); }

.expand-panel-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.expand-panel-title h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
}

.expand-panel-title .expand-category {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.expand-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.expand-close-btn:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.expand-close-btn svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.expand-description {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.expand-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expand-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.expand-features li:last-child {
    border-bottom: none;
}

.expand-features li .feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.expand-features li .feature-text {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.expand-features li .feature-text strong {
    color: var(--color-primary);
}

/* Right Panel - Stats & CTA */
.expand-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.expand-stat {
    background: white;
    border-radius: 12px;
    padding: var(--space-5);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.expand-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.expand-stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.expand-testimonial {
    background: white;
    border-radius: 12px;
    padding: var(--space-5);
    border-left: 4px solid var(--color-accent);
    margin-bottom: var(--space-6);
}

.expand-testimonial blockquote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0 0 var(--space-3) 0;
}

.expand-testimonial-author {
    font-size: 0.8125rem;
}

.expand-testimonial-author strong {
    color: var(--color-primary);
}

.expand-testimonial-author span {
    color: var(--gray-500);
}

.expand-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.expand-cta-buttons .btn {
    text-align: center;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.expand-cta-buttons .btn-primary {
    background: var(--color-primary);
    color: white;
}

.expand-cta-buttons .btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.expand-cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.expand-cta-buttons .btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Mobile Responsive for Expand Panel */
@media (max-width: 900px) {
    .expand-panel-content {
        grid-template-columns: 1fr;
    }

    .expand-panel-left {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .expand-panel-left,
    .expand-panel-right {
        padding: var(--space-6);
    }
}

@media (max-width: 640px) {
    .expand-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .expand-close-btn {
        position: absolute;
        top: var(--space-4);
        right: var(--space-4);
    }

    .service-expand-panel {
        position: relative;
    }

    .expand-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   View Full Details Button in Video Cards
   ============================================================================ */

.yt-video-card .view-details-btn {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 20;
    white-space: nowrap;
}

.yt-video-card:hover .view-details-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.view-details-btn:hover {
    background: var(--color-primary);
    color: white;
}

/* ============================================================================
   Explore Services Section - Direct Links to Service Pages
   ============================================================================ */

.explore-services {
    padding: var(--space-20) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.explore-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.explore-header h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.explore-header p {
    font-size: var(--text-lg);
    color: var(--gray-600);
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}

.explore-card {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6);
    background: white;
    border-radius: 20px;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: all 0.3s ease;
}

.explore-card.viral-explore::before {
    background: linear-gradient(180deg, #405de6, #5b51d8);
}

.explore-card.content-explore::before {
    background: linear-gradient(180deg, #e1306c, #c13584);
}

.explore-card.community-explore::before {
    background: linear-gradient(180deg, #ff6b35, #f7931e);
}

.explore-card.ai-explore::before {
    background: linear-gradient(180deg, #00d9ff, #0099ff);
}

.explore-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.explore-card:hover::before {
    width: 8px;
}

.explore-card.viral-explore:hover {
    border-color: #405de6;
}

.explore-card.content-explore:hover {
    border-color: #e1306c;
}

.explore-card.community-explore:hover {
    border-color: #ff6b35;
}

.explore-card.ai-explore:hover {
    border-color: #00d9ff;
}

.explore-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.viral-explore .explore-icon {
    background: linear-gradient(135deg, #405de6, #5b51d8);
}

.content-explore .explore-icon {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.community-explore .explore-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.ai-explore .explore-icon {
    background: linear-gradient(135deg, #00d9ff, #0099ff);
}

.explore-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.explore-content {
    flex: 1;
    min-width: 0;
}

.explore-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
    background: var(--gray-100);
    color: var(--gray-600);
}

.explore-tag.new-tag {
    background: #ef4444;
    color: white;
}

.explore-content h3 {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.explore-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.explore-stats {
    display: flex;
    gap: var(--space-4);
}

.explore-stats span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 4px 10px;
    border-radius: 6px;
}

.explore-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.explore-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.explore-card:hover .explore-arrow {
    background: var(--color-primary);
}

.explore-card:hover .explore-arrow svg {
    color: white;
    transform: translateX(3px);
}

/* Responsive for Explore Section */
@media (max-width: 900px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-card {
        padding: var(--space-5);
    }
}

@media (max-width: 640px) {
    .explore-header h2 {
        font-size: var(--text-3xl);
    }

    .explore-icon {
        width: 50px;
        height: 50px;
    }

    .explore-icon svg {
        width: 24px;
        height: 24px;
    }

    .explore-content h3 {
        font-size: var(--text-lg);
    }

    .explore-arrow {
        width: 36px;
        height: 36px;
    }

    .explore-stats {
        flex-wrap: wrap;
        gap: var(--space-2);
    }
}

/* ============================================================================
   YouTube Light-Themed Membership Section
   ============================================================================ */

.yt-membership-section {
    background: #fff;
    padding: 80px 0;
}

.yt-membership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Membership Header */
.yt-membership-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.yt-membership-icon {
    width: 56px;
    height: 56px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-membership-title-group {
    flex: 1;
    min-width: 200px;
}

.yt-membership-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
}

.yt-membership-subtitle {
    font-size: 14px;
    color: #606060;
    margin: 4px 0 0 0;
}

.yt-membership-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-member-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f2f2f2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #606060;
}

/* Membership Grid */
.yt-membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    align-items: stretch;
}

/* Tier Card */
.yt-tier-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.yt-tier-card:hover {
    border-color: #c4c4c4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.yt-tier-card.featured {
    border: 2px solid #ff0000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

.yt-tier-card.featured:hover {
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
}

/* Recommended Badge */
.yt-tier-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

/* Tier Badge (Stars) */
.yt-tier-badge {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.yt-tier-badge.starter {
    color: #9e9e9e;
}

.yt-tier-badge.growth {
    color: #ff0000;
}

.yt-tier-badge.scale {
    color: #ffc107;
}

/* Tier Header */
.yt-tier-header {
    margin-bottom: 16px;
}

.yt-tier-level {
    font-size: 12px;
    font-weight: 600;
    color: #606060;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.yt-tier-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f0f0f;
    margin: 4px 0 0 0;
}

/* Tier Price */
.yt-tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.yt-price-amount {
    font-size: 40px;
    font-weight: 700;
    color: #0f0f0f;
}

.yt-tier-card.featured .yt-price-amount {
    color: #ff0000;
}

.yt-price-period {
    font-size: 16px;
    color: #606060;
}

.yt-tier-desc {
    font-size: 14px;
    color: #606060;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Tier Perks */
.yt-tier-perks {
    margin-bottom: 20px;
    flex: 1;
}

.yt-perks-label {
    font-size: 12px;
    font-weight: 600;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.yt-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
}

.yt-perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #0f0f0f;
    line-height: 1.4;
}

.yt-perks-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.yt-perks-list li strong {
    color: #0f0f0f;
}

/* Tier Results */
.yt-tier-results {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.yt-results-label {
    font-size: 11px;
    font-weight: 600;
    color: #606060;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.yt-results-stats {
    display: flex;
    gap: 24px;
}

.yt-result-item {
    display: flex;
    flex-direction: column;
}

.yt-result-value {
    font-size: 24px;
    font-weight: 700;
    color: #065fd4;
}

.yt-tier-card.featured .yt-result-value {
    color: #ff0000;
}

.yt-result-label {
    font-size: 12px;
    color: #606060;
}

/* Tier Button */
.yt-tier-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: #f2f2f2;
    color: #0f0f0f;
    font-size: 15px;
    font-weight: 600;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.yt-tier-btn:hover {
    background: #e5e5e5;
}

.yt-tier-btn.primary {
    background: #ff0000;
    color: #fff;
}

.yt-tier-btn.primary:hover {
    background: #cc0000;
}

/* Spots Remaining */
.yt-tier-spots {
    margin-top: 16px;
    text-align: center;
}

.yt-spots-bar {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.yt-spots-fill {
    height: 100%;
    background: #ff0000;
    border-radius: 2px;
}

.yt-tier-spots span {
    font-size: 12px;
    color: #606060;
}

/* Membership Footer */
.yt-membership-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.yt-membership-footer p {
    font-size: 14px;
    color: #606060;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .yt-membership-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 32px;
    }

    .yt-membership-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    /* Keep cards in natural order on mobile (Starter, Growth, Scale) */
    .yt-tier-card.featured {
        order: 0;
    }
}

@media (max-width: 640px) {
    .yt-membership-title {
        font-size: 24px;
    }

    .yt-tier-name {
        font-size: 20px;
    }

    .yt-price-amount {
        font-size: 32px;
    }

    .yt-membership-footer {
        flex-direction: column;
        text-align: center;
    }

    .yt-membership-section {
        padding: 40px 0;
    }
}

/* ============================================================================
   YouTube-Style Comparison Section
   ============================================================================ */

.yt-comparison-section {
    background: #0f0f0f;
    padding: 60px 0;
}

.yt-comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Playlist Header */
.yt-playlist-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #272727;
}

.yt-playlist-icon {
    width: 48px;
    height: 48px;
    background: #272727;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
}

.yt-playlist-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.yt-playlist-meta {
    font-size: 14px;
    color: #aaa;
    margin: 4px 0 0 0;
}

/* Comparison Grid */
.yt-comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
}

/* Compare Column with Label */
.yt-compare-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Floating Label Above Cards */
.yt-compare-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #181818;
}

.yt-compare-label.bad {
    border-left: 4px solid #666;
}

.yt-compare-label.good {
    border-left: 4px solid #ff0000;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), #181818);
}

.yt-compare-label .yt-label-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.yt-compare-label.bad .yt-label-icon {
    background: #3d3d3d;
    color: #888;
}

.yt-compare-label.good .yt-label-icon {
    background: #ff0000;
    color: #fff;
}

.yt-compare-label h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.yt-compare-label.bad h3 {
    color: #888;
}

.yt-label-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yt-compare-label.bad .yt-label-tag {
    background: #3d3d3d;
    color: #888;
}

.yt-compare-label.good .yt-label-tag {
    background: #ff0000;
    color: #fff;
}

/* VS Divider */
.yt-compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

/* Compare Card */
.yt-compare-card {
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.yt-compare-card:hover {
    background: #212121;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.yt-compare-card.featured {
    border: 2px solid #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

/* Thumbnail */
.yt-compare-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.yt-compare-thumbnail.traditional {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.yt-compare-thumbnail.muse {
    background: linear-gradient(135deg, #330000, #1a0000);
}

.yt-compare-video,
.yt-compare-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.yt-compare-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.yt-compare-card:hover .yt-compare-overlay {
    opacity: 1;
}

.yt-compare-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 3px 6px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.yt-compare-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yt-compare-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.yt-compare-progress {
    height: 100%;
    background: #ff0000;
    transition: width 0.5s ease;
}

/* Card Info */
.yt-compare-info {
    display: flex;
    gap: 12px;
    padding: 12px;
}

.yt-compare-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-compare-avatar.bad {
    background: #3d3d3d;
    color: #888;
}

.yt-compare-avatar.good {
    background: #fff;
}

.yt-compare-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-compare-text {
    flex: 1;
    min-width: 0;
}

.yt-compare-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-compare-channel {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.yt-compare-stats {
    font-size: 12px;
    color: #717171;
    margin: 4px 0 0 0;
}

/* Actions */
.yt-compare-actions {
    padding: 0 12px 12px;
}

.yt-compare-action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-compare-action.dislike {
    background: #3d3d3d;
    color: #f44336;
}

.yt-compare-action.dislike:hover {
    background: #4a4a4a;
}

.yt-compare-action.like {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.yt-compare-action.like:hover {
    background: rgba(255, 0, 0, 0.25);
}

/* Description (Expanded Content) */
.yt-compare-description {
    padding: 16px;
    border-top: 1px solid #272727;
    background: #0f0f0f;
}

.yt-desc-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 13px;
    color: #aaa;
}

.yt-desc-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yt-desc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    background: #181818;
}

.yt-desc-item.highlight {
    background: #1a1a2e;
    border: 1px solid #333;
}

.yt-desc-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.yt-desc-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.yt-desc-text strong {
    color: #fff;
}

/* Like Bar */
.yt-like-bar {
    height: 4px;
    border-radius: 2px;
    margin-top: 16px;
    overflow: hidden;
}

.yt-like-bar.bad {
    background: #3d3d3d;
}

.yt-like-bar.bad .yt-like-fill {
    background: linear-gradient(90deg, #666, #888);
}

.yt-like-bar.good {
    background: #3d3d3d;
}

.yt-like-bar.good .yt-like-fill {
    background: linear-gradient(90deg, #ff0000, #ff4444);
}

.yt-like-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease;
}

.yt-like-ratio {
    display: block;
    font-size: 12px;
    color: #717171;
    margin-top: 8px;
}

/* Subscribe CTA */
.yt-comparison-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding: 24px;
    background: #181818;
    border-radius: 12px;
}

.yt-comparison-cta p {
    font-size: 16px;
    color: #aaa;
    margin: 0;
}

.yt-subscribe-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ff0000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yt-subscribe-cta:hover {
    background: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .yt-comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .yt-compare-vs {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin: 8px auto;
    }

    .yt-comparison-cta {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .yt-compare-label h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .yt-comparison-section {
        padding: 30px 0;
    }

    .yt-playlist-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .yt-playlist-title {
        font-size: 20px;
    }

    .yt-compare-title {
        font-size: 14px;
    }

    .yt-comparison-cta {
        margin-top: 20px;
        padding: 16px;
    }

    .yt-desc-item {
        flex-direction: column;
        gap: 8px;
    }

    .yt-compare-label {
        padding: 12px 16px;
    }

    .yt-compare-label h3 {
        font-size: 16px;
    }

    .yt-label-tag {
        display: none;
    }
}
