* {
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 700px;
    margin: 120px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    font-size: 36px;
}

form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #181b22;
    color: #fff;
}

button {
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #4d7cff;
    color: white;
}

button:hover {
    background: #3b68dd;
}

#status {
    margin-top: 30px;
    font-size: 18px;
}

#results {
    margin-top: 25px;
    text-align: left;
}

.result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #181b22;
    border: 1px solid #2a2e39;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
}

.result-title {
    font-size: 20px;
    font-weight: bold;
}

.result-forum {
    margin-top: 5px;
    color: #b8beca;
}

.forum-logo {
    width: 168px;
    height: 48px;
    object-fit: contain;
    margin-left: 20px;
}


.main-logo {
    display: block;
    max-width: 160px;
    width: 40%;
    height: auto;
    margin: 0 auto 16px auto;
}

.site-footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.subtitle {
    margin-top: -18px;
    margin-bottom: 30px;
    color: #b8beca;
    font-size: 16px;
    line-height: 1.5;
}