* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background:#1a1a1a;
    color:white;
    text-align:center;
    padding:1rem;
    font-size:1.5rem;
    font-family:sans-serif;
}

#apps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
}

.app-card {
    background: #2d2d2d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    border: 2px solid #3d3d3d;
    animation: slideUp 0.6s ease-out backwards;
}

.app-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
}

.app-image {
    width: 200px;
    min-width: 200px;
    height: auto;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

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

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

.app-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: bold;
}

.app-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1em;
}

.app-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-tag {
    background: #fbbf24;
    color: #1a1a1a;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

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

@media (max-width: 500px) {
    .app-card {
        flex-direction: column;
    }
    
    .app-image {
        width: 100%;
        height: auto;
        min-width: unset;
        aspect-ratio: 1/1;
    }
    
    .app-content {
        padding: 20px;
    }
}

