/* Full Screen Layout */
.turbo-fullscreen-templates {
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.turbo-fullscreen-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* AI Builder Notice */
.turbo-ai-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.ai-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ai-notice-icon .dashicons {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.ai-notice-text h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    color: white;
}

.ai-notice-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.ai-notice-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ai-builder-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.ai-builder-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.dismiss-notice {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Header */
.turbo-fullscreen-header {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.turbo-fullscreen-header h1 {
    margin: 0 0 30px 0;
    font-size: 36px;
    color: #333;
    font-weight: 600;
}

/* Search and Sort Container */
.turbo-search-sort-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.turbo-search-container {
    position: relative;
    flex: 1;
    max-width: 600px;
}

.turbo-sort-container {
    min-width: 150px;
}

.sort-dropdown {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.sort-dropdown:focus {
    border-color: #667eea;
}

.turbo-search-container input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.turbo-search-container input:focus {
    border-color: #667eea;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 20px;
}

/* Horizontal Navigation */
.turbo-horizontal-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

.horizontal-menu {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 5px !important;
    position: relative !important;
}

.horizontal-menu .menu-item {
    position: relative !important;
    display: inline-block !important;
}

.horizontal-menu .menu-item > a {
    display: block !important;
    padding: 12px 20px !important;
    color: #666 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.horizontal-menu .menu-item:hover > a,
.horizontal-menu .menu-item.active > a {
    background: #667eea !important;
    color: white !important;
}

.horizontal-menu .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    min-width: 200px !important;
    z-index: 10000 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.horizontal-menu .has-submenu:hover .submenu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(5px) !important;
}

.horizontal-menu .submenu-item {
    display: block !important;
}

.horizontal-menu .submenu-item a {
    display: block !important;
    padding: 10px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: background-color 0.2s ease !important;
    border-radius: 0 !important;
}

.horizontal-menu .submenu-item:hover a {
    background: #f8f9fa !important;
    color: #667eea !important;
}

/* Template Type Tabs */
.turbo-template-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-btn:hover {
    color: #667eea;
}

/* Content Area */
.turbo-fullscreen-content {
    flex: 1;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.turbo-template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Template Grid Updates */
.turbo-template-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.template-pack-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.template-pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pack-preview {
    position: relative;
    overflow: hidden;
    height: 240px;
}



.gallery-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    z-index: 10;
}

.gallery-count {
    font-weight: 500;
}

.view-gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Gallery Modal */
.gallery-modal-content {
    max-width: 1400px;
    width: 98%;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-modal-header {
    padding: 30px 40px 20px 40px;
    border-bottom: 1px solid #eee;
}

.gallery-modal-header h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    color: #333;
    font-weight: 600;
}

.gallery-modal-tabs {
    display: flex;
    gap: 5px;
}

.gallery-tab {
    padding: 12px 24px;
    background: #f8f9fa;
    border: none;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.gallery-tab.active {
    background: white;
    color: #333;
    border-bottom: 2px solid #667eea;
}

.gallery-modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    flex: 1;
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-item h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.pack-description-full {
    max-width: 800px;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.pack-description-full h3 {
    color: #333;
    margin: 30px 0 15px 0;
    font-size: 20px;
}

.pack-description-full ul {
    margin: 15px 0;
    padding-left: 25px;
}

.pack-description-full li {
    margin-bottom: 8px;
}

.related-templates-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-templates-section h3 {
    margin: 0 0 25px 0;
    font-size: 22px;
    color: #333;
}

.related-templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-template-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.related-template-card:hover {
    transform: translateY(-3px);
}

.related-template-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-template-info {
    padding: 15px;
}

.related-template-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.related-template-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.pack-preview img,
.template-preview img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.template-preview {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.template-card:hover .template-preview img {
    transform: scale(1.05);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-info {
    padding: 20px;
}

.template-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.template-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    flex-wrap: wrap;
    gap: 5px;
}

.import-btn,
.preview-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.upgrade-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.preview-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.import-btn:hover,
.preview-btn:hover {
    background: #5a6fd8;
    color: white;
}

.upgrade-btn:hover {
    background: #e55a2b;
    color: white;
}

.preview-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.template-pack-card:hover .pack-preview img {
    transform: scale(1.05);
}

.pro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pages-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.template-pack-card:hover .template-overlay {
    opacity: 1;
}

.import-pack-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.import-pack-btn:hover {
    background: #5a6fd8;
    color: white;
}

.pack-info {
    padding: 20px;
}

.pack-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.pack-description {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.pack-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

/* Footer */
.turbo-fullscreen-footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-cta p {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.premium-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    padding: 15px 35px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: transform 0.2s ease !important;
}

.premium-cta:hover {
    transform: translateY(-2px) !important;
    color: white !important;
}

/* Loading State */
.turbo-loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.turbo-no-templates {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Modal Styles */
.turbo-modal {
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.turbo-modal-content {
    background-color: #fff;
    padding: 0;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.turbo-wizard {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.turbo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    z-index: 10;
}

.turbo-modal-close:hover {
    color: #333;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    flex: 1;
    overflow-y: auto;
}

.wizard-step.active {
    display: flex;
    flex-direction: column;
}

.wizard-layout {
    display: flex;
    flex: 1;
    min-height: 500px;
}

.wizard-sidebar {
    width: 300px;
    background: #f8f9fa;
    padding: 30px 20px;
    border-right: 1px solid #eee;
}

.wizard-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* Template Preview */
.template-preview-mini img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.template-preview-mini h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* Color Palette */
.color-palette {
    margin-top: 30px;
}

.color-palette h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.color-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.color-option.active {
    border-color: #667eea;
}

.color-option input {
    margin-right: 10px;
}

.color-preview {
    display: flex;
    gap: 4px;
}

.color-preview span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Font Palette */
.font-palette {
    margin-top: 30px;
}

.font-palette h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.font-weight-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
}

.weight-tab {
    padding: 8px 16px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.weight-tab:hover {
    border-color: #234cff;
}

.weight-tab.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.font-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.font-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.font-option.active {
    border-color: #667eea;
}

.font-option input {
    margin-right: 10px;
}

.font-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.font-preview span {
    font-size: 18px;
    color: #333;
    line-height: 1;
}

/* Features Grid */
.wizard-content h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.wizard-content > p {
    margin: 0 0 30px 0;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #667eea;
}

.feature-item input {
    margin-right: 15px;
    margin-top: 2px;
}

.feature-item input:checked + .feature-content {
    opacity: 1;
}

.feature-content {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.feature-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.feature-content p {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.feature-content small {
    color: #999;
    font-size: 12px;
}

/* Plugin List */
.plugin-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
}

.plugin-list h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.plugin-list ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.plugin-list li {
    margin-bottom: 5px;
    font-size: 14px;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

/* Wizard Footer */
.wizard-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.wizard-footer .button {
    margin: 0 5px;
}

/* Progress Steps */
.import-progress-container {
    padding: 40px 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.import-progress-container h2 {
    margin: 0 0 40px 0;
    font-size: 28px;
    color: #333;
    font-weight: 500;
}

.progress-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-loader {
    width: 100%;
    height: 100%;
    border: 4px solid #f0f0f0;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.loader-spinner {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.progress-details {
    text-align: left;
}

.current-step {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-number {
    color: #667eea;
}

.current-action {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.progress-log {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.log-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #999;
    transition: color 0.3s ease;
}

.log-item.active {
    color: #333;
}

.log-item.completed {
    color: #28a745;
}

.log-icon {
    width: 20px;
    margin-right: 12px;
    font-weight: bold;
}

.log-item.completed .log-icon {
    color: #28a745;
}

.log-item.active .log-icon {
    color: #667eea;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.log-text {
    font-size: 14px;
}

/* Success Screen */
.success-container {
    padding: 40px 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-container h2 {
    margin: 0 0 10px 0;
    font-size: 36px;
    color: #333;
    font-weight: 600;
}

.success-container h3 {
    margin: 0 0 30px 0;
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

#build-time {
    color: #667eea;
    font-weight: 600;
}

.success-progress {
    margin: 30px 0;
}

.success-circle {
    width: 100px;
    height: 100px;
    border: 4px solid #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #f8fff9;
}

.success-percentage {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.social-share {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #1da1f2;
}

.social-share p {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    font-style: italic;
}

.tweet-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1da1f2;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tweet-button:hover {
    background: #1991db;
    color: white;
}

.twitter-icon {
    font-size: 16px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.success-actions .button {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-actions .button-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #ddd;
}

.success-actions .button-secondary:hover {
    background: #e9ecef;
    color: #333;
}

.success-actions .button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.success-actions .button-primary:hover {
    transform: translateY(-2px);
    color: white;
}

/* Requirements Screen */
.requirements-container {
    padding: 40px 30px;
    text-align: center;
}

.requirements-container h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
}

.requirements-container h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #667eea;
    font-weight: 500;
}

.requirements-container > p {
    margin: 0 0 40px 0;
    color: #666;
    font-size: 16px;
}

.requirements-list {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.requirement-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
}

.requirement-icon {
    font-size: 24px;
    margin-right: 15px;
}

.requirement-content {
    flex: 1;
}

.requirement-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.requirement-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.requirement-status {
    margin-left: 15px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.warning {
    background: #fff3cd;
    color: #856404;
}

.requirements-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* User Info Screen */
.user-info-container {
    padding: 40px 30px;
    max-width: 500px;
    margin: 0 auto;
}

.user-info-container h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
    text-align: center;
}

.user-info-container h3 {
    margin: 0 0 30px 0;
    font-size: 20px;
    color: #667eea;
    font-weight: 500;
    text-align: center;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #667eea;
}

.advanced-options {
    margin: 30px 0;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.toggle-advanced {
    background: none;
    border: none;
    color: #667eea;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
}

.advanced-content {
    margin-top: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.warning-text {
    color: #856404;
    background: #fff3cd;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
}

.confirmation {
    margin: 30px 0;
    padding: 20px;
    background: #e8f4fd;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.user-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.terms-text {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .turbo-wizard {
        width: 98%;
        max-height: 95vh;
    }
    
    .wizard-layout {
        flex-direction: column;
    }
    
    .wizard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-details {
        text-align: center;
    }
    
    .wizard-footer,
    .requirements-footer,
    .user-info-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .button {
        width: 100%;
        max-width: 250px;
    }
    
    .requirements-container,
    .user-info-container {
        padding: 20px 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .turbo-fullscreen-header h1 {
        font-size: 28px;
    }
    
    .turbo-search-sort-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .turbo-sort-container {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .horizontal-menu {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .horizontal-menu .menu-item > a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .turbo-template-packs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .turbo-fullscreen-content {
        padding: 20px 15px;
    }
}