/* Configuration Showcase Styles */
.config-showcase {
    max-width: 1100px;
    width: 100vw;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 13vh);
    display: flex;
    flex-direction: column;
}

.config-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.config-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.config-url {
    color: white;
    font-size: 2rem;
    margin: 0;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.component-card {
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.component-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(79, 74, 251, 0.63);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.component-card:hover::before {
    transform: translateX(0);
}

.component-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.component-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 74, 251, 0.13);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #919196;
}

.component-type {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.component-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.component-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.component-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4F4AFB;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: rgba(95, 92, 221, 0.27);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.component-link:hover {
    text-decoration: none;
    color: #4F4AFB;
    transform: translateX(5px);
}

.component-link i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .config-showcase {
        padding: 1rem;
        min-height: auto;
    }

    .config-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .config-title {
        font-size: 2rem;
    }

    .config-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .component-card {
        padding: 1.5rem;
    }

    .component-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .component-name {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .config-showcase {
        padding-top: 15vh;
    }
    .config-title {
        font-size: 1.75rem;
    }

    .config-url {
        font-size: 0.875rem;
    }

    .component-card {
        padding: 1.25rem;
    }

    .component-type {
        font-size: 0.75rem;
    }

    .component-link {
        font-size: 0.813rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.config-header {
    animation: fadeInUp 0.6s ease-out;
}

.component-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.component-card:nth-child(1) { animation-delay: 0.1s; }
.component-card:nth-child(2) { animation-delay: 0.2s; }
.component-card:nth-child(3) { animation-delay: 0.3s; }
.component-card:nth-child(4) { animation-delay: 0.4s; }
.component-card:nth-child(5) { animation-delay: 0.5s; }
.component-card:nth-child(6) { animation-delay: 0.6s; }
.component-card:nth-child(7) { animation-delay: 0.7s; }
.component-card:nth-child(8) { animation-delay: 0.8s; }
.component-card:nth-child(9) { animation-delay: 0.9s; }