* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3b76cf;
    background-image: linear-gradient(180deg, #3061AB 0%, #3b76cf 25%);
    overflow: hidden;
}

.launchpad-container {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    overflow-y: auto;
}

.search-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 8px 16px;
    width: 320px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    outline: none;
    margin-bottom: 60px;
    backdrop-filter: blur(5px);
    transition: background 0.3s, width 0.3s, box-shadow 0.3s;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar:focus {
    background: rgba(255, 255, 255, 0.2);
    text-align: left;
    width: 380px;
    box-shadow: 0 0 15px rgba(162, 212, 107, 0.3);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 50px 40px;
    max-width: 1100px;
    width: 100%;
    justify-items: center;
    align-content: start;
}

.app-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.app-item:active {
    transform: scale(0.94);
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    background: linear-gradient(135deg, #a2d46b 0%, #85b057 100%);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    padding: 15px;
}

.app-icon::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15), transparent);
    pointer-events: none;
}

.app-item:hover .app-icon {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
}

.app-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.app-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    width: 100%;
    padding: 0 2px;
    margin-top: 4px;
    word-break: break-word;    
    display: -webkit-box;
    -webkit-box-orient: vertical;
}