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

body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
}

/* Container */
.container {
    text-align: center;
    max-width: 640px;
    padding: 40px;
    position: relative;
}

/* Top accent line */
.container::before {
    content: "";
    width: 60px;
    height: 3px;
    background: #800000;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

/* Brand */
.logo {
    margin-bottom: 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Title */
h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h1 span {
    color: #800000;
}

/* Description */
.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px; /* increased from 20px */
}

.features span {
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

/* Hint */
.hint {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
}

/* Buttons */
.actions {
    margin-bottom: 30px; /* increased from 20px */
}

.btn-primary {
    background: #800000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s;
}

.btn-primary:hover {
    background: #a00000;
    transform: translateY(-1px);
}

/* Meta */
.meta {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #999;
}