:root {
    --accent: #ff0000;
    --bg-deep: #050505;
    --text-pure: #ffffff;
    --text-dim: #999999;
    --border: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    border-radius: 0 !important;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-pure);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    width: 100vw;
}

.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://empirebay-gta.online/forum-assets/fon.jpg') no-repeat center center;
    background-size: cover;
    z-index: -5;
    filter: brightness(0.25) contrast(1.15);
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 10%, rgba(0,0,0,0.98) 100%);
    z-index: -2;
    pointer-events: none;
}

.top-notif {
    position: fixed;
    top: -160px;
    left: 0;
    width: 100%;
    min-height: 100px;
    background: #0a0a0a;
    color: #ffffff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 5%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-bottom: 5px solid var(--accent);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.top-notif.active {
    transform: translateY(160px);
}

.notif-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.notif-badge {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.notif-main-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notif-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.notif-desc {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notif-close {
    position: absolute;
    right: 5%;
    cursor: pointer;
    font-size: 22px;
    color: #ffffff;
    opacity: 0.2;
    transition: 0.3s;
}

.notif-close:hover {
    opacity: 1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    backdrop-filter: blur(8px);
    transition: height 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.logo-box img {
    height: 42px;
    width: auto;
}

nav {
    display: flex;
    gap: 50px;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--text-pure);
}

nav a.active::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
}

.btn-cabinet {
    background: transparent;
    color: #fff;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
    white-space: nowrap;
}

.btn-cabinet i {
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cabinet:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* How-to Section */
.howto-section {
    padding: 180px 10% 120px 10%;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 70px;
    border-left: 4px solid var(--accent);
    padding-left: 28px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 600px;
    line-height: 1.6;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 100px;
}

.step-card {
    display: flex;
    gap: 40px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border);
    padding: 50px;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.step-card:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.step-content {
    flex: 1;
    z-index: 2;
}

.step-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 25px;
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.step-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
}

.step-details {
    background: rgba(0,0,0,0.5);
    border-left: 3px solid var(--accent);
    padding: 20px;
    margin-bottom: 30px;
}

.step-details p {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 10px;
    line-height: 1.6;
}

.step-details ol, .step-details ul {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.step-details li {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
    line-height: 1.6;
}

.step-warning {
    color: #ff9900 !important;
    font-weight: 600;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(255,153,0,0.2);
}

.step-warning i {
    margin-right: 10px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.setting-label {
    font-weight: 700;
    color: #fff;
    font-size: 13px;
}

.setting-value {
    color: var(--accent);
    font-size: 13px;
}

.btn-step {
    background: #fff;
    color: #000;
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.btn-step:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.03);
}

.btn-play {
    background: var(--accent);
    color: #fff;
}

.btn-play:hover {
    background: #fff;
    color: #000;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 100px;
}

.faq-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.faq-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border);
    padding: 30px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-q {
    background: var(--accent);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    flex: 1;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.faq-a {
    background: rgba(255,255,255,0.1);
    color: var(--text-dim);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    flex: 1;
}

/* Requirements Section */
.requirements-section {
    margin-bottom: 100px;
}

.reqs-header {
    text-align: center;
    margin-bottom: 50px;
}

.reqs-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

.reqs-subtitle {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reqs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.reqs-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.reqs-card:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.reqs-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 30px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.reqs-min {
    background: #666;
    color: #fff;
}

.reqs-rec {
    background: var(--accent);
    color: #fff;
}

.reqs-content {
    margin-top: 20px;
}

.reqs-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.reqs-item:last-child {
    border-bottom: none;
}

.reqs-label {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.reqs-value {
    color: var(--text-dim);
    font-size: 14px;
    text-align: right;
    max-width: 200px;
}

/* Support Section */
.support-section {
    text-align: center;
    background: rgba(255,0,0,0.05);
    border: 1px solid rgba(255,0,0,0.2);
    padding: 60px;
    margin-top: 80px;
}

.support-icon {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 25px;
}

.support-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.support-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-link {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 18px 30px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border);
}

.support-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    left: 7%;
    right: 7%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid var(--border);
    pointer-events: none;
}

footer * {
    pointer-events: auto;
}

.footer-left {
    display: flex;
    gap: clamp(30px, 5vw, 80px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 9px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.social-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: clamp(40px, 4vw, 46px);
    height: clamp(40px, 4vw, 46px);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 17px;
}

.social-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.social-text {
    font-size: 9px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.copyright {
    font-size: 9px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: right;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 15px;
    width: 100%;
}

/* Responsive */
@media (max-width: 1400px) {
    .header-left { gap: 40px; }
    nav { gap: 30px; }
}

@media (max-width: 1366px) {
    header { padding: 0 4%; height: 80px; }
    nav a.active::after { bottom: -25px; }
    .howto-section { padding-left: 7%; padding-right: 7%; }
}

@media (max-height: 800px) {
    header { height: 70px; }
    nav a.active::after { bottom: -22px; }
}

@media (max-width: 1024px) {
    nav { display: none; }
    header { padding: 0 5%; }
    .howto-section { padding: 150px 5% 80px 5%; }
    .step-card { flex-direction: column; padding: 30px; }
    .faq-grid { grid-template-columns: 1fr; }
    .reqs-grid { grid-template-columns: 1fr; }
    .support-links { flex-direction: column; }
    .settings-grid { grid-template-columns: 1fr; }
    footer { position: relative; bottom: 0; left: 0; right: 0; flex-direction: column; align-items: center; gap: 40px; padding: 40px 5%; margin-top: 40px; }
    .footer-left { justify-content: center; width: 100%; }
    .footer-right, .social-block { align-items: center; }
    .copyright { text-align: center; }
}

@media (max-width: 600px) {
    .notif-content { gap: 15px; flex-direction: column; text-align: center; }
    .notif-badge { padding: 5px 10px; font-size: 12px; }
    .notif-title { font-size: 16px; }
    .top-notif.active { transform: translateY(200px); }
    .top-notif { height: auto; padding: 20px 10%; }
    .logo-box img { height: 32px; }
    .btn-cabinet { padding: 10px 15px; font-size: 10px; }
    .btn-cabinet i { padding-right: 10px; margin-right: 10px; }
    .step-card { padding: 20px; }
    .step-number { font-size: 60px; }
    .step-title { font-size: 22px; }
    .faq-grid { grid-template-columns: 1fr; }
    .reqs-grid { grid-template-columns: 1fr; }
    .reqs-card { padding: 25px; }
    .support-section { padding: 30px; }
    .btn-step { width: 100%; justify-content: center; }
}