* {
    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: 150px;
}

.title {
    color: #ffffff;
    font-size: 120px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 70px;
}

.description {
    color: #ffffff;
    font-size: 32px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 145px;
}

.weapons-row {
    display: flex;
    justify-content: center;
    gap: 0px;
    width: 100%;
}

.weapon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.weapon-card.show {
    opacity: 1;
    transform: translateY(0);
}

.weapon-img {
    object-fit: contain;
    margin-bottom: 20px;
}

.weapon-name {
    color: #ffffff;
    font-size: 22px;
    font-family: 'ProximaNova', Arial, sans-serif;
    font-weight: bold;
    margin-top: auto;
}

.next-btn {
    position: absolute;
    left: 90%;
    top: 89%;
    transform: translate(-50%, -50%);
    z-index: 3;
    
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}

.next-btn.show {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}