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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: left;
    margin-bottom: 3rem;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.logo-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd89b 0%, #19547b 100%);
    margin: 0;
    border-radius: 2px;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1.8;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin-bottom: 3rem;
}

.app-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.app-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.app-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.app-card p {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-status {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.app-link {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.app-card.featured {
    border: 2px solid rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.app-card.featured::before {
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
}

.footer p {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .header {
        margin-bottom: 2rem;
    }
    
    .hero {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .app-card {
        padding: 1.25rem;
    }
    
    .app-icon {
        font-size: 2rem;
    }
}