
.app-showcase--alt {
    background: #1a1a1a;
    margin-top: 120px; 
    color: white;
}

.app-showcase--alt .app-showcase__app-name {
    color: black;
}

.app-showcase--alt .app-showcase__rating {
    color: #FFD700;
}

.app-showcase--alt .app-showcase__highlight {
    color: #FFD700;
}

.app-showcase--alt .app-showcase__title {
    color: black;
}

.app-showcase--alt .app-showcase__description {
    color: black;
}

.app-showcase--alt .app-showcase__decoration {
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
}

.app-showcase--alt .app-showcase__feature-icon {
    background: rgba(255,215,0,0.1);
}

.app-showcase--alt .app-showcase__icon {
    stroke: #FFD700;
}

.app-showcase--alt .app-showcase__web-link {
    color: #FFD700;
}

.app-showcase--alt .floating-box__content p {
    color: #FFD700;
}

.app-showcase__stores {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
  
}

.store-button__icon {
    font-size: 24px;
}

.store-button__content {
    display: flex;
    flex-direction: column;
}

.store-button__subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.store-button__title {
    font-size: 16px;
    font-weight: 600;
}

.app-showcase {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    padding: 40px 0;
    overflow: hidden;
}

.app-showcase__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.app-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 190px;
    align-items: center;
    min-height: 80vh;
}

.app-showcase__content {
    padding-right: 40px;
    position: relative;
    z-index: 3;
}

.app-showcase__app-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.app-showcase__app-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,128,0,0.1);
}

.app-showcase__app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-showcase__app-meta {
    display: flex;
    flex-direction: column;
}

.app-showcase__app-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #008000;
}

.app-showcase__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #008000;
}

.app-showcase__rating-count {
    color: #666;
    font-size: 0.9rem;
}

.app-showcase__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.app-showcase__highlight {
    color: #008000;
}

.app-showcase__description {
    font-size: 1.1rem;
    color: #666;
}

.app-showcase__features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.app-showcase__feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.app-showcase__feature:hover {
    transform: translateY(-5px);
}

.app-showcase__feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,128,0,0.1);
    border-radius: 12px;
}

.app-showcase__icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #008000;
    stroke-width: 2;
}

.app-showcase__feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.app-showcase__feature-content p {
    font-size: 0.9rem;
    color: #666;
}

.app-showcase__image-side {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-showcase__main-image {
    width: auto;
    height: 75vh;
    max-height: 600px;
    border-radius: 20px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.floating-box {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-box--1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.floating-box--2 {
    top: 50%;
    left: 0;
    animation-delay: 2s;
}

.floating-box--3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

.floating-box__icon {
    font-size: 24px;
}

.floating-box__content {
    display: flex;
    flex-direction: column;
}

.floating-box__content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.floating-box__content p {
    font-size: 0.8rem;
    color: #008000;
    margin: 0;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.app-showcase__decoration {
    position: absolute;
    right: -20%;
    top: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0,128,0,0.1) 0%, rgba(0,128,0,0) 70%);
    z-index: 1;
}

.app-showcase__stores {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.app-showcase__store img {
    height: 45px;
    transition: transform 0.3s ease;
}

.app-showcase__store:hover img {
    transform: translateY(-3px);
}

.app-showcase__web-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #008000;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.app-showcase__web-link:hover {
    gap: 12px;
}

.app-showcase__link-arrow {
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .app-showcase__grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 40px;
    }

    .app-showcase__content {
        padding-right: 0;
        text-align: center;
    }

    .app-showcase__app-info {
        justify-content: center;
    }

    .app-showcase__feature {
        justify-content: center;
    }

    .app-showcase__stores {
        justify-content: center;
    }

    .app-showcase__image-side {
        height: 70vh;
    }
    
    .app-showcase__main-image {
        height: 70vh;
    }
    
    .floating-box {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .app-showcase__title {
        font-size: 2rem;
    }

    .app-showcase__feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-showcase__image-side {
      
    }
    
    .app-showcase__main-image {
        height: 70vh;
    }
    
    .floating-box {
        transform: scale(0.7);
    }
}
