body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1B4B6B 0%, #0F2D42 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

header {
    padding: 20px;
}

.back-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.apps-container {
    flex: 1;
    display: flex;
    gap: 50px;
    padding: 30px;
    perspective: 1000px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .apps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
    }

    .app-square {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .apps-container {
        gap: 25px;
    }

    .app-square {
        width: 180px;
        height: 180px;
    }

    .app-square img {
        width: 100px;
        height: 100px;
    }
}

.app-square {
    width: 220px;
    height: 220px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.app-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.app-square:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.app-square:hover::before {
    transform: translateX(100%);
}

.app-square img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    box-sizing: border-box;
}

.app-square:hover img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.15);
}

.app-square span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-square:hover span {
    opacity: 1;
    transform: translateY(-2px);
    letter-spacing: 2px;
} 