:root {
    --bg: #181a20;
    --card: #23252e;
    --accent: #2777ff;
    --text: #e0e0e0;
    --text-muted: #888a94;
    --border: #3a3d48;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.65;
    font-size: 16px;
    font-weight: 400;
}

.void-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.void-header {
    background: rgba(24, 26, 32, 0.98);
    border-bottom: 1px solid rgba(39, 119, 255, 0.15);
    padding: 32px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.void-title {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -4px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
}

.void-subtitle {
    font-size: 1.22rem;
    color: var(--accent);
    letter-spacing: 8px;
    font-weight: 500;
    margin-top: -6px;
}

.section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.1rem, 5vw, 2.85rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.section-desc {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.login-section {
    background: linear-gradient(180deg, #181a20 0%, #1f2129 100%);
}

.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.login-visual img,
.order-visual img,
.home-visual img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(39, 119, 255, 0.25);
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.login-visual img:hover,
.order-visual img:hover,
.home-visual img:hover {
    transform: scale(1.02);
}

.login-form-block h2 {
    font-size: 2.35rem;
    margin-bottom: 22px;
    color: var(--accent);
}

.intro-text {
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.login-form input {
    width: 100%;
    background: #1a1c24;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 20px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(39, 119, 255, 0.15);
    outline: none;
}

.captcha-block {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: center;
}

.captcha-img {
    height: 68px;
    border: 1px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
}

.void-btn {
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 16px 42px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.void-btn:hover {
    background: #1e5fd9;
    transform: translateY(-2px);
}

.void-btn.small {
    width: auto;
    padding: 13px 30px;
    font-size: 1rem;
}

.small-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 20px;
    text-align: center;
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 48px 0 70px 0;
}

.mirror-link {
    background: var(--card);
    color: var(--accent);
    padding: 19px 24px;
    font-family: ui-monospace, monospace;
    font-size: 1.16rem;
    text-decoration: none;
    border: 1px solid rgba(39, 119, 255, 0.2);
    transition: all 0.3s ease;
    word-break: break-all;
    line-height: 1.45;
}

.mirror-link:hover {
    border-color: var(--accent);
    background: #2a2d38;
    transform: translateX(8px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin-top: 50px;
}

.stat-item {
    background: var(--card);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
    font-size: 1.04rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.listings-section {
    background: #1c1e26;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.listing-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.listing-img {
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.listing-info {
    padding: 24px;
}

.listing-info h3 {
    font-size: 1.38rem;
    margin-bottom: 10px;
}

.price {
    color: #4ade80;
    font-size: 1.42rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.listing-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.features-block {
    margin-top: 80px;
    background: var(--card);
    padding: 48px;
    border: 1px solid rgba(39, 119, 255, 0.2);
}

.features-block h3 {
    font-size: 1.8rem;
    margin-bottom: 26px;
    color: var(--accent);
    text-align: center;
}

.features-list {
    columns: 2;
    gap: 36px;
    list-style: none;
}

.features-list li {
    margin-bottom: 13px;
    padding-left: 20px;
    position: relative;
    font-size: 1.02rem;
}

.features-list li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 1px;
}

.academy-section {
    background: #181a20;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.academy-card {
    background: var(--card);
    padding: 36px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.academy-card:hover {
    transform: translateY(-4px);
}

.academy-card h3 {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.52rem;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.order-info h2 {
    font-size: 2.65rem;
    margin-bottom: 24px;
    color: var(--accent);
}

.order-desc {
    font-size: 1.13rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.status-bar {
    background: #1a1c24;
    padding: 17px 24px;
    border-left: 5px solid var(--accent);
    font-size: 1.12rem;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.vendor-card {
    background: var(--card);
    padding: 30px;
    border: 1px solid var(--border);
}

.vendor-card h3 {
    color: var(--accent);
    margin-bottom: 18px;
}

.vendor-card ul {
    list-style: none;
}

.vendor-card li {
    margin-bottom: 11px;
    padding-left: 20px;
    position: relative;
}

.vendor-card li:before {
    content: "→";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.rules-note {
    background: #23252e;
    padding: 20px 26px;
    border-left: 4px solid #ef4444;
    color: #f8b4b4;
    font-size: 1rem;
    margin-top: 30px;
}

.void-footer {
    background: #16181f;
    padding: 68px 0 46px;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(39, 119, 255, 0.1);
}

.void-footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.87rem;
    max-width: 760px;
    margin: 38px auto 0;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(2.2rem, 5.5vw, 2.7rem);
    text-align: center;
    margin-bottom: 18px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .login-grid,
    .order-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .section {
        padding: 78px 0;
    }
}

@media (max-width: 640px) {
    .features-list {
        columns: 1;
    }
    
    .features-block {
        padding: 36px 24px;
    }
    
    .academy-card,
    .vendor-card {
        padding: 28px;
    }
}

.section.about-section,
.section.vendor-section,
.section.security-section,
.section.faq-section {
    padding: 90px 0;
}

.section-header h2 {
    font-size: clamp(2.1rem, 5.2vw, 2.85rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 34px;
}

.mt-30 {
    margin-top: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--card);
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.32rem;
    margin-bottom: 14px;
    color: var(--accent);
    line-height: 1.35;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1.03rem;
    line-height: 1.65;
}

.about-section p,
.vendor-section p,
.security-section p {
    max-width: 820px;
    margin: 0 auto 22px auto;
    font-size: 1.04rem;
    color: var(--text-muted);
}

.academy-grid,
.vendor-grid {
    gap: 30px;
}

.listing-desc,
.order-desc {
    line-height: 1.68;
}

.status-bar {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.void-footer .small-text {
    letter-spacing: 0.4px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-item {
        padding: 26px;
    }
    
    .about-section p,
    .vendor-section p,
    .security-section p {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 70px 0;
    }
    
    .faq-item {
        padding: 22px;
    }
}