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

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    padding: 2rem;
}

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

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

header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

header p {
    color: #888;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.card:hover {
    background: #1a1a1a;
    border-color: #404040;
    transform: translateY(-4px);
}

.card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.card.disabled:hover {
    transform: none;
}

.logo {
    width: 60px;
    height: 60px;
    background: #252525;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.card:hover .logo {
    background: #303030;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.active {
    background: #1a4d2e;
    color: #4ade80;
}

.badge.inactive {
    background: #4d1a1a;
    color: #f87171;
}

.badge.soon {
    background: #4d3d1a;
    color: #fbbf24;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.domain {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.description {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}
