/* 1xbetinlogin.click stylesheet
 * Class prefix: v1fe-
 * Palette: #26A69A (teal) | #7CFC00 (lawn green) | #0A0A0A (dark bg)
 *          #7FFF00 (chartreuse accent) | #E0FFFF (light cyan text)
 * Mobile-first: 320-430px canvas; desktop keeps mobile layout centered.
 */

:root {
    --v1fe-bg: #0A0A0A;
    --v1fe-bg-2: #121817;
    --v1fe-bg-3: #182523;
    --v1fe-teal: #26A69A;
    --v1fe-teal-dark: #1c8378;
    --v1fe-lime: #7CFC00;
    --v1fe-chart: #7FFF00;
    --v1fe-cyan: #E0FFFF;
    --v1fe-muted: #9fb8b5;
    --v1fe-border: rgba(38, 166, 154, 0.28);
    --v1fe-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    --v1fe-radius: 14px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background:
        radial-gradient(1200px 600px at 50% -10%, rgba(38, 166, 154, 0.18), transparent 60%),
        radial-gradient(800px 400px at 100% 110%, rgba(127, 255, 0, 0.10), transparent 60%),
        var(--v1fe-bg);
    color: var(--v1fe-cyan);
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--v1fe-lime); text-decoration: none; }
a:hover { color: var(--v1fe-chart); }

/* ============ Layout container (mobile canvas) ============ */
.v1fe-wrap {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0c1311 0%, #0A0A0A 100%);
    min-height: 100vh;
    position: relative;
    box-shadow: var(--v1fe-shadow);
}
.v1fe-main {
    padding: 0 14px 96px; /* bottom padding clears fixed bottom nav */
}

/* ============ Header ============ */
.v1fe-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(18, 24, 23, 0.96));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--v1fe-border);
}
.v1fe-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    min-width: 0;
}
.v1fe-brand img.v1fe-logo {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    object-fit: cover;
    border: 1px solid var(--v1fe-teal);
    box-shadow: 0 0 0 2px rgba(38, 166, 154, 0.18);
}
.v1fe-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.v1fe-brand-name {
    font-weight: 800;
    font-size: 17px;
    color: var(--v1fe-cyan);
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v1fe-brand-tag {
    font-size: 10px;
    color: var(--v1fe-lime);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.v1fe-header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}
.v1fe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 22px;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    color: #061310;
    font-family: inherit;
}
.v1fe-btn-login {
    background: transparent;
    color: var(--v1fe-cyan);
    border: 1px solid var(--v1fe-teal);
}
.v1fe-btn-login:hover { background: rgba(38, 166, 154, 0.14); color: var(--v1fe-cyan); }
.v1fe-btn-register {
    background: linear-gradient(135deg, var(--v1fe-lime), var(--v1fe-chart));
    box-shadow: 0 6px 18px rgba(127, 255, 0, 0.28);
}
.v1fe-btn-register:hover { transform: translateY(-1px); filter: brightness(1.08); }
.v1fe-menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(38, 166, 154, 0.12);
    border: 1px solid var(--v1fe-border);
    color: var(--v1fe-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.v1fe-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--v1fe-cyan);
    position: relative;
}
.v1fe-menu-btn span:before,
.v1fe-menu-btn span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--v1fe-cyan);
}
.v1fe-menu-btn span:before { top: -6px; }
.v1fe-menu-btn span:after { top: 6px; }

/* ============ Mobile expanded menu ============ */
.v1fe-mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: rgba(8, 12, 11, 0.98);
    border-bottom: 1px solid var(--v1fe-border);
    padding: 14px 16px 18px;
    transform: translateY(-130%);
    transition: transform 0.28s ease;
    z-index: 49;
    max-height: 70vh;
    overflow-y: auto;
}
.v1fe-mobile-menu.v1fe-open { transform: translateY(0); }
.v1fe-mobile-menu h4 {
    margin: 12px 0 6px;
    font-size: 11px;
    color: var(--v1fe-lime);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.v1fe-mobile-menu h4:first-child { margin-top: 0; }
.v1fe-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.v1fe-mobile-menu li a {
    display: block;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--v1fe-cyan);
    background: rgba(38, 166, 154, 0.08);
    border: 1px solid var(--v1fe-border);
    font-size: 13px;
}
.v1fe-mobile-menu li a:hover { background: rgba(38, 166, 154, 0.2); color: var(--v1fe-chart); }

