.list-page-wrapper {
    min-height: 100vh;
    background-color: #0d0d1a;
    color: #dcdcdc;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.list-page-wrapper .container {
    position: relative;
    z-index: 10;
}

.header-section {
    text-align: center;
    margin-bottom: 48px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 9999px;
    color: #fde047;
    font-size: 0.9rem;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background-image: linear-gradient(to right, #fde047, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
}

.subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 32px;
}

.contest-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contest-card {
    background-color: rgba(22, 33, 62, 0.8);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #dcdcdc;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.contest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(251, 191, 36, 0.4);
}

.contest-card-header {
    padding: 24px 24px 16px 24px;
    position: relative;
}

.contest-card-status {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid;
}

.contest-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.contest-card-description {
    color: #94a3b8;
    line-height: 1.6;
    min-height: 75px;
}

.contest-card-footer {
    margin-top: auto;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0,0,0,0.2);
}