body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0f0f0f;
    color: #fff;
    scroll-behavior: smooth;
}

/* ===== Хедер ===== */
.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.8);
}

.landing-logo {
    font-size: 22px;
    font-weight: bold;
}

.landing-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.landing-btn:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
}

/* ===== Главный блок ===== */
.proxy-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.proxy-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.proxy-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proxy-links a {
    display: block;
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.proxy-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* ===== Футер ===== */
.landing-footer {
    text-align: center;
    padding: 20px;
    background: #141414;
    margin-top: auto;
    color: #fff;
}

.proxy-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.proxy-info {
    background: #1a1a1a;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    color: #ddd;
    line-height: 1.6;
    text-align: left;
}

.proxy-info p {
    margin: 10px 0;
    font-size: 16px;
}

.proxy-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.proxy-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proxy-links a {
    display: block;
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.proxy-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}