body {
    margin: 0;
    padding: 0;
    background: #0f172a;
    color: #e5e7eb;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 1200px;
    margin: auto;
    padding: 40px;
}

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

.subtitle {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 18px;
    padding: 24px;
    transition: 0.25s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.card h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.wait {
    color: #facc15;
    font-weight: bold;
}

.ok {
    color: #22c55e;
    font-weight: bold;
}.search-box {
    margin: 30px 0;
}

.search-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 900px;
}

.search-input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #020617;
    color: #e5e7eb;
    font-size: 16px;
    outline: none;
}

.search-input:focus {
    border-color: #2563eb;
}

.search-button {
    padding: 14px 22px;
    border-radius: 12px;
    border: none;
    background: #2563eb;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.search-button:hover {
    background: #1d4ed8;
}

.back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #93c5fd;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}.module-hero {
    margin-bottom: 30px;
}

.module-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
    font-size: 14px;
    font-weight: bold;
}

.search-panel {
    margin: 30px 0;
}

.module-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.status-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 18px;
    padding: 22px;
}

.results-section {
    margin-top: 40px;
}

.results-header {
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.video-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 20px;
    padding: 22px;
}

.video-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.video-platform {
    color: #94a3b8;
    font-size: 14px;
}

.video-score {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-weight: bold;
    font-size: 13px;
}

.video-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.video-meta-list {
    margin-bottom: 20px;
}

.video-meta-list p {
    color: #cbd5e1;
    margin: 8px 0;
}

.video-meta-list span {
    color: #94a3b8;
}

.video-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: bold;
}

.video-link:hover {
    text-decoration: underline;
}

.ghost-button {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
}

.ghost-button:hover {
    border-color: #2563eb;
    color: #ffffff;
}

.empty-state {
    margin-top: 40px;
    padding: 28px;
    border-radius: 18px;
    border: 1px dashed #334155;
    color: #94a3b8;
}