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

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

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ofont.ru_Proxima%20Nova.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ofont.ru_Proxima%20Nova%20Semi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    box-shadow: none !important;
}

body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    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;
    font-family: 'Proxima Nova', sans-serif;
    color: #E0E0E0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

body::before {
    display: none;
}

body > * {
    position: relative;
    z-index: 1;
}

body > header {
    position: fixed !important;
    z-index: 9999 !important;
}

body.modal-open {
    overflow: hidden;
}

body > * {
    flex-shrink: 0;
}

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

.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;
}

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;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 1px;
    min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 60px;
    padding: 0 350px;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    z-index: 9999 !important;
    overflow: visible;
    background: #0a0a0a;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    border: none;
}

.logo-container,
nav,
.roulette-btn {
    border: none !important;
    outline: none !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-left: 0;
    min-width: 0;
}

.wooting-logo {
    width: 50px;
    height: 50px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Tungsten', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}

nav button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #B0B0B0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

nav button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #DC143C;
    transition: width 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

nav button:hover {
    color: #FFFFFF;
}

nav button:hover::after {
    width: 100%;
}

.roulette-btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #DC143C;
    border: 1px solid #DC143C;
    cursor: pointer;
    color: #FFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 10000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
    white-space: nowrap;
}

.roulette-btn:hover {
    background: #C41E3A;
    border-color: #C41E3A;
}

.hero {
    margin-top: 60px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: visible;
}

.hero::before {
    display: none;
}

.hero::after {
    content: 'TenZ';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive, serif;
    font-size: 400px;
    font-weight: 400;
    color: rgba(220, 20, 60, 0.06);
    letter-spacing: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    text-shadow: 
        0 0 40px rgba(220, 20, 60, 0.04),
        0 0 80px rgba(220, 20, 60, 0.02);
    opacity: 1;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    width: 100%;
    max-width: 1400px;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 10%,
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0.3) 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 10%,
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0.3) 90%,
        transparent 100%
    );
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 1px solid rgba(220, 20, 60, 0.6);
    color: #FFFFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: none;
    border-radius: 0;
    text-shadow: none;
}

.hero h1 {
    margin: 0;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 96px;
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-subtitle {
    margin: 0;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    margin: 0;
    margin-bottom: 24px;
    color: #B0B0B0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
}

.hero-description {
    margin: 0;
    margin-bottom: 40px;
    color: #808080;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #DC143C;
    border: 2px solid #DC143C;
    cursor: pointer;
    color: #FFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.hero-btn:hover {
    background: #C41E3A;
    border-color: #C41E3A;
}

.hero-separator,
.section-separator {
    width: 100%;
    height: 1px;
    background: #1a1a1a;
}


.content-block {
    width: 100%;
    max-width: 1400px;
    min-height: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    box-sizing: border-box;
}

.about-layout {
    display: flex;
    gap: 40px;
    width: 100%;
}

.about-left-column {
    flex: 0 0 50%;
    position: relative;
}

.about-right-column {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.signature-hero {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    background: #000000;
    border-radius: 0;
}

.tenz-signature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    filter: grayscale(100%) contrast(1.1) brightness(1.15);
    background: #000000;
    display: block;
    border-radius: 0;
}

.signature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    padding-bottom: 60px;
    z-index: 2;
    pointer-events: none;
}

.signature-text {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive, serif;
    font-size: 100px;
    font-weight: 400;
    color: #DC143C;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    text-align: center;
}

.signature-edition {
    font-family: 'Tungsten', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-align: center;
}

.signature-designer {
    font-family: 'Tungsten', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #DC143C;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.about-video-section {
    width: 100%;
}

.about-text-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-text-content {
    flex: 1;
}

