/* Screenshots & Video Section */
.showcase {
    padding: 6rem 0;
    background: #0a0a0a;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.screenshots-gallery {
    position: relative;
}

.screenshot-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.screenshot {
    position: absolute;
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.screenshot:nth-child(1) {
    transform: translateX(-60px) rotate(-5deg);
    z-index: 1;
}

.screenshot:nth-child(2) {
    transform: translateX(0) rotate(0deg);
    z-index: 2;
}

.screenshot:nth-child(3) {
    transform: translateX(60px) rotate(5deg);
    z-index: 1;
}

.screenshot:hover {
    transform: translateX(0) rotate(0deg) scale(1.05);
    z-index: 3;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, #009fe3, #0077b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-section {
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.showcase-content p {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.showcase-feature i {
    color: #009fe3;
    font-size: 1.1rem;
}
