* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 40px;
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.15);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #e94560;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64ffda;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    word-break: break-all;
}

.card-link:hover {
    color: #a8edea;
}

.card-link svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.card-description {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.loading {
    color: #8892b0;
    font-size: 1.2rem;
    margin-top: 60px;
}

.error {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-top: 40px;
    text-align: center;
}

.footer {
    margin-top: 50px;
    color: #4a5568;
    font-size: 0.85rem;
    text-align: center;
}
