/* ==========================================================================
   CPANEL SHOWCASE STYLES
   ========================================================================== */

.cpanel-showcase-section {
    background: #040e2d !important;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.showcase-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -1px;
    line-height: 1.25;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #ff9e5e 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-main-subtitle {
    color: #94a3b8;
    font-size: 16.5px;
    margin-top: 12px;
}

/* Mockup Browser Window Container */
.dashboard-mockup-wrapper {
    background: #091330;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: #060d24;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.mockup-dots .red { background: #ef4444; }
.mockup-dots .yellow { background: #f59e0b; }
.mockup-dots .green { background: #22c55e; }

.mockup-title-bar {
    font-size: 12.5px;
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 20px;
    border-radius: 6px;
    font-family: monospace;
    width: 100%;
}

.mockup-body {
    padding: 12px;
    background: #020718;
}

.mockup-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Live Demo CTA Button */
.btn-demo-action {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(255, 123, 44, 0.35);
}

.btn-demo-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 123, 44, 0.5);
}

.demo-subtext {
    font-size: 13.5px;
    color: #94a3b8;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .showcase-main-title { font-size: 32px; }
    .cpanel-showcase-section { padding-top: 70px; padding-bottom: 70px; }
}

@media (max-width: 575px) {
    .showcase-main-title { font-size: 26px; }
    .mockup-title-bar { font-size: 10.5px; padding: 4px 10px; }
}