/* ============ Hero ============ */
.v1fe-hero {
    position: relative;
    margin: 12px 0 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--v1fe-border);
    background: linear-gradient(135deg, #0e1815 0%, #0A0A0A 70%);
}
.v1fe-hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/ba41feae_1.jpg") center/cover no-repeat;
    opacity: 0.45;
    filter: saturate(1.1);
}
.v1fe-hero-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.92));
}
.v1fe-hero-inner {
    position: relative;
    padding: 22px 16px 20px;
}
.v1fe-hero-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(127, 255, 0, 0.14);
    border: 1px solid rgba(127, 255, 0, 0.4);
    color: var(--v1fe-chart);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
    margin-bottom: 10px;
}
.v1fe-hero h1 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.v1fe-hero h1 .v1fe-accent { color: var(--v1fe-chart); }
.v1fe-hero p {
    margin: 0 0 14px;
    color: var(--v1fe-cyan);
    font-size: 13.5px;
    max-width: 320px;
}
.v1fe-hero-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.v1fe-hero-cta .v1fe-btn { padding: 0 16px; min-height: 40px; }

/* ============ Trust strip ============ */
.v1fe-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 18px;
}
.v1fe-trust-item {
    background: rgba(38, 166, 154, 0.08);
    border: 1px solid var(--v1fe-border);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
}
.v1fe-trust-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--v1fe-chart);
    line-height: 1;
}
.v1fe-trust-label {
    font-size: 10.5px;
    color: var(--v1fe-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 4px;
}

/* ============ Section ============ */
.v1fe-section {
    margin: 0 0 22px;
}
.v1fe-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.v1fe-section-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    position: relative;
    padding-left: 12px;
}
.v1fe-section-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    background: linear-gradient(180deg, var(--v1fe-lime), var(--v1fe-teal));
    border-radius: 4px;
}
.v1fe-section-more {
    font-size: 12px;
    color: var(--v1fe-teal);
}
.v1fe-section-more:hover { color: var(--v1fe-chart); }

/* ============ Tabs ============ */
.v1fe-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 10px;
    margin: 0 -2px 12px;
    scrollbar-width: none;
}
.v1fe-tabs::-webkit-scrollbar { display: none; }
.v1fe-tab {
    flex: 0 0 auto;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--v1fe-border);
    background: rgba(38, 166, 154, 0.07);
    color: var(--v1fe-cyan);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-transform: capitalize;
}
.v1fe-tab.v1fe-tab-active {
    background: linear-gradient(135deg, var(--v1fe-lime), var(--v1fe-chart));
    color: #061310;
    border-color: transparent;
}

/* ============ Game grid ============ */
.v1fe-game-panel { display: none; }
.v1fe-game-panel.v1fe-panel-active { display: block; }
.v1fe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
@media (min-width: 360px) {
    .v1fe-grid { gap: 9px; }
}
.v1fe-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--v1fe-bg-2);
    border: 1px solid var(--v1fe-border);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    aspect-ratio: 1 / 1.18;
    display: flex;
    flex-direction: column;
}
.v1fe-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(38, 166, 154, 0.22);
    border-color: var(--v1fe-teal);
}
.v1fe-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #0c1411;
}
.v1fe-card-name {
    padding: 6px 6px 7px;
    font-size: 11px;
    color: var(--v1fe-cyan);
    text-align: center;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v1fe-card-hot {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(135deg, #ff5a3c, #ff9d2f);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ============ Feature blocks ============ */
.v1fe-features {
    display: grid;
    gap: 10px;
}
.v1fe-feature {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(38, 166, 154, 0.10), rgba(127, 255, 0, 0.04));
    border: 1px solid var(--v1fe-border);
}
.v1fe-feature-ico {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--v1fe-teal), var(--v1fe-teal-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}
.v1fe-feature h3 {
    margin: 0 0 4px;
    font-size: 14.5px;
    color: #fff;
}
.v1fe-feature p {
    margin: 0;
    font-size: 12.5px;
    color: var(--v1fe-muted);
}

/* ============ Promo CTA banner ============ */
.v1fe-promo-banner {
    margin: 0 0 22px;
    padding: 18px 16px;
    border-radius: 16px;
    background:
        radial-gradient(400px 160px at 90% -20%, rgba(127, 255, 0, 0.25), transparent 70%),
        linear-gradient(135deg, #0e1f1b, #0A0A0A);
    border: 1px solid var(--v1fe-border);
    text-align: center;
}
.v1fe-promo-banner h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--v1fe-chart);
}
.v1fe-promo-banner p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--v1fe-cyan);
}

