.generate-hero {
        padding: 0rem 0;
        min-height: calc(100vh - 60px);
        background: #000000;
    }

    /* Left Sidebar - Generator */
    .generator-sidebar {
        background: #1a1d23;
        border-radius: 20px;
        padding: 2rem;
        height: fit-content;
        position: sticky;
        top: 20px;
        border: 1px solid #2d3238;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .generator-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .generator-subtitle {
        color: #8b92a7;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .form-label {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-control,
    .form-select {
        background: #252a31;
        border: 1px solid #2d3238;
        color: #ffffff;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        background: #2d3238;
        border-color: #0d6efd;
        color: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }

    .form-control::placeholder {
        color: #6c757d;
    }

    textarea.form-control {
        resize: vertical;
    }

    .orientation-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .orientation-buttons .btn {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }

    .btn-outline-primary {
        color: #8b92a7;
        border-color: #2d3238;
    }

    .btn-outline-primary:hover,
    .btn-check:checked + .btn-outline-primary {
        background: #0d6efd;
        border-color: #0d6efd;
        color: white;
    }

    .advanced-section {
        padding-top: 1rem;
        border-top: 1px solid #2d3238;
    }

    .btn-link {
        color: #8b92a7;
        font-size: 0.9rem;
    }

    .btn-link:hover {
        color: #0d6efd;
    }

    .btn-primary {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
    }

    .cost-display {
        padding: 1rem;
        background: #252a31;
        border-radius: 10px;
        border: 1px solid #2d3238;
    }

    .cost-label {
        color: #c0c5d0;
        font-size: 1rem;
        font-weight: 500;
    }

    .cost-amount {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffd700;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cost-amount i {
        font-size: 1.3rem;
    }

    /* Right Side - Preview */
    .preview-section {
        background: #1a1d23;
        border-radius: 20px;
        padding: 2rem;
        min-height: 600px;
        border: 1px solid #2d3238;
    }

    .preview-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .preview-subtitle {
        color: #8b92a7;
        margin-bottom: 0;
    }

    /* Example Cards */
    .example-card {
        background: #252a31;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #2d3238;
        transition: all 0.3s ease;
        cursor: pointer;
        height: 100%;
    }

    .example-card:hover {
        transform: translateY(-5px);
        border-color: #0d6efd;
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
    }

    .example-video {
        position: relative;
        aspect-ratio: 16/9;
        background: #000;
        overflow: hidden;
    }

    .example-video-preview {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        background: #000;
    }

    .example-card:hover .example-video-preview {
        transform: scale(1.05);
    }

    .example-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .example-card:hover .example-play-btn {
        opacity: 1;
    }

    .video-overlay {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
    }

    .video-overlay .badge {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px);
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .example-info {
        padding: 1rem;
    }

    .example-prompt {
        color: #ffffff;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
        min-height: 2.5rem;
    }

    .example-meta {
        display: flex;
        gap: 1rem;
        font-size: 0.8rem;
        color: #8b92a7;
    }

    .example-meta span {
        display: flex;
        align-items: center;
    }

    /* Preview Player */
    .preview-player {
        background: #000;
        border-radius: 16px;
        overflow: hidden;
    }

    .preview-actions {
        display: flex;
        gap: 1rem;
    }

    .processing-state h4 {
        color: #ffffff;
    }

    .processing-text {
        color: #c0c5d0;
        font-size: 1rem;
    }

    .processing-time {
        color: #a8adb8;
        font-size: 0.9rem;
    }

    .video-info-card {
        background: #252a31;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid #2d3238;
    }

    .video-info-card h5 {
        color: #ffffff;
        font-weight: 600;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .info-item {
        padding: 0.75rem;
        background: #1a1d23;
        border-radius: 8px;
    }

    .info-item label {
        display: block;
        color: #8b92a7;
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-item p {
        color: #ffffff;
        margin: 0;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .btn-outline-secondary {
        background: transparent;
        border: 1px solid #2d3238;
        color: #8b92a7;
        border-radius: 10px;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
    }

    .btn-outline-secondary:hover {
        background: #252a31;
        border-color: #0d6efd;
        color: #ffffff;
    }

    /* Empty State */
    .empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 400px;
    }

    .empty-icon {
        width: 120px;
        height: 120px;
        background: #252a31;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
        .generator-sidebar {
            position: relative;
            top: 0;
            margin-bottom: 2rem;
        }

        .preview-section {
            min-height: auto;
        }
    }

    @media (max-width: 767.98px) {
        .generator-sidebar,
        .preview-section {
            padding: 1.5rem;
        }

        .generator-title {
            font-size: 1.5rem;
        }

        .orientation-buttons {
            grid-template-columns: 1fr;
        }
    }
    .registration-banner {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 12px;
        padding: 1rem 1.5rem;
        position: relative;
        animation: slideDown 0.4s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .banner-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: transparent;
        border: none;
        color: #8b92a7;
        font-size: 1.5rem;
        line-height: 1;
        padding: 0.25rem;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .banner-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .banner-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-right: 2rem;
    }

    .banner-icon {
        font-size: 2rem;
        color: #ffd700;
        flex-shrink: 0;
    }

    .banner-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .banner-text strong {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .banner-text span {
        color: #8b92a7;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .banner-link {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .banner-link:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    @media (max-width: 767.98px) {
        .registration-banner {
            padding: 1rem;
        }

        .banner-content {
            padding-right: 2.5rem;
        }

        .banner-icon {
            font-size: 1.5rem;
        }

        .banner-text strong {
            font-size: 0.95rem;
        }

        .banner-text span {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 575.98px) {
        .banner-icon {
            display: none;
        }

        .banner-content {
            padding-right: 2rem;
        }

        .banner-text strong {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 991.98px) {
        .registration-banner {
            padding: 1rem;
        }

        .banner-content {
            gap: 1rem;
        }

        .banner-icon {
            font-size: 1.75rem;
        }

        .banner-text strong {
            font-size: 0.95rem;
        }

        .banner-text span {
            font-size: 0.8rem;
        }
    }