/* App List Layout */
.app-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.app-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.app-item:hover {
    transform: translateY(-4px);
}

/* Logo + Name */
.app-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-right: 12px;
}

.app-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

/* Download Button */
.download-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: scale(1.05);
}

/* Hacked Mod APK Button */
.mod-btn {
    background: linear-gradient(135deg, #E91E63, #AD1457);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(233,30,99,0.3);
    animation: blink 1.5s infinite;
    transition: all 0.3s ease;
}

.mod-btn:hover {
    background: linear-gradient(135deg, #AD1457, #880E4F);
    transform: scale(1.05);
}

/* Blinking Effect */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    background: linear-gradient(90deg, #1976d2 0%, #d32f2f 100%);
    padding: 12px 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 2px 8px #d32f2f22;
    margin-bottom: 32px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    padding: 6px 18px;
    border-radius: 18px;
    transition: background 0.2s, color 0.2s;
}

.navbar a:hover, .navbar a.active {
    background: #fff;
    color: #1976d2;
}

@media (max-width: 600px) {
    .navbar { flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 8px 0; }
    .navbar a { font-size: 1em; padding: 4px 12px; min-width: 90px; text-align: center; }
    .app-item {
        flex-direction: column;
        text-align: center;
    }
    .download-btn,
    .mod-btn {
        display: block;
        margin: 8px 0 0 0;
        width: 100%;
    }
}
