@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNovaSemi.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Tungsten";
    src: url("../fonts/Tungsten-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #0B0812;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.modal-open {
    overflow: hidden;
}

body > * {
    flex-shrink: 0;
}

body > .footer {
    margin-top: auto;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
}

.fade-in:not(.visible) {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.8s ease-out;
}

/* Disable image dragging and context menu */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7B3FE4 0%, #8E53F6 100%);
    border-radius: 1px;
    min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8E53F6 0%, #9D68FF 100%);
}

::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #7B3FE4 transparent;
}

html {
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 794px;
    height: 40px;
    margin: 0 auto;
    padding-top: 40px;
}

header .logo {
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

header .logo:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(123, 63, 228, 0.3));
    transform: scale(1.05);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    justify-content: center;
}

nav button {
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #C9C9D4;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    pointer-events: auto;
    transition: color 0.3s ease, transform 0.2s ease;
}

nav button:hover {
    color: #FFF;
    transform: translateY(-1px);
}

nav button.roulette-btn {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, #7B3FE4 0%, #8E53F6 100%);
    box-shadow: 0 0 4px 0 #FFF inset;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

header .roulette-btn {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, #7B3FE4 0%, #8E53F6 100%);
    box-shadow: 0 0 4px 0 #FFF inset;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

header .roulette-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 8px 0 #FFF inset, 0 4px 12px rgba(123, 63, 228, 0.4);
}

.hero {
    margin-top: 120px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: "Tungsten";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    text-transform: uppercase;
}

.hero p {
    margin: 0;
    margin-top: 2px;
    color: #A1A1A8;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.hero-btn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 24px auto 0;
    background: linear-gradient(0deg, #7B3FE4 0%, #8E53F6 100%);
    box-shadow: 0 0 4px 0 #FFF inset;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 8px 0 #FFF inset, 0 4px 12px rgba(123, 63, 228, 0.4);
}

.hero-image {
    display: block;
    margin: -100px auto 0;
    max-width: 800px;
    width: 100%;
    height: auto;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 40%, transparent 80%);
    margin-bottom: 88px;
}

.content-block {
    width: 100%;
    max-width: 858px;
    min-height: 960px;
    border: 1px solid #151023;
    margin: 0 auto;
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
    box-sizing: border-box;
}

.inner-container {
    width: calc(100% - 64px);
    min-height: 280px;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    margin: 0 auto;
    padding: 0px 32px;
    box-sizing: border-box;
    text-align: left;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
}

.about-text-wrapper {
    flex: 1;
    margin-top: 20px;
}

.about-icon {
    flex-shrink: 0;
    width: 300px;
    height: auto;
    opacity: 1;
    margin-right: -30px;
    filter: drop-shadow(0 0 0 transparent);
    mix-blend-mode: lighten;
}

.inner-container h2 {
    margin: 0;
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.inner-container .about-text {
    margin: 0;
    margin-top: 8px;
    color: #A1A1A8;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.inner-container .about-text + .about-text {
    margin-top: 16px;
}

.divider {
    width: 100vw;
    height: 1px;
    background: #151023;
    margin-top: 32px;
    margin-bottom: 32px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.inner-container-2 {
    width: calc(100% - 64px);
    min-height: 496px;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    margin: 0 auto;
    padding: 32px;
    box-sizing: border-box;
}

.progress-bars {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.progress-bar {
    display: flex;
    height: 4px;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    background: #1B1626;
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7B3FE4;
    transform: translateX(-100%);
}

.progress-bar:nth-child(1)::before {
    animation: fillBar1 15s linear infinite;
}

.progress-bar:nth-child(2)::before {
    animation: fillBar2 15s linear infinite;
}

.progress-bar:nth-child(3)::before {
    animation: fillBar3 15s linear infinite;
}

@keyframes fillBar1 {
    0% {
        transform: translateX(-100%);
    }
    33.33% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fillBar2 {
    0%, 33.33% {
        transform: translateX(-100%);
    }
    66.66% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fillBar3 {
    0%, 66.66% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.slide.active {
    opacity: 1;
}

.slide h3 {
    margin: 0;
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    align-self: flex-start;
}

.slide p {
    margin: 0;
    margin-top: 4px;
    color: #A1A1A8;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    align-self: flex-start;
}

.slide-image {
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.slide-image-wait {
    margin-top: 8px;
}

.roulette-section {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    position: relative;
}

.roulette-section::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 244px;
    background: #8E53F6;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    z-index: 30;
    pointer-events: none;
}

.roulette-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.roulette-spin-track {
    display: flex;
    gap: 16px;
    position: absolute;
    left: 0%;
    height: 200px;
    z-index: 5;
    will-change: transform;
    align-items: center;
    transition: transform 2.5s cubic-bezier(0.15, 0.5, 0.3, 1);
}

.roulette-card {
    width: 360px;
    height: 200px;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 24px 20px 20px 20px;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.weapon-name {
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    position: absolute;
    top: 16px;
    left: 16px;
    right: auto;
    z-index: 5;
}

.roulette-card img {
    width: 100%;
    height: 100%;
    max-height: 110px;
    object-fit: contain;
    margin-top: 8px;
}

.roulette-card:nth-child(3)::before {
    display: none;
}

.spin-btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, #7B3FE4 0%, #8E53F6 100%);
    box-shadow: 0 0 4px 0 #FFF inset;
    border: none;
    cursor: pointer;
    margin: 72px auto 0;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 8px 0 #FFF inset, 0 4px 12px rgba(123, 63, 228, 0.4);
}

/* Winner Modal */
.winner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

.winner-modal.active {
    display: flex;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 8, 18, 0.48);
    backdrop-filter: blur(6px);
}

.modal-content {
    position: relative;
    width: 467px;
    height: 345px;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    box-sizing: border-box;
    z-index: 1001;
}

.modal-title {
    margin: 0;
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}

.modal-weapon-name {
    margin: 0;
    margin-top: 4px;
    color: #A1A1A8;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.modal-image-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 1;
}

.modal-weapon-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.modal-weapon-image[alt="Sheriff"] {
    max-width: 200px;
}

.modal-weapon-image[alt="Operator"] {
    max-width: 280px;
}

.modal-weapon-image[alt="Vandal"] {
    max-width: 300px;
}

.modal-weapon-image[alt="Melee"] {
    max-width: 220px;
}

.modal-weapon-image[alt="Guardian"] {
    max-width: 300px;
}

.modal-claim-btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, #7B3FE4 0%, #8E53F6 100%);
    box-shadow: 0 0 4px 0 #FFF inset;
    border: none;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    pointer-events: auto;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.modal-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 8px 0 #FFF inset, 0 4px 12px rgba(123, 63, 228, 0.4);
}

.new-section {
    width: 858px;
    min-height: auto;
    border: 1px solid #151023;
    margin: 88px auto 88px;
    padding: 32px;
    box-sizing: border-box;
}

.final-container {
    display: flex;
    flex-direction: column;
    padding: 32px 134px;
    justify-content: center;
    align-items: center;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    margin: 0 auto;
}

.quote {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: "Tungsten";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
}

.avatar-circle {
    display: flex;
    padding: 5px 0 0 4.5px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 9999px;
    background: linear-gradient(0deg, #7B3FE4 0%, #8E53F6 100%);
    width: fit-content;
}

.avatar-circle img {
    display: block;
    border-radius: 9999px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.profile-name {
    margin: 0;
    color: #FFF;
    text-align: left;
    font-family: "Proxima Nova";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.profile-desc {
    margin: 0;
    color: #A1A1A8;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.faq-item {
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active {
    align-items: flex-start;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-question {
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    flex: 1;
}

.faq-answer-wrapper {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    padding-top: 12px;
}

.faq-answer {
    margin: 0;
    color: #A1A1A8;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer {
    width: 100%;
    margin: 88px 0 0 0;
    background: #110D1A;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.footer-content {
    width: 858px;
    max-width: 858px;
    box-sizing: border-box;
    border-right: 1px solid #151023;
    border-left: 1px solid #151023;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 32px;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    flex: 1;
}

.footer-nav button {
    background: none;
    border: none;
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    padding: 0 12px;
    pointer-events: auto;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav button:hover {
    color: #7B3FE4;
    transform: translateY(-1px);
}

.top-btn {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.06) inset;
    border: none;
    color: #A1A1A8;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.top-btn:hover {
    background: rgba(123, 63, 228, 0.1);
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 0 12px 0 rgba(123, 63, 228, 0.2) inset;
}

/* Responsive Design */
@media (max-width: 1200px) {
    header,
    .content-block,
    .new-section {
        width: 90%;
        max-width: 858px;
    }
    
    .footer-content {
        width: 90%;
        max-width: 858px;
    }
}

@media (max-width: 900px) {
    .about-icon {
        display: none;
    }
    
    .about-content {
        justify-content: center;
        text-align: center;
    }
    
    .about-text-wrapper {
        margin-top: 0;
        width: 100%;
    }
    
    .inner-container {
        padding: 32px;
        min-height: 320px;
    }
    
    .inner-container h2 {
        text-align: center;
    }
    
    .inner-container .about-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        width: 95%;
        padding-top: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    nav {
        display: none;
    }
    
    header .roulette-btn {
        order: 2;
    }
    
    .hero h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 24px;
        padding: 0 20px;
    }
    
    .hero-image {
        max-width: 70%;
        margin-top: -50px;
    }
    
    .content-block {
        width: calc(100% - 32px);
        min-height: auto;
        border: 1px solid #151023;
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 20px;
        box-sizing: border-box;
    }
    
    .inner-container,
    .inner-container-2 {
        width: calc(100% - 32px);
        max-width: none;
        margin: 0 16px;
        height: auto;
        padding: 20px 16px;
        min-height: auto;
        box-sizing: border-box;
    }
    
    .inner-container h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    
    .inner-container .about-text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 12px;
    }
    
    .inner-container .about-text + .about-text {
        margin-top: 16px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-text-wrapper {
        margin-top: 0;
    }
    
    .about-icon {
        display: none;
    }
    
    .slider-container {
        height: auto;
        min-height: 295px;
    }
    
    .slide h3 {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        align-self: center;
        margin-bottom: 8px;
    }
    
    .slide p {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        align-self: center;
        margin-bottom: 16px;
    }
    
    .slide-image {
        max-width: 100%;
        max-height: 180px;
        width: auto;
        height: auto;
        margin-top: 24px;
        object-fit: contain;
        position: relative;
        z-index: 10;
    }
    
    .slide-image-wait {
        max-height: 150px;
    }
    
    .divider {
        margin: 20px 0;
    }
    
    .roulette-section {
        padding: 20px 0;
    }
    
    .roulette-section::before {
        height: 194px;
        top: 0;
    }
    
    .roulette-container {
        min-height: 150px;
        max-width: 100%;
    }
    
    .roulette-spin-track {
        height: 150px;
    }
    
    .roulette-card {
        width: 260px;
        height: 150px;
        padding: 16px;
        flex-shrink: 0;
    }
    
    .roulette-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .roulette-card img {
        max-height: 80px;
    }
    
    .spin-btn {
        margin-top: 32px;
        padding: 12px 32px;
        font-size: 16px;
    }
    
    .modal-content {
        width: calc(100% - 40px);
        max-width: 400px;
        height: auto;
        min-height: 300px;
        padding: 24px 20px;
    }
    
    .modal-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .modal-weapon-name {
        font-size: 14px;
        line-height: 20px;
    }
    
    .modal-image-container {
        margin: 20px 0;
        min-height: 140px;
    }
    
    .modal-weapon-image {
        max-width: 220px !important;
    }
    
    .modal-weapon-image[alt="Sheriff"] {
        max-width: 140px !important;
    }
    
    .modal-weapon-image[alt="Operator"] {
        max-width: 200px !important;
    }
    
    .modal-weapon-image[alt="Vandal"] {
        max-width: 220px !important;
    }
    
    .modal-weapon-image[alt="Melee"] {
        max-width: 160px !important;
    }
    
    .modal-weapon-image[alt="Guardian"] {
        max-width: 220px !important;
    }
    
    .modal-claim-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 200px;
    }
    
    .new-section {
        width: 95%;
        min-height: auto;
        padding: 20px;
    }
    
    .final-container {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }
    
    .quote {
        font-size: 32px;
        line-height: 40px;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-name,
    .profile-desc {
        text-align: center;
    }
    
    .faq-section {
        gap: 8px;
    }
    
    .faq-item {
        padding: 12px;
    }
    
    .footer-content {
        width: 95%;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-nav {
        order: 2;
        flex-direction: column;
        gap: 8px;
    }
    
    .top-btn {
        order: 3;
    }
}

@media (max-width: 480px) {
    header {
        padding-top: 16px;
    }
    
    nav button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero p {
        font-size: 13px;
        line-height: 19px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-image {
        max-width: 85%;
    }
    
    .about-text {
        font-size: 12px;
        line-height: 18px;
    }
    
    .inner-container h2 {
        font-size: 18px;
        line-height: 26px;
    }
    
    .quote {
        font-size: 22px;
        line-height: 30px;
    }
    
    .final-container {
        padding: 16px;
    }
    
    .faq-question {
        font-size: 13px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
}
