body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #121212;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
}
h1 { font-size: 3rem; margin-bottom: 5px; letter-spacing: 2px; }
p { color: #888; margin-bottom: 50px; font-size: 1.1rem; }

.dock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 40px 0;
    -webkit-overflow-sscrolling: touch;
}
.dock-container::-webkit-scrollbar { display: none; }

.icon-wrapper {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
}
.icon-wrapper:first-child { margin-left: 30px; }
.icon-wrapper:last-child { margin-right: 30px; }

.app-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background-color: #2a2a2a;
    border-radius: 22px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden; /* Keeps the image inside the rounded corners */
}

/* Use this for your custom image icons */
.icon-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* Add that "Pop" animation when you tap/click */
.app-icon:hover {
    transform: translateY(-10px) scale(1.05);
    background-color: #333;
    box-shadow: 0 15px 25px rgba(0,112,155,0.4);
}

.app-icon:active { 
    transform: scale(0.9);
}
.app-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #ccc;
    font-weight: 500;
}
