/* ОБЩИЕ СТИЛИ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px 15px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ШАПКА */
header { margin-bottom: 25px; }
.logo-container { margin-bottom: 15px; }
.main-logo {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 1px solid #333;
}
h1 { 
    font-size: 1.3rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: #fff; 
    margin-bottom: 5px;
}
.subtitle {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.2;
}

/* КНОПКИ */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #222;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.1s ease;
    position: relative;
}

/* Золотые иконки */
.btn i {
    color: #e2b04a;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.btn:active {
    background: #1a1a1a;
    border-color: #e2b04a;
    transform: scale(0.98);
}

/* РАЗДЕЛИТЕЛИ */
.divider {
    margin: 25px 0 15px;
    font-size: 0.7rem;
    color: #444;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.divider::after, .divider::before {
    content: ""; flex: 1; height: 1px; background: #222; margin: 0 15px;
}

/* КАРТОЧКИ (ДЛЯ 12 СТРАНИЦЫ) */
.info-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}
.info-card h3 { color: #e2b04a; margin-bottom: 10px; font-size: 1.1rem; }
.address-text { color: #888; font-size: 0.9rem; margin-bottom: 15px; display: block; }

.contact-link {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    color: #7ab8d3;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid #222;
}
.contact-link i { color: #7ab8d3; margin-right: 10px; }

/* ФУТЕР */
footer {
    margin-top: 30px;
    padding-bottom: 20px;
    font-size: 0.75rem;
    color: #444;
}