body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #eee;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px 10px;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.header p {
    color: #aaa;
}

/* Sections */
.section {
    padding: 30px 20px;
}

.section h2 {
    margin-bottom: 20px;
    border-left: 4px solid #4da3ff;
    padding-left: 10px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Cards */
.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: 0.2s;
    position: relative;
}

.card:hover {
    transform: scale(1.05);
    background: #262626;
    box-shadow: 0 0 15px rgba(77,163,255,0.3);
}

.card a {
    color: #4da3ff;
    text-decoration: none;
}

.card h3 {
    margin: 0 0 10px;
}

/* Status dot */
.status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 0.9rem;
}