/* Статические страницы: доставка, реквизиты, контакты, соглашение */
@font-face {
    font-family: 'Ubuntu';
    src: url('../text-style/Ubuntu/Ubuntu-Regular.ttf') format('truetype');
}

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

body {
    background: #050b10;
    color: #e6f7ee;
    font-family: 'Ubuntu', monospace;
    min-height: 100vh;
    position: relative;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

#matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(5, 11, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(12, 148, 136, 0.5);
    height: auto;
    padding: 10px 0;
    position: sticky;
    top: 0;
   
    
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    gap: 20px;
}
.header-socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    text-decoration: none;
    color: #e6f7ee;
    border: 1px solid rgba(100, 240, 163, 0.45);
    background: rgba(15, 23, 42, 0.35);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.social-link:hover {
    background: rgba(100, 240, 163, 0.08);
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.18);
    transform: translateY(-1px);
}

.social-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.72rem;
    color: #0b1120;
    background: linear-gradient(135deg, rgba(100, 240, 163, 0.95), rgba(0, 255, 65, 0.75));
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.18);
}

.social-svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: #0b1120;
}

.social-link--vk .social-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(99, 102, 241, 0.85));
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.16);
}

.social-text {
    opacity: 0.95;
}

@media screen and (max-width: 1200px) {
    nav {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 1rem 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 480px) {
    nav {
        padding: 0.8rem 0;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #64f0a3;
    text-shadow: 0 0 8px rgba(100, 240, 163, 0.8);
    letter-spacing: 3px;
    text-decoration: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 40px;
    flex: 1;
}

@media screen and (max-width: 1200px) {
    .container {
        padding: 2rem 30px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 1.5rem 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 1rem 15px;
    }
}

.page-title {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #e6f7ee;
    text-shadow: 0 0 10px rgba(15, 23, 42, 0.9);
}

.content-card {
    background: radial-gradient(circle at top, #0b1120, #020617);
    border: 1px solid rgba(12, 148, 136, 0.5);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.9);
    line-height: 1.8;
}

.content-card h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #e6f7ee;
    text-shadow: none;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p {
    margin-bottom: 1rem;
    color: #cbd5f5;
}

.content-card ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    color: #e6f7ee;
}

.highlight-box {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(12, 148, 136, 0.5);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6f7ee;
    text-shadow: none;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(30, 64, 175, 0.45);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #cbd5f5;
}

.info-value {
    color: #e6f7ee;
}

.contact-section {
    margin-bottom: 2rem;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6f7ee;
    text-shadow: none;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(30, 64, 175, 0.45);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #cbd5f5;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #e6f7ee;
}

.contact-value a {
    color: #64f0a3;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-value a:hover {
    text-shadow: 0 0 10px rgba(100, 240, 163, 0.6);
}

footer {
    background: rgba(5, 11, 16, 0.9);
    border-top: 1px solid rgba(12, 148, 136, 0.5);
    color: #e6f7ee;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #64f0a3;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px rgba(100, 240, 163, 0.6);
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0b1120, #020617);
    border: 1px solid rgba(100, 240, 163, 0.7);
    border-radius: 6px;
    color: #e6f7ee;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-back:hover {
    background: linear-gradient(135deg, #111827, #020617);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.9);
}

.nav-home-link {
    color: #00ff41;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-home-link:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.static-lead {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.static-list-unindented {
    margin-left: 0;
    list-style-position: inside;
}

.static-intro-centered {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
}

.static-mt-2 {
    margin-top: 2rem;
}

.static-footer-note {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

@media screen and (max-width: 1200px) {
    .logo {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-card h2 {
        font-size: 1.25rem;
    }

    .content-card p {
        font-size: 0.95rem;
    }

    .content-card ul {
        margin-left: 1.5rem;
    }

    .content-card li {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 1.25rem;
    }

    .info-section h2 {
        font-size: 1.25rem;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .info-label,
    .info-value {
        font-size: 0.9rem;
    }

    .info-value {
        word-break: break-word;
    }

    .contact-section h2 {
        font-size: 1.25rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .contact-icon {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .contact-label,
    .contact-value {
        font-size: 0.9rem;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-links {
        gap: 1rem;
    }

    .btn-back {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 1.25rem;
    }

    .content-card h2 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .content-card p {
        font-size: 0.9rem;
    }

    .content-card ul {
        margin-left: 1.25rem;
    }

    .content-card li {
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .info-section {
        margin-bottom: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.1rem;
    }

    .info-row {
        padding: 0.5rem 0;
    }

    .info-label,
    .info-value {
        font-size: 0.85rem;
    }

    .contact-section {
        margin-bottom: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 0.75rem 0;
    }

    .contact-icon {
        font-size: 1.25rem;
    }

    .contact-label,
    .contact-value {
        font-size: 0.85rem;
    }

    footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-links {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .btn-back {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
