/* Global */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0e0f11;
    color: #eaeaea;
}

/* Fixed Logo */
.fixed-logo {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
}

.fixed-logo img {
    height: 110px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.65));
    transition: opacity 0.2s ease;
}

.fixed-logo img:hover {
    opacity: 1;
}

/* Main Container */
.container {
    max-width: 1000px;
    margin: 120px auto 60px auto;
    padding: 0 24px;
}

/* Title */
h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Paper List */
.paper-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Paper Card */
.paper-card {
    background: #16181d;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

.paper-card h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
}

/* View Link */
.view-link {
    text-decoration: none;
    color: #7aa2ff;
    font-weight: 500;
}

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

/* Mobile Adjustments */
@media (max-width: 600px) {
    .fixed-logo img {
        height: 80px;
    }

    .container {
        margin-top: 100px;
    }
}
