* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item.active, .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

main {
    padding: 20px 0;
}

section {
    margin-bottom: 30px;
    background: #40566c;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #e7eef5;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.featured-app {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); 
    color: #ffeb3b;
}

.featured-app h2 {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.app-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-icon img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.app-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.app-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.app-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-download, .btn-favorite, .btn-small {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download {
    background-color: #2ecc71;
    color: white;
}

.btn-download:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-favorite {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-favorite:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-small {
    background-color: #3498db;
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-small:hover {
    background-color: #2980b9;
}

.download-options {
    background-color: #673ab7;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-link {
    display: block;
    padding: 12px 15px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.downloader-code {
    margin-top: 15px;
    padding: 10px;
    background-color: #607d8b;
    border-radius: 8px;
    text-align: center;
}

.downloader-code span {
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-thumbnail img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.app-details h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.app-details p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 20px 20px 0 0;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-card {
        flex-direction: column;
        text-align: center;
    }
    
    .app-actions {
        justify-content: center;
    }
    
    .app-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }
}
.app-icon img {
    width: 180px;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
}

