/* MickFX Base Page Styles */

:root {
    --mickfx-base-primary: #6441a5;
    --mickfx-base-secondary: #9146ff;
    --mickfx-base-accent: #ff6b6b;
    --mickfx-base-dark: #1a1a2e;
    --mickfx-base-light: #f8f9fa;
    --mickfx-base-success: #28a745;
    --mickfx-base-yellow: #fff000;
}

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

.mickfx-base-container h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mickfx-base-container h2 {
    font-size: 2rem;
    margin: 0 0 20px !important;
}

.mickfx-base-container h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--mickfx-base-secondary);
    border-radius: 3px;
}

.mickfx-base-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mickfx-base-container p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mickfx-base-tagline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.mickfx-base-install-section, .mickfx-base-features-section, .mickfx-base-adaptive-section {
    background-color: rgba(255,255,255,0.05);
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.mickfx-base-install-section h2, .mickfx-base-install-section > * {
    text-align: center;
}

.mickfx-base-install-description {
    margin-bottom: 30px;
    text-align: center;
}

.mickfx-base-install-hero-section {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mickfx-base-install-hero-content {
    flex: 1;
}

.mickfx-base-install-hero-image {
    flex: 1;
}

.mickfx-base-steps-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mickfx-base-step {
    display: flex;
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 20px 20px 10px;
    border-left: 4px solid var(--mickfx-base-secondary);
    position: relative;
    transition: transform 0.3s ease;
    text-align: left;
}

.mickfx-base-step-image {
    margin: 0 !important;
}

.mickfx-base-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mickfx-base-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.mickfx-base-step-number {
    background-color: var(--mickfx-base-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.mickfx-base-step-content {
    flex-grow: 1;
    padding: 0 10px;
}

.mickfx-base-step-title {
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    color: var(--mickfx-base-yellow);
}

.mickfx-base-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 15px 0;
}

.mickfx-base-feature-card {
    flex: 1;
    min-width: 300px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px 20px 0;
    border-top: 3px solid #9b51e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mickfx-base-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mickfx-base-feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--mickfx-base-yellow);
}

.mickfx-base-feature-content {
    flex-grow: 1;
}

.mickfx-base-feature-image {
    margin-top: auto;
    text-align: center;
}

.mickfx-base-feature-full {
    width: 100%;
    margin: 30px 0;
}

.mickfx-base-cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--mickfx-base-accent), var(--mickfx-base-secondary));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mickfx-base-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(to right, var(--mickfx-base-secondary), var(--mickfx-base-accent));
}

.mickfx-base-cta-container {
    text-align: center;
    margin: 40px 0;
}