/* ============ Article / SEO content ============ */
.v1fe-article {
    background: rgba(18, 24, 23, 0.6);
    border: 1px solid var(--v1fe-border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
}
.v1fe-article h2 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #fff;
}
.v1fe-article h3 {
    margin: 14px 0 6px;
    font-size: 14.5px;
    color: var(--v1fe-chart);
}
.v1fe-article p {
    margin: 0 0 10px;
    font-size: 13.5px;
    color: var(--v1fe-cyan);
}
.v1fe-article ul {
    margin: 6px 0 10px;
    padding-left: 18px;
}
.v1fe-article li {
    font-size: 13px;
    color: var(--v1fe-cyan);
    margin-bottom: 4px;
}
.v1fe-article a {
    color: var(--v1fe-lime);
    border-bottom: 1px dotted rgba(124, 252, 0, 0.5);
}
.v1fe-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}
.v1fe-pillar {
    background: rgba(38, 166, 154, 0.08);
    border: 1px solid var(--v1fe-border);
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    color: var(--v1fe-cyan);
}
.v1fe-pillar strong { color: var(--v1fe-chart); display: block; margin-bottom: 3px; font-size: 12.5px; }

/* ============ Partners ============ */
.v1fe-partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}
.v1fe-partners img {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 6px;
}

/* ============ Footer ============ */
.v1fe-footer {
    background: #060a09;
    border-top: 1px solid var(--v1fe-border);
    padding: 22px 16px 24px;
}
.v1fe-footer h4 {
    margin: 0 0 8px;
    font-size: 12.5px;
    color: var(--v1fe-chart);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.v1fe-footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.v1fe-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.v1fe-footer li { margin-bottom: 6px; }
.v1fe-footer li a {
    color: var(--v1fe-muted);
    font-size: 12.5px;
}
.v1fe-footer li a:hover { color: var(--v1fe-lime); }
.v1fe-footer-bottom {
    border-top: 1px solid var(--v1fe-border);
    padding-top: 12px;
    font-size: 11.5px;
    color: var(--v1fe-muted);
    text-align: center;
}
.v1fe-disclaimer {
    background: rgba(124, 252, 0, 0.05);
    border: 1px solid rgba(124, 252, 0, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 11.5px;
    color: var(--v1fe-muted);
    margin: 14px 0 0;
}

/* ============ Bottom navigation ============ */
.v1fe-bottomnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    background: linear-gradient(180deg, rgba(14, 20, 19, 0.98), rgba(6, 10, 9, 0.99));
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--v1fe-border);
    z-index: 60;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.v1fe-bottomnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    color: var(--v1fe-muted);
    font-size: 10px;
    font-weight: 600;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
    font-family: inherit;
}
.v1fe-bottomnav-item:hover { color: var(--v1fe-cyan); }
.v1fe-bottomnav-item.v1fe-active { color: var(--v1fe-chart); }
.v1fe-bottomnav-item.v1fe-promo {
    color: #061310;
    background: linear-gradient(135deg, var(--v1fe-lime), var(--v1fe-chart));
    border-radius: 14px;
    margin: 2px 4px;
    box-shadow: 0 4px 14px rgba(127, 255, 0, 0.28);
    transform: translateY(-4px);
    min-height: 48px;
}
.v1fe-bottomnav-item.v1fe-promo:hover { color: #061310; }
.v1fe-bottomnav-ico {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v1fe-bottomnav-ico svg { width: 22px; height: 22px; }
.v1fe-bottomnav-label { font-size: 10px; line-height: 1; }

/* ============ Reveal animation ============ */
.v1fe-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.v1fe-reveal.v1fe-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ Desktop: keep mobile canvas centered ============ */
@media (min-width: 431px) {
    body { background: #050807; }
    .v1fe-wrap { box-shadow: 0 0 60px rgba(0, 0, 0, 0.8); }
    .v1fe-bottomnav { box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6); }
}

/* Visually hidden helper */
.v1fe-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
