body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin: 10px 0;
    letter-spacing: -1px;
    color: #fff;
}

h1 span {
    color: #444; /* Цвет для .site */
}

.status-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: glow-pulse 2s infinite ease-in-out;
}

.description {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.offer-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price-tag {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    background: #252525;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.direct-contact {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #555;
}

.direct-contact a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

input:focus, textarea:focus {
    border-color: #00ff88;
    background: #2a2a2a;
    outline: none;
}

.btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    background: #00ff88;
    transform: translateY(-2px);
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #555;
}

@media (max-width: 480px) {
    .offer-card {
        padding: 20px;
    }
}

.btn-tg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #0088cc; /* Фирменный цвет TG */
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.btn-tg:hover {
    background: #00a2f3;
    transform: scale(1.02);
    color: #fff;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
        opacity: 0.8;
    }
    50% {
        box-shadow: 0 0 15px 2px rgba(0, 255, 136, 0.2);
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
        opacity: 0.8;
    }
}