.mickfx-base-scenes-section {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.mickfx-base-scene {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.mickfx-base-scene img {
    width: 20px;
    height: auto;
    margin-right: 10px;
    transform: translateY(7px);
}

/* Image styles */
.mickfx-base-sammi-image-container {
    margin: 10px auto;
    position: relative;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    background-color: var(--mickfx-base-dark);
    display: inline-block;
    max-width: 100%;
    width: auto;
}

.mickfx-base-sammi-image-container--adaptive {
    margin: 8px auto;
    max-width: 400px;
}

.mickfx-base-sammi-guide-image {
    height: auto;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.mickfx-base-sammi-image-container:hover .mickfx-base-sammi-guide-image {
    transform: scale(1.02);
}

.mickfx-base-sammi-image-caption {
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    width: 100%;
}

.mickfx-base-image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.mickfx-base-hero-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.mickfx-base-hero-content {
    flex: 1;
    min-width: 300px;
}

.mickfx-base-hero-image {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.mickfx-base-drag-drop-image {
    margin: 0 auto;
    max-width: 88%;
}

.mickfx-base-flex-row, .mickfx-base-flex-row-gap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.mickfx-base-flex-col-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mickfx-base-flex-col-content p {
    margin-bottom: 0;
    width: 100%;
}

.mickfx-base-flex-col-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.mickfx-base-mode-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.mickfx-base-mode-column {
    flex: 1;
    min-width: 300px;
}

.mickfx-base-mode-title {
    font-size: 1.3rem;
    padding: 10px 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    margin-bottom: 20px;
    color: var(--mickfx-base-yellow);
    text-align: center;
}

.mickfx-base-mode-content {
    padding: 0 10px;
}

.mickfx-base-scene-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.mickfx-base-scene-images .mickfx-base-sammi-image-container {
    flex: 0 0 auto;
    max-width: 45%;
    width: auto;
    height: auto;
    align-self: center;
    margin: 5px;
}

/* New styles for the adaptive section */
.mickfx-base-adaptive-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 15px 0 0;
}

.mickfx-base-adaptive-feature {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px 30px;
    border-left: 5px solid #9b51e0;
}

.mickfx-base-base-title {
    font-size: 1.5rem;
    margin-bottom: 15px !important;
    color: var(--mickfx-base-yellow);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.mickfx-base-adaptive-description {
    margin-bottom: 25px;
}

.mickfx-base-comparison-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mickfx-base-comparison-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.mickfx-base-comparison-column {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mickfx-base-comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
}

.mickfx-base-comparison-arrow.horizontal {
    flex-direction: row;
    justify-content: center;
    align-self: center;
}

.mickfx-base-comparison-arrow img {
    width: 120px;
    height: auto;
}

.mickfx-base-comparison-label {
    font-weight: bold;
    color: var(--mickfx-base-yellow);
    text-align: center;
    font-size: 20px;
}

.mickfx-base-adaptive-image-caption {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.mickfx-base-adaptive-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 10px;
    background: var(--mickfx-base-accent);
    color: white;
}

.mickfx-base-sammi-notice {
    background: linear-gradient(135deg, rgb(35,2,47) 0%, rgb(63,20,98) 99%);
    border-radius: 12px;
    border: 1px solid var(--mickfx-base-secondary);
    padding: 20px;
    margin: 15px auto 20px;
    text-align: center;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mickfx-base-sammi-notice:hover {
    box-shadow: 0 5px 25px rgba(255, 240, 0, 0.3);
}

.mickfx-base-sammi-notice:hover p,
.mickfx-base-sammi-notice:hover a {
    color: var(--mickfx-base-yellow) !important;
}

/* Wrap the notice content in an anchor tag */
.mickfx-base-sammi-notice a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* New styles for the name fixer section boxes */
.mickfx-base-name-fixer-box {
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 15px 15px 0;
    margin-bottom: 20px;
}

.mickfx-base-name-fixer-title {
    font-weight: bold;
    color: var(--mickfx-base-yellow);
    margin-bottom: 5px;
    font-size: 20px;
}

/* Slice images container */
.mickfx-base-slice-images-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.mickfx-base-slice-image {
    flex: 0 0 auto;
    max-width: 100%;
}

/* Improved layout for the adaptive section at the bottom */
.mickfx-base-adaptive-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.mickfx-base-adaptive-card {
    flex: 1;
    min-width: 300px;
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 20px 20px 0;
    border-top: 3px solid #9b51e0;
    transition: all 0.3s ease;
}

.mickfx-base-adaptive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.mickfx-base-adaptive-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px !important;
    color: var(--mickfx-base-yellow);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.mickfx-base-adaptive-warning {
    background-color: rgba(255, 240, 0, 0.1);
    border-left: 4px solid var(--mickfx-base-yellow);
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 0 6px 6px 0;
    text-align: left;
}

/* New styles for the title and download button container */
.mickfx-base-install-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mickfx-base-install-header h2 {
    margin-bottom: 10px !important;
    margin-right: 15px;
}

/* Metallic download button */
.mickfx-base-download-button {
    display: inline-block;
    position: relative;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    color: var(--mickfx-base-yellow);
    font-size: 1.1rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4a00e0, #9b51e0, #4a00e0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mickfx-base-download-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    transform: skewX(-30deg);
    animation: mickfx-base-sheen 3s infinite;
}

.mickfx-base-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #4a00e0, #9b51e0, #4a00e0);
}

.mickfx-base-download-button span {
    position: relative;
    z-index: 1;
}

/* Name Fixer image fix */
.mickfx-base-name-fixer-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

/* Mobile separator for customization examples */
.mickfx-base-mobile-separator {
    display: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 5px 0 10px;
    width: 100%;
}

/* Closing message */
.mickfx-base-closing-message {
    background: #1e0423;
    padding: 24px 32px;
    border-radius: 8px;
    margin: 30px auto 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(136, 0, 255, 0.25), 0 0 60px rgba(136, 0, 255, 0.15);
    border: 2px solid rgba(136, 0, 255, 0.5);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mickfx-base-closing-message:hover {
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.4), 0 0 80px rgba(255, 200, 0, 0.25);
    border: 2px solid rgba(255, 200, 0, 0.7);
}

.mickfx-base-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.mickfx-base-firework {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.mickfx-base-closing-headline {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px !important;
    text-shadow: 0 0 15px rgba(136, 0, 255, 0.5);
    letter-spacing: 1px;
    z-index: 1;
}

.mickfx-base-closing-text {
    font-size: 1.5rem;
    font-family: 'Tomorrow';
    font-weight: 600;
    color: white;
    margin: 0 0 15px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
    z-index: 1;
    margin: 0;
}

.mickfx-base-closing-cta {
    font-size: 2.0rem;
    color: #ffee00;
    font-weight: 600;
    margin: 10px 0 0;
    text-shadow: 0 0 15px #9b51e0;
    position: relative;
    z-index: 1;
    margin: 0;
}

.mickfx-base-closing-message:hover .mickfx-base-closing-cta {
    color: #ffee00;
    text-shadow: 0 0 15px rgba(255, 240, 150, 0.9);
}

.mickfx-base-closing-icon {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 12px rgba(136, 0, 255, 0.8));
    margin-bottom: 10px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.mickfx-base-closing-message:hover .mickfx-base-closing-icon {
    filter: drop-shadow(0 0 25px rgba(255, 240, 150, 0.9));
    transform: scale(1.05);
}

/* Animation for the metallic sheen */
@keyframes mickfx-base-sheen {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .mickfx-base-container h1 {
        font-size: 2.5rem;
    }
    
    .mickfx-base-step {
        flex-direction: column;
    }
    
    .mickfx-base-step-number {
        margin-right: 5px;
    }
    
    .mickfx-base-hero-section, .mickfx-base-install-hero-section, .mickfx-base-flex-row, .mickfx-base-flex-row-gap {
        flex-direction: column;
    }
    
    .mickfx-base-hero-image, .mickfx-base-install-hero-image {
        order: -1;
    }
    
    .mickfx-base-feature-card {
        min-width: 100%;
    }
    
    .mickfx-base-mode-column {
        min-width: 100%;
    }
    
    .mickfx-base-scene-images {
        flex-direction: column;
    }
    
    .mickfx-base-scene-images .mickfx-base-sammi-image-container {
        max-width: 100%;
        margin: 0 0 8px;
    }
    
    /* Hide horizontal arrow on mobile */
    .mickfx-base-comparison-arrow.horizontal {
        display: none;
    }
    
    .mickfx-base-comparison-arrow.vertical-mobile {
        flex-direction: column;
        margin: 10px auto;
    }
    
    .mickfx-base-sammi-notice {
        width: 100%;
        padding: 15px;
    }
    
    .mickfx-base-slice-image {
        max-width: 100%;
    }
    
    .mickfx-base-adaptive-card {
        min-width: 100%;
    }

    .mickfx-base-install-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .mickfx-base-install-header h2 {
        margin-right: 0;
        text-align: left;
        align-self: flex-start;
    }

    .mickfx-base-download-button {
        margin-bottom: 15px;
        width: 100%;
    }

    .mickfx-base-closing-message {
        flex-direction: column;
        text-align: center;
    }
    
    /* Reduce left/right padding in sections on mobile */
    .mickfx-base-install-section, .mickfx-base-features-section, .mickfx-base-adaptive-section {
        padding: 15px 15px;
        margin-bottom: 20px;
    }
    
    /* Fix name fixer box width */
    .mickfx-base-name-fixer-box {
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure adaptive layout cards take full width */
    .mickfx-base-adaptive-layout {
        gap: 15px;
    }
    
    /* Mobile layout for adaptive interface section */
    .mickfx-base-adaptive-card-title {
        border-bottom: 0;
        padding-bottom: 0;
    }
    
    /* Show the mobile separator */
    .mickfx-base-mobile-separator {
        display: block;
    }
    
    /* Remove card styling on mobile for adaptive cards */
    .mickfx-base-adaptive-layout .mickfx-base-adaptive-card {
        background: transparent;
        border-top: none;
        padding: 0;
        box-shadow: none;
        transform: none !important;
    }
    
    .mickfx-base-adaptive-layout .mickfx-base-adaptive-card:hover {
        box-shadow: none;
    }
    
    /* Make the customization title more prominent on mobile */
    .mickfx-base-adaptive-card-title {
        font-size: 1.4rem;
        margin-bottom: 15px !important;
        color: var(--mickfx-base-yellow);
    }
    
    .mickfx-base-adaptive-feature .mickfx-base-base-title {
        padding-bottom: 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    /* Less margin below in mobile */
    .mickfx-base-install-hero-image .mickfx-base-sammi-image-container {
        margin-bottom: 0;
    }
    
    /* Less space between sections in name fixer */
    .mickfx-base-name-fixer-box {
        margin-bottom: 10px;
    }
    
    /* Name Fixer image at end - no margin in mobile */
    .mickfx-base-name-fixer-container .mickfx-base-sammi-image-container {
        margin-bottom: 0;
    }
    
    /* Fix spacing issues with adaptive features */
    .mickfx-base-adaptive-grid {
        gap: 20px;
    }
    
    /* Additional reduction for comparison images spacing */
    .mickfx-base-comparison-column .mickfx-base-sammi-image-container {
        margin: 5px auto;
    }
    
    .mickfx-base-install-hero-section {
        gap: 8px;
    }
    
    .mickfx-base-slice-images-container {
        gap: 0;
    }
    
    .mickfx-base-flex-row {
        gap: 0;
    }
    
    .mickfx-base-flex-row-gap {
        gap: 10px;
    }
    
    .mickfx-base-feature-row {
        gap: 10px;
    }
    
    .mickfx-base-steps-column {
        gap: 10px;
    }
    
    .mickfx-base-feature-full {
        margin: 15px 0;
    }
    
    .mickfx-base-namefix {
        margin-bottom: 0 !important;
    }
}