/* Адаптивная стилизация для пула пазл-кошельков с более контрастной нейтральной палитрой без градиентов */
:root {
    --bg: #f5f6f7;
    --card: #ffffff;
    --accent: #113fc7;
    --muted: #18334a;
    --glass: rgba(255, 255, 255, 0.4);
    --text: #0a0a0a;
    --highlight: #e9ecef;
}

* {
    box-sizing: border-box
}

html {
    background: var(--bg);
}

body {
    font-family: Inter, system-ui, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    color: var(--text);
    line-height: 1.6;
    min-width: 340px;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 20px;
}

.site-header {
    background: var(--bg);
    backdrop-filter: blur(6px);
    border-bottom: 2px solid var(--accent);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-weight: 700;
    color: var(--accent);
    text-decoration: none
}

.site-nav {
    display: flex;
    gap: 16px
}

.site-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s
}

.site-nav a:hover {
    color: var(--accent)
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--text);
    font-size: 20px
}

.hero {
    padding: 60px 0;
    text-align: center;
    background: var(--highlight);
    border-radius: 14px;
}

.hero h1 {
    font-size: 28px;
    margin: 0 0 10px;
    color: var(--accent)
}

.lede {
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto
}

.actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    justify-content: center
}

.btn {
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    height: 46px;
}

.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px)
}

.btn.ghost {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent)
}

.cards {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;

}

.card {
    background: var(--card);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15)
}

.card h2 {
    margin: 0 0 8px;
    color: var(--accent)
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600
}

.read-more:hover {
    text-decoration: underline
}

.benefits ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 18px
}

.cta {
    background: var(--highlight);
    padding: 28px;
    border-radius: 14px;
    margin: 24px auto;
    text-align: center;
}

.article {
    padding: 28px 0
}

.article h1 {
    margin-top: 0;
    color: var(--accent)
}
.c--accent {
    color: var(--accent)
}

html, body {
    min-height: 100%;
    position: relative;
}

.site-footer {
    width: 100%;
    font-size: 14px;
    border-top: 2px solid var(--accent);
    background: var(--bg);

    border-top: 2px solid var(--accent);
    background: var(--bg);
    margin-top: 24px;
}

.site-footer .container {
    justify-content: space-between;
    align-items: center;
    padding: 0;
    text-align: center;
}

.footer-nav a {
    margin-left: 12px;
    color: var(--muted);
    text-decoration: none
}

.footer-nav a:hover {
    color: var(--accent)
}

/* Stats page styles */
h1 {
    margin-bottom: 6px;
}

.card {
    background: var(--card);
    border: 1px solid #e6e6e6;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.card p, .card h2 {
    height: 78px;
}

.progress {
    height: 20px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
}

.progress > i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    width: 0%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.muted {
    color: #666;
    font-size: 13px;
}

/* Accessibility focus */
a:focus {
    outline: 2px dashed var(--accent);
    outline-offset: 3px
}

.cards td, #puzzles td  {
    white-space: nowrap; /* не переносить текст */
    overflow: hidden; /* обрезать лишнее */
    text-overflow: ellipsis; /* троеточие */
}
td .btc_link {
    max-width: 190px;
}
.btc_link {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}
a.btc_link {
    color: var(--accent);
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* растягивается и заполняет пустое место */
}


.mt-10 {
    margin-top: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}

.mt-24 {
    margin-top: 24px !important;
}
.mb-24 {
    margin-bottom: 24px !important;
}

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

.mb-30 {
    margin-bottom: 30px !important;
}
.fs-12 {
    font-size: 12px;
}

.disabled {
    cursor: default;
    opacity: .5;
    pointer-events: none;
}

.telegram {
    margin: auto;
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}



#threads-select, #puzzleSelect {
    height: 46px;
    text-align: center;
    background: var(--accent);
    color: white;
    border: unset;
    border-radius: 10px;
    vertical-align: top;
    font-size: 16px;
    font-weight: bold;
    width: auto;
    padding: 0px 3px 1px 12px;
}
#puzzleSelect {
    font-size: 16px;
    width: auto;
    padding: 0 10px;
    font-weight: bold;
}


#progress_div {
 display: flex;
}
#progress-bar {
    width: 100%;
    margin-top: 4px;
}
#progress-text {
    padding-left: 10px;
}
#actions {

}
#email-field {
    background: var(--accent);
    border: 0;
    border-radius: 10px;
    color: white;
    height: 46px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
#email-field::placeholder {
    color: #718ad3;
    opacity: 1;
}
.little {
    text-indent: 3px;
    margin-top: -26px;
}

#threads-select, #email-field, #start-btn {
    margin-bottom: 10px;
}

@media (max-width: 1040px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* Responsive */
@media (max-width: 900px) {
    .cards {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .cards {
        grid-template-columns:1fr
    }

    .site-nav {
        position: fixed;
        right: 0;
        top: 56px;
        background: var(--bg);
        padding: 18px;
        flex-direction: column;
        display: none;
        border-left: 2px solid var(--accent)
    }

    .site-nav.open {
        display: flex
    }

    .nav-toggle {
        display: block
    }

    .site-header .container {
        gap: 12px
    }

    .hero h1 {
        font-size: 22px
    }
}

@media (max-width: 438px) {
    #puzzles .btc_link {
        max-width: 112px;
    }
}


/*# sourceMappingURL=style.css.map*/