* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('/fonts/proximanova_regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('/fonts/proximanova_bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

.fixed-container {
    position: relative;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    margin: 0 auto;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.reward-panel {
    display: flex;
    align-items: center;
    background-color: #1c1f1e;
    border-radius: 20px;
    padding: 40px 50px;
    width: 1500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    gap: 40px;
}

.qr-code {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 10px;
}

.reward-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reward-title {
    color: #ffffff;
    font-size: 60px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

.score-value {
    color: #e30611;
    font-family: 'ProximaNova', Arial, sans-serif;
}

.reward-desc {
    color: #ffffff;
    font-size: 30px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
}

.red-link {
    color: #e30611;
    font-family: 'ProximaNova', Arial, sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.red-link:hover {
    color: #ff333d;
    text-decoration: underline;
}

.weapons-display {
    display: flex;
    justify-content: center;
    gap: 80px;
    width: 100%;
    margin-top: 60px;
}

.weapon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 380px;
    text-align: center;
}

.weapon-img {
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.weapon-title {
    color: #ffffff;
    font-size: 32px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
}

.weapon-desc {
    color: #ffffff;
    font-size: 22px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 30px;
}

.market-btn {
    display: inline-block;
    transition: transform 0.2s;
    margin-top: auto;
}

.market-btn:hover {
    transform: scale(1.05);
}

.market-btn-img {
    height: 60px;
    object-fit: contain;
    display: block;
}