.launcher-wrapper {
    margin: 30px 0;
}

.launcher-main-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container-launcher-app {
    width: 100%;
    max-width: 1170px;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
	background: #ffffff6b;
    border-radius: 12px
}


.grid-container-launcher-app {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 16px));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between; /* biar rapi */
}

.grid-container-launcher-app .item {
    position: relative;
    background: #ffffff;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    transition: all 0.35s ease;
    text-decoration: none;
    border: 1px solid #ccc;
    overflow: hidden;
}
.grid-container-launcher-app .item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}


.grid-container-launcher-app .item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 0, 0, 0.4);
    border-color: #dc2626;
    z-index: 2;
}


.grid-container-launcher-app .item:hover img {
    transform: scale(1.5);
}

/* label */

.grid-container-launcher-app .item::after {
    content: attr(data-title);
    position: absolute;
    padding:5px;
    bottom: 8px;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.grid-container-launcher-app .item:hover::after {
    opacity: 1;
    color: #cbd5f5;
    text-shadow: 1px 2px 2px #000;
    background-color: #000;
    width: 100%;
}

/* garis bawah */

.grid-container-launcher-app .item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #facc15, #ef4444);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.grid-container-launcher-app .item:hover::before {
    width: 80%;
}

/* TABLET */
@media (max-width: 1024px) {
    .grid-container-launcher-app {
        grid-template-columns: repeat(3, calc(33.333% - 14px));
    }
}

/* MOBILE scroll horizontal */
@media (max-width: 768px) {
    .grid-container-launcher-app {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .grid-container-launcher-app .item {
        flex: 0 0 140px;
        height: 100px;
        scroll-snap-align: center;
    }

    .grid-container-launcher-app .grid-container-launcher-app::-webkit-scrollbar {
        height: 4px;
    }

    .grid-container-launcher-app .grid-container-launcher-app::-webkit-scrollbar-thumb {
        background: #ef4444;
        border-radius: 10px;
    }
}

.one-half{
	width:45%;
}


@media (max-width: 768px) {
	.one-half,
	.one-third,
	.two-thirds,
	.one-fourth,
	.three-fourths,
	.one-sixth,
	.five-sixths {
		width: 100% !important;
		margin-left: 0 !important;
		float: none;
	}
}
