// Modern Variables
$primary-color: #4a6cf7;
$secondary-color: #1e293b;
$border-color: #e2e8f0;
$white: #ffffff;
$light-bg: #f8fafc;
$lighter-bg: #f1f5f9;
$text-color: #475569;
$dark-text: #1e293b;
$box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
$input-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
$transition: all 0.2s ease-in-out;
$focus-shadow: 0 0 0 2px rgba($primary-color, 0.3);
$success-color: #10b981;
$danger-color: #ef4444;
$warning-color: #f59e0b;
$light-gray: #f1f5f9;
$medium-gray: #e2e8f0;
$dark-gray: #334155;
$border-radius: 6px;

// Breakpoints
$tablet: 1024px;
$small-tablet: 782px;
$mobile: 500px;

// Get Started Page Style start -------------------------------------------
// Get Started Page Styles
.wcps-admin-get-started {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    // Welcome Section with video player 
    .wcps-welcome-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 50px 40px;
        border-radius: 5px;
        margin: 30px 0;
        text-align: center;
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .welcome-icon {
            font-size: 60px;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        .welcome-title {
            color: white;
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .welcome-description {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Video Player Styles */
        .welcome-video-container {
            position: relative;
            max-width: 640px;
            margin: 30px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            }

            &:hover .video-overlay {
                opacity: 0;
            }

            &:hover .play-button {
                transform: scale(1.1);
            }
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            background: rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            overflow: hidden;

            iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
                border-radius: 15px;
            }
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
            border-radius: 15px;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);

            &:hover {
                background: white;
                transform: scale(1.1);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            }

            .play-icon {
                font-size: 24px;
                color: #667eea;
                margin-left: 3px;
                /* Slight offset for visual balance */
            }
        }

        /* Responsive video styles */
        @media (max-width: 768px) {
            .welcome-video-container {
                max-width: 100%;
                margin: 20px auto;
            }

            .play-button {
                width: 60px;
                height: 60px;

                .play-icon {
                    font-size: 20px;
                }
            }
        }

        .welcome-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .welcome-btn-primary {
            background: white;
            color: #667eea;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: inline-flex;
            align-items: center;
            gap: 8px;

            &:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                background: #f8f9fa;
            }
        }

        .welcome-btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 15px 30px;
            font-size: 16px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;

            &:hover {
                background: rgba(255, 255, 255, 0.25);
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateY(-2px);
            }
        }

        .btn-icon {
            font-size: 18px;
        }
    }

    /* Bounce animation for welcome icon */
    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }


    // Stats Grid
    .wcps-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin: 40px 0;
    }

    .stat-card {
        background: white;
        padding: 30px 25px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);

        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 30px;
            color: #667eea;

            &.stat-icon-success {
                color: #28a745;
            }

            &.stat-icon-warning {
                color: #ffc107;
            }

            &.stat-icon-danger {
                color: #dc3545;
            }
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #666;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
    }

    // Section Titles
    .section-title {
        color: #333;
        margin-bottom: 30px;
        font-size: 26px;
        font-weight: 700;
        border-bottom: 3px solid #667eea;
        padding-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;

        .title-icon {
            font-size: 30px;
        }
    }

    // FAQ Section
    .wcps-faq-section {
        background: white;
        padding: 40px;
        border-radius: 16px;
        margin: 40px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .faq-container {
        display: grid;
        gap: 20px;
    }

    .faq-item {
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;

        &:hover {
            border-color: #667eea;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
        }
    }

    .faq-toggle {
        width: 100%;
        background: #f8f9fa;
        border: none;
        padding: 25px;
        text-align: left;
        cursor: pointer;
        font-weight: 600;
        color: #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        font-size: 16px;

        &:hover {
            background: #e9ecef;
        }

        &.active {
            background: #667eea;
            color: white;
        }

        .faq-icon {
            font-size: 20px;
            font-weight: bold;
            transition: transform 0.3s ease;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
        }

        &.active .faq-icon {
            transform: rotate(180deg);
            background: rgba(255, 255, 255, 0.2);
        }
    }

    .faq-content {
        display: none;
        padding: 25px;
        background: white;
        border-top: 1px solid #e0e0e0;
        line-height: 1.7;
        color: #555;

        p {
            margin: 0 0 15px 0;
        }

        h4 {
            color: #333;
            margin: 20px 0 10px 0;
            font-size: 16px;
        }

        .code-block {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #667eea;
            margin: 15px 0;

            code {
                color: #667eea;
                font-weight: 600;
                font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            }
        }

        .feature-list {
            margin: 15px 0;
            padding-left: 0;
            list-style: none;

            li {
                margin-bottom: 8px;
                padding-left: 25px;
                position: relative;

                &::before {
                    content: '✓';
                    position: absolute;
                    left: 0;
                    color: #28a745;
                    font-weight: bold;
                }
            }
        }
    }

    // Cards Grid
    .wcps-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin: 40px 0;
    }


    .shortcode-title {
        color: #333;
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;

        .shortcode-icon {
            font-size: 24px;
        }
    }

    .shortcode-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .code-block {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        border-left: 4px solid #667eea;
        margin: 15px 0;

        &.code-success {
            border-left-color: #28a745;
        }

        code {
            color: #667eea;
            font-weight: 600;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
        }

        &.code-success code {
            color: #28a745;
        }
    }

    .shortcode-params {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin: 20px 0;
    }

    .param-item {
        background: #e8f5e8;
        padding: 15px;
        border-radius: 8px;

        .param-name {
            color: #28a745;
            font-weight: 600;
        }

        .param-description {
            color: #666;
            font-size: 13px;
        }
    }

    .shortcode-usage {
        color: #666;
        font-size: 14px;
        margin: 15px 0 0 0;
    }

    // Animations
    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    // Responsive Design
    @media (max-width: 768px) {
        padding: 15px;

        .wcps-welcome-section {
            padding: 40px 30px;
            margin: 20px 0;

            .welcome-title {
                font-size: 28px;
            }

            .welcome-description {
                font-size: 16px;
            }

            .welcome-actions {
                flex-direction: column;
                align-items: center;
            }

            .welcome-btn-primary,
            .welcome-btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        .wcps-stats-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .stat-card {
            padding: 20px 15px;

            .stat-icon {
                font-size: 32px;
            }

            .stat-number {
                font-size: 24px;
            }
        }

        .section-title {
            font-size: 22px;
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }

        .wcps-faq-section,
        .wcps-steps-section,
        .wcps-shortcodes-section {
            padding: 30px 20px;
        }

        .faq-toggle {
            padding: 20px;
            font-size: 15px;
        }

        .faq-content {
            padding: 20px;
        }

        .wcps-cards-grid {
            grid-template-columns: 1fr;
        }

        .support-card {
            padding: 30px 25px;
        }

        .steps-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .shortcode-item {
            padding: 25px 20px;
        }

        .shortcode-params {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .wcps-welcome-section {
            padding: 30px 20px;

            .welcome-icon {
                font-size: 48px;
            }

            .welcome-title {
                font-size: 24px;
            }

            .welcome-description {
                font-size: 15px;
            }
        }

        .wcps-stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .stat-card {
            padding: 15px 10px;

            .stat-number {
                font-size: 20px;
            }

            .stat-label {
                font-size: 12px;
            }
        }

        .faq-toggle {
            padding: 15px;
            font-size: 14px;
        }

        .faq-content {
            padding: 15px;
        }

        .support-card {
            padding: 25px 20px;

            .card-icon {
                font-size: 40px;
            }

            .card-title {
                font-size: 20px;
            }
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 18px;
        }
    }
}

// Get Started Page Style end----------------------------------------------- 