* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bg {
    position: fixed;
    inset: 0;
    background: url('../images/themes/zeus003.jpg') center/cover no-repeat;
    z-index: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    padding: 1.5rem;
    text-align: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.search-box {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-box input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.search-box input::placeholder {
    color: #888;
}

.search-box button {
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #1a1a2e;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.search-box button:hover {
    background: #16213e;
}

/* Search results: URL list below the form (transparent background) */
.search-results {
    margin-top: 1.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.search-results-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.search-results-list {
    list-style: none;
}

.search-results-list li {
    margin-bottom: 0.5rem;
}

.search-results-list li:last-child {
    margin-bottom: 0;
}

.search-results-list a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-all;
    display: inline-block;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Alternate link colors per row for readability */
.search-results-list li:nth-child(odd) a {
    color: rgba(147, 197, 253, 0.98); /* light blue */
    border-bottom-color: rgba(147, 197, 253, 0.35);
}

.search-results-list li:nth-child(even) a {
    color: rgba(167, 243, 208, 0.98); /* light green */
    border-bottom-color: rgba(167, 243, 208, 0.35);
}

.search-results-list a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.search-results-empty {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
}

