.got-main {
    display: flex;
    gap: 30px;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.got-box {
    width: 320px;
    background: #faf5f0;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #f0e0d0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.got-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
}
.got-row {
    margin-bottom: 14px;
}
.got-row label {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}
.got-row input,
.got-row select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 13px;
}
.got-platforms label {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}
#got-run {
    margin-top: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #e06c2f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}
#got-run:hover {
    background: #c95f29;
}
.got-output {
    flex: 1;
}
.got-status {
    font-size: 13px;
    margin-bottom: 12px;
    color: #555;
}
.got-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.got-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ececec;
    padding: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    font-size: 13px;
}
.got-chip {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f3f3;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}
.got-card-title {
    font-weight: 600;
    margin-bottom: 4px;
}
.got-card-title a {
    color: #1a4d97;
    text-decoration: none;
}
.got-card-title a:hover {
    text-decoration: underline;
}
.got-card-meta {
    font-size: 11px;
    color: #777;
    margin-bottom: 6px;
}
.got-card-footer {
    margin-top: 8px;
    font-size: 12px;
}
.got-card-footer a {
    color: #e06c2f;
    text-decoration: none;
    font-weight: 600;
}
.got-card-footer a:hover {
    text-decoration: underline;
}
