body {
    background: linear-gradient(to top right, #ff9900, #ffcc33);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.apps-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.apps-header {
    text-align: center;
    margin-bottom: 60px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-family: "carilliantine", sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.back-link:hover {
    transform: translateX(-5px);
    color: #000;
    background: rgba(255, 255, 255, 0.3);
}

.back-link svg {
    transition: transform 0.2s ease;
}

.back-link:hover svg {
    transform: translateX(-3px);
}

.apps-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.apps-logo {
    width: 120px;
    height: 120px;
    animation: fadeInDown 0.6s ease-out;
}

.apps-header h1 {
    font-family: "carilliantine", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.app-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.app-card:nth-child(1) {
    animation-delay: 0.1s;
}

.app-card:nth-child(2) {
    animation-delay: 0.2s;
}

.app-card:nth-child(3) {
    animation-delay: 0.3s;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #ffcc33, #ff9900);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.app-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.app-card:hover::before {
    transform: scaleX(1);
}

.app-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    align-self: flex-start;
}

.app-card:hover .app-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.app-name {
    font-family: "carilliantine", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.app-card:hover .app-name {
    color: #ff9900;
}

.app-screenshot {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-card:hover .app-screenshot {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.app-card:hover .app-screenshot img {
    transform: scale(1.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .apps-header h1 {
        font-size: 48px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-card {
        padding: 25px;
    }

    .app-name {
        font-size: 28px;
    }
}