.about-text-content h2 {
    margin: 0;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-text {
    margin: 0;
    margin-bottom: 20px;
    color: #B0B0B0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.about-text-image {
    flex-shrink: 0;
    width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
}

.tenz-signature-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.signature-box {
    background: linear-gradient(to bottom, #2a2a2a 0%, #2a2a2a 66%, #FFFFFF 66%, #FFFFFF 100%);
    border: 3px solid #666666;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: 100%;
    min-height: 500px;
    box-shadow: 0 0 20px rgba(102, 102, 102, 0.3);
    position: relative;
}

.signature-box .tenz-hero-image {
    width: 110%;
    height: 110%;
    min-height: 550px;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1) translateY(-5%);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) contrast(1.15) brightness(1.08) saturate(1.15);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.divider {
    display: none;
}

.inner-container-2 {
    width: 100%;
    min-height: 400px;
    background: #1a1a1a;
    border: 1px solid #333333;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.features-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(220, 20, 60, 0.08) 0%, rgba(220, 20, 60, 0.04) 30%, rgba(220, 20, 60, 0.02) 50%, rgba(220, 20, 60, 0.01) 70%, transparent 100%);
    filter: blur(30px);
    -webkit-filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.features-section::after {
    display: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-container h2 {
    text-align: center;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.features-container h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DC143C, transparent);
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
    min-height: 500px;
    padding: 60px 0;
}

.feature-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    width: 500px;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(220, 20, 60, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover .feature-card-bg {
    opacity: 1;
}

.feature-card-left {
    transform: rotate(-3deg) translateY(-10px);
    z-index: 1;
}

.feature-card-right {
    transform: rotate(3deg) translateY(10px);
    z-index: 2;
}

.feature-card:hover {
    transform: scale(1.02);
    border-color: rgba(220, 20, 60, 0.3);
}

.feature-card-left:hover {
    transform: rotate(-3deg) translateY(-10px) scale(1.02);
}

.feature-card-right:hover {
    transform: rotate(3deg) translateY(10px) scale(1.02);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
}

.roulette-section {
    padding: 60px 40px;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    position: relative;
    overflow: visible;
    text-align: center;
}

.roulette-section::before {
    display: none;
}

.roulette-section::after {
    display: none;
}

.roulette-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.roulette-header h2 {
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.roulette-header p {
    color: #B0B0B0;
    font-size: 18px;
}

.roulette-container {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 180px;
    overflow-x: hidden;
    overflow-y: visible;
    border: none;
    background: transparent;
    padding: 20px 0;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
}

.roulette-spin-track {
    display: flex !important;
    gap: 12px;
    position: relative;
    left: 0;
    transform: translateX(0);
    height: auto;
    min-height: 180px;
    z-index: 5;
    will-change: transform;
    align-items: flex-start;
    width: max-content;
    flex-wrap: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0;
    padding: 0;
}

.roulette-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    min-height: 220px;
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.roulette-card {
    width: calc((100% - 48px) / 5);
    max-width: 320px;
    min-width: 220px;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.roulette-card::before {
    display: none;
}

.roulette-card[data-rarity="legendary"] {
    border: 2px solid rgba(220, 20, 60, 0.8);
    overflow: hidden;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
}

.roulette-card[data-rarity="ultra"] {
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
}

.roulette-card[data-rarity="legendary"] img {
    width: 70%;
    height: calc(100% - 36px);
    max-height: calc(100% - 36px);
    object-fit: contain;
    object-position: center center;
    margin: 36px auto 0;
    display: block;
    flex-shrink: 0;
}

.roulette-card[data-rarity="ultra"] img {
    width: 70%;
    height: calc(100% - 36px);
    max-height: calc(100% - 36px);
    object-fit: contain;
    object-position: center center;
    margin: 36px auto 0;
    display: block;
    flex-shrink: 0;
}

.weapon-name {
    color: #FFFFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.roulette-card[data-rarity="legendary"] .weapon-name {
    border-bottom: 1px solid rgba(220, 20, 60, 0.8);
}

.roulette-card img {
    width: 70%;
    height: calc(100% - 36px);
    max-height: calc(100% - 36px);
    object-fit: contain;
    object-position: center center;
    margin-top: 36px;
    display: block;
    flex-shrink: 0;
}

.spin-btn {
    display: inline-flex;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #DC143C;
    border: 1px solid #DC143C;
    border-radius: 0;
    cursor: pointer;
    margin: 60px auto 0;
    color: #FFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
}

.spin-btn:hover {
    background: #C41E3A;
    border-color: #C41E3A;
}

.winner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.winner-modal.active {
    display: flex;
}

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

.modal-content {
    position: relative;
    width: 500px;
    min-height: 400px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    z-index: 10001;
    animation: modalAppear 0.4s ease;
    overflow: hidden;
}

.modal-content::before {
    display: none;
}

.modal-content::after {
    display: none;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-title {
    margin: 0;
    margin-bottom: 12px;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.modal-weapon-name {
    margin: 0;
    margin-bottom: 30px;
    color: #DC143C;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.modal-image-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    margin-bottom: 30px;
    z-index: 2;
}

.modal-image-container::before {
    display: none;
}

.modal-weapon-image {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 25px rgba(220, 20, 60, 0.15)) drop-shadow(0 0 50px rgba(220, 20, 60, 0.08));
}

.modal-claim-btn {
    display: inline-flex;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #DC143C;
    border: 1px solid #DC143C;
    cursor: pointer;
    color: #FFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.modal-claim-btn:hover {
    background: #C41E3A;
    border-color: #C41E3A;
}

.modal-claim-btn:active {
    background: #A01830;
    border-color: #A01830;
}

.quote-section {
    padding: 80px 40px 60px;
    background: #0a0a0a;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    margin: 0;
    margin-bottom: 24px;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #333333;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-info {
    text-align: left;
}

.profile-name {
    margin: 0;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.profile-desc {
    margin: 0;
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.5;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 80px;
}

.faq-title {
    text-align: center;
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.faq-item {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    margin-bottom: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item:hover {
    border-color: #2a2a2a;
    background: #121212;
}

.faq-item.active {
    border-color: #2a2a2a;
    background: #121212;
}

.faq-question {
    color: #FFFFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding-right: 50px;
    margin-right: 0;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.faq-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    z-index: 2;
    pointer-events: none;
}

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

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
    margin: 0;
    margin-top: 16px;
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.6;
}

.footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    height: 60px;
    padding: 0 350px;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.footer-nav button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #B0B0B0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.footer-nav button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #DC143C;
    transition: width 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.footer-nav button:hover {
    color: #FFFFFF;
}

.footer-nav button:hover::after {
    width: 100%;
}

.top-btn {
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    color: #B0B0B0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.top-btn:hover {
    color: #FFFFFF;
    border-color: #DC143C;
}

@media (max-width: 1200px) {
    header {
        padding: 0 40px;
    }
    
    .footer {
        padding: 0 40px;
    }
    
    .content-block {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 10px;
    }
    
    .logo-container {
        width: 100%;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    nav {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        gap: 24px;
    }
    
    nav button {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .roulette-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .hero {
        margin-top: 140px;
        min-height: auto;
        padding: 40px 20px 60px;
    }
    
    .hero::after {
        font-size: 120px;
        bottom: 5%;
        filter: blur(4px);
    }
    
    .hero h1 {
        font-size: 52px;
        margin-bottom: 24px;
    }
    
    .hero-badge {
        padding: 10px 24px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .hero-btn {
        padding: 14px 36px;
        font-size: 13px;
    }
    
    .content-block {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .about-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-left-column,
    .about-right-column {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .signature-hero {
        min-height: 400px;
    }
    
    .signature-text {
        font-size: 70px;
    }
    
    .signature-edition {
        font-size: 18px;
    }
    
    .signature-designer {
        font-size: 12px;
    }
    
    .about-text-content h2 {
        font-size: 32px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .roulette-section {
        padding: 50px 15px;
    }
    
    .roulette-header {
        margin-bottom: 40px;
    }
    
    .roulette-header h2 {
        font-size: 36px;
    }
    
    .roulette-header p {
        font-size: 14px;
    }
    
    .roulette-container {
        padding: 15px 0;
    }
    
    .roulette-card {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        height: 180px;
        min-height: 180px;
        max-height: 180px;
    }
    
    .roulette-card[data-rarity="legendary"],
    .roulette-card[data-rarity="ultra"] {
        height: 180px;
        min-height: 180px;
        max-height: 180px;
    }
    
    .roulette-card[data-rarity="legendary"] img,
    .roulette-card[data-rarity="ultra"] img,
    .roulette-card img {
        height: calc(100% - 34px);
        max-height: calc(100% - 34px);
        margin-top: 34px;
    }
    
    .weapon-name {
        font-size: 9px;
        padding: 8px 10px;
        height: 34px;
        letter-spacing: 0.5px;
    }
    
    .roulette-spin-track {
        gap: 10px;
    }
    
    .roulette-center-line {
        min-height: 180px;
    }
    
    .spin-btn {
        padding: 14px 40px;
        font-size: 13px;
        margin-top: 40px;
    }
    
    .quote-section {
        padding: 60px 20px 50px;
    }
    
    .quote {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .avatar-circle {
        width: 90px;
        height: 90px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .profile-desc {
        font-size: 14px;
    }
    
    .faq-section {
        padding: 50px 20px 70px;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 14px;
        padding-right: 40px;
    }
    
    .faq-icon {
        right: 18px;
        top: 18px;
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        font-size: 13px;
        line-height: 1.7;
    }
    
    /* Footer */
    .footer {
        height: auto;
        padding: 25px 20px;
        margin-top: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        position: static;
        transform: none;
        gap: 24px;
    }
    
    .footer-nav button {
        font-size: 11px;
    }
    
    .top-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    /* Modal */
    .modal-content {
        width: 90%;
        max-width: 380px;
        padding: 30px 25px;
        min-height: auto;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-weapon-name {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .modal-weapon-image {
        max-width: 280px;
    }
    
    .modal-claim-btn {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* Мобильные устройства (до 480px) */
@media (max-width: 480px) {
    /* Header */
    header {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    nav {
        gap: 16px;
    }
    
    nav button {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .roulette-btn {
        padding: 10px 20px;
        font-size: 11px;
        max-width: 260px;
    }
    
    /* Hero Section */
    .hero {
        margin-top: 120px;
        padding: 30px 15px 50px;
    }
    
    .hero::after {
        font-size: 80px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 10px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-features {
        font-size: 10px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    /* About Section */
    .content-block {
        padding: 30px 15px;
    }
    
    .signature-hero {
        min-height: 350px;
    }
    
    .signature-text {
        font-size: 56px;
    }
    
    .signature-edition {
        font-size: 16px;
    }
    
    .signature-designer {
        font-size: 11px;
    }
    
    .about-text-content h2 {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 13px;
    }
    
    /* Roulette Section */
    .roulette-section {
        padding: 40px 10px;
    }
    
    .roulette-header h2 {
        font-size: 32px;
    }
    
    .roulette-header p {
        font-size: 13px;
    }
    
    .roulette-card {
        width: 130px;
        min-width: 130px;
        max-width: 130px;
        height: 150px;
        min-height: 150px;
        max-height: 150px;
    }
    
    .roulette-card[data-rarity="legendary"],
    .roulette-card[data-rarity="ultra"] {
        height: 150px;
        min-height: 150px;
        max-height: 150px;
    }
    
    .roulette-card[data-rarity="legendary"] img,
    .roulette-card[data-rarity="ultra"] img,
    .roulette-card img {
        height: calc(100% - 30px);
        max-height: calc(100% - 30px);
        margin-top: 30px;
    }
    
    .weapon-name {
        font-size: 8px;
        padding: 6px 8px;
        height: 30px;
    }
    
    .roulette-spin-track {
        gap: 8px;
    }
    
    .roulette-center-line {
        min-height: 150px;
    }
    
    .spin-btn {
        padding: 12px 32px;
        font-size: 12px;
        margin-top: 30px;
    }
    
    /* Quote Section */
    .quote-section {
        padding: 50px 15px 40px;
    }
    
    .quote {
        font-size: 22px;
    }
    
    .avatar-circle {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .profile-desc {
        font-size: 13px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 40px 15px 60px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .faq-question {
        font-size: 13px;
        padding-right: 35px;
    }
    
    .faq-icon {
        right: 16px;
        top: 16px;
        width: 18px;
        height: 18px;
    }
    
    .faq-answer {
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 20px 15px;
    }
    
    .footer-nav {
        gap: 16px;
    }
    
    .footer-nav button {
        font-size: 10px;
    }
    
    .top-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 25px 20px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-weapon-name {
        font-size: 15px;
    }
    
    .modal-weapon-image {
        max-width: 220px;
    }
    
    .modal-claim-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Feature Modals */
.feature-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-modal.active {
    display: flex;
    opacity: 1;
}

.feature-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    z-index: 10001;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content-wrapper .modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.modal-close-btn:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.5);
    transform: rotate(90deg);
}

.modal-image-section {
    flex: 0 0 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
}

.modal-text-section {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text-section .modal-title {
    color: #FFFFFF;
    font-family: 'Tungsten', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-description {
    color: #B0B0B0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    color: #FFFFFF;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
}

.modal-features li:last-child {
    border-bottom: none;
}

.modal-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #DC143C;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 768px) {
    .modal-content-wrapper {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content-wrapper .modal-content {
        flex-direction: column;
    }
    
    .modal-image-section {
        flex: 0 0 auto;
        padding: 30px;
        max-height: 300px;
    }
    
    .modal-text-section {
        padding: 40px 30px;
    }
    
    .modal-text-section .modal-title {
        font-size: 24px;
    }
    
    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

