/* Showcase Section Styles - Light Theme */
.showcase-section {
    position: relative;
    padding: 60px 0 100px;
    /* Hero üzerine taşma */
    margin-top: -180px;
    /* Clean Light Background */
    background: transparent;
    overflow: visible;
    color: #333;
    z-index: 10;
}

/* Browser frame hero içinde görünsün */
.showcase-container {
    max-width: 900px;
}

/* Background Elements */
.showcase-bg-glow {
    display: none;
}

.showcase-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.showcase-header {
    margin-bottom: 60px;
}

.showcase-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(47, 127, 118, 0.08);
    border: 1px solid rgba(47, 127, 118, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    /* Brand Teal Text */
    color: #2F7F76;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    /* Dark Text for Light Theme */
    color: #1a1a1a;
}

.showcase-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video/Interface Container */
.showcase-video-wrapper {
    position: relative;
    margin-top: 0;
    border-radius: 20px;
    /* Stronger shadow for depth on light bg */
    box-shadow: 0 30px 80px -12px rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
    /* transform-style: preserve-3d; -- Disabled for GPU performance */
}

.showcase-video-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.browser-frame {
    /* Light Gray Frame */
    background: #f1f5f9;
    border-radius: 12px 12px 0 0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #22c55e;
}

.browser-address {
    flex: 1;
    margin-left: 20px;
    background: #fff;
    height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    /* Video content stays dark */
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    z-index: 5;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Dark gradient for the screen content */
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(80, 80, 100, 0.6);
    /* Solid background instead of blur */
    /* backdrop-filter: blur(10px); -- DISABLED for GPU performance */
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}


.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

/* Floating UI Elements - Light Theme */
.floating-card {
    position: absolute;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    /* animation: float 6s ease-in-out infinite; -- Disabled for GPU performance */
    will-change: transform;
    z-index: 20;
}

.card-1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -50px;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Updated Icon Colors */
.icon-blue {
    background: rgba(56, 189, 248, 0.1);
    color: #0ea5e9;
}

.icon-green {
    background: rgba(47, 127, 118, 0.1);
    color: #2F7F76;
}

.card-content h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 0.75rem;
    margin: 2px 0 0;
    color: #666;
}

/* Annotations & Arrows */
.annotation {
    position: absolute;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.annotation-left {
    top: -40px;
    left: -120px;
    width: 120px;
    height: 100px;
}

.annotation-right {
    bottom: -40px;
    right: -120px;
    width: 120px;
    height: 100px;
}

.arrow-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.annotation-text {
    font-family: 'Indie Flower', cursive, sans-serif;
    /* Handwriting font */
    font-size: 1rem;
    color: #2F7F76;
    font-weight: 600;
    margin-top: 5px;
    transform: rotate(-5deg);
}

.annotation-right .annotation-text {
    margin-top: -20px;
    /* Adjust for bottom position */
    transform: rotate(5deg);
}

/* Add Google Font for Handwriting style if not present, fallback to sans-serif */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateZ(20px);
    }

    50% {
        transform: translateY(-20px) translateZ(20px);
    }
}

@media (max-width: 1024px) {
    .annotation {
        display: none;
    }

    /* Hide on smaller screens */
    .card-1 {
        left: -20px;
    }

    .card-2 {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }
}