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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

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

header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

header p {
    font-size: 20px;
    opacity: 0.9;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.app-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.app-card.empty {
    opacity: 0.6;
    border: 2px dashed #ddd;
    background: rgba(255, 255, 255, 0.9);
}

.app-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.app-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.app-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.testing {
    background: #fef3c7;
    color: #92400e;
}

.status.live {
    background: #d1fae5;
    color: #065f46;
}

footer {
    text-align: center;
    color: white;
    opacity: 0.8;
    font-size: 14px;
}