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

body {
    font-family: 'Comfortaa', sans-serif;
    background: #141415;
    color: #e6e6e9;
    line-height: 1.6;
    font-size: 15px;
}

:root {
    --k7-bg: rgba(20,22,28,.85);
    --k7-blur: 10px;
    --k7-border: rgba(255,255,255,.06);
    --k7-shadow: 0 10px 30px rgba(0,0,0,.45);
    --k7-text: #fff;
    --k7-muted: rgba(255,255,255,.85);
    --k7-pill: #14161c;
    --k7-cta: #c51f2b;
    --k7-cta-ink: #ff3144;
    --k7-radius: 18px;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    color: #fff;
    -webkit-background-clip: text;
    text-shadow: none;
}

.main_zag {
    font-size: 26px;
    margin-bottom: 5px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 115px;
    height: 65px;
}

.stroke {
    background: #141415;
}

.header_list {
    max-width: 1200px;
    height: 75px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.d_but {
    display: inline-block;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #282829;
    cursor: pointer;
    text-align: center;
}

.m_but {
    display: inline-block;
    padding: 10px 25px;
    background: #02b34c;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 30px 0;
}

.m_but:hover {
    transform: translateY(-2px);
    
}

.k7-strip {
    
}

.k7-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 10px;
}

.k7-nav::-webkit-scrollbar {
    display: none;
}

.k7-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    color: var(--k7-text);
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, transform .12s ease, color .18s ease;
}

.k7-nav__link svg {
    display: block;
}

.k7-label {
    font-weight: 600; 
    color: var(--k7-muted);
}

.k7-nav__link:hover {
    background: var(--k7-pill); 
    transform: translateY(-1px);
}

.k7-nav__link.is-active {
    background: var(--k7-pill); 
    color: var(--k7-text);
}

.k7-nav__link.is-active .k7-label {
    color: var(--k7-text);
}

.k7-mobile-bar {
    display: none; 
    align-items: center; 
    justify-content: center;
    gap: 12px; 
    padding: 8px 20px;
    background: rgba(20,22,28,.9);
    backdrop-filter: saturate(130%) blur(8px);
    border: 1px solid rgba(255,255,255,.06);
}

.k7-mobile-bar__label {
    color: #fff;
}

.k7-burger {
    display: inline-grid; 
    place-items: center;
    width: 44px; 
    height: 44px; 
    border-radius: 12px; 
    text-decoration: none;
    background: linear-gradient(180deg, #1F6BFF 0%, #1040A8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),
            0 8px 18px rgba(16,64,168,.35);
    color: #fff;
}

.k7-mobile-menu {
    position: fixed; 
    inset: 0; 
    z-index: 9999;
    background: rgba(0,0,0,.55);
    opacity: 0; 
    pointer-events: none; 
    transition: opacity .18s ease;
}

.k7-mobile-menu:target {
    opacity: 1; 
    pointer-events: auto;
}

.k7-menu__backdrop {
    position: absolute; 
    inset: 0; 
    display: block;
}

.k7-mobile-menu__panel {
    position: absolute; 
    top: 1.4%; 
    left: 50%; 
    transform: translateX(-50%) translateY(20px);
    width: min(92vw,420px); 
    max-height: 88vh; 
    overflow: auto;
    background: #15171d; 
    color: #fff; 
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
    transition: transform .2s ease;
}

.k7-mobile-menu:target .k7-mobile-menu__panel {
    transform: translateX(-50%) translateY(0);
}

.k7-mobile-menu__head {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 14px 16px; 
    font-weight: 800;
    background: linear-gradient(180deg, #1F6BFF 0%, #1040A8 100%);
    border-bottom: 1px solid rgba(0,0,0,.25);
}

.k7-close {
    display: inline-grid; 
    place-items: center; 
    text-decoration: none;
}

.k7-mobile-nav {
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    padding: 12px;
}

.k7-mobile-nav .k7-nav__link {
    display: flex; 
    align-items: center; 
    gap: 12px;
    padding: 12px 14px; 
    border-radius: 12px;
    background: #1a1d25; 
    text-decoration: none; 
    color: #fff; 
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.06);
}

.k7-mobile-nav .k7-nav__link:hover {
    background: #202430;
}

.k7-mobile-nav .k7-nav__link svg {
    width: 26px; 
    height: 26px; 
    display: block;
}

.k7-mobile-nav .k7-label {
    color: #fff;
}

.monetizing {
    margin-bottom: 20px;
}

.entry p {
    margin-bottom: 20px;
    color: #e6e6e9;
}

p.m-0 {
    margin: 0;
}

.k7-bonusbar {
    display: flex; 
    align-items: center; 
    gap: 16px;
    padding: 7px 15px;
    border-radius: 5px;
    background: linear-gradient(180deg, #1F6BFF 0%, #1040A8 100%);
    margin: 14px 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),
            0 8px 18px rgba(16,64,168,.35);
    color: #fff;
}

.k7-bonusbar__icon {
    flex: 0 0 auto; 
    display: grid; 
    place-items: center;
}

.k7-bonusbar__text {
    min-width: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 2px;
}

.k7-bonusbar__title {
    font-size: 12px; 
    line-height: 1.3;
}

.k7-bonusbar__subtitle {
    font-weight: 700; 
    font-size: 13px; 
    line-height: 1;
}

.k7-bonusbar .app-d {
    margin-left: auto;
}





/* Тюнинг через переменные */
:root{
  --nav-bg:#2a2f3a;
  --nav-sep:rgba(255,255,255,.10);

  /* фильтры цвета иконок (меняй эти две строки — и получишь другой цвет/яркость) */
  --icon-filter-inactive: invert(63%) sepia(5%) saturate(287%) hue-rotate(184deg) brightness(94%) contrast(90%);
  --icon-filter-active: brightness(0) invert(1); /* делает иконку белой */

  --text-muted:#cdd6e6;
  --text-active:#ffffff;

  --grad-active: linear-gradient(180deg,#1F6BFF 0%, #1040A8 100%);
  --shadow-active: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 18px rgba(16,64,168,.35);
}

/* Контейнер-капсула */
.nav1w{
  display:flex; align-items:center; gap:0;
  padding:6px;
  width: 1164px;
  margin: 0 auto;
  background:var(--nav-bg);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  box-shadow: inset 0 4px 12px rgba(0,0,0,.25);
}

/* Пункты */
.nav1w__link{
  position:relative;
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  color:var(--text-muted);
  transition: all .2s ease;
}

/* Разделители */


/* Иконки (через <img>) */
.nav1w__icon{
  width:20px; height:20px; flex:0 0 20px;
  display:inline-flex; align-items:center; justify-content:center;
}
.nav1w__icon img{
  width:20px; height:20px; display:block;
  object-fit:contain;
  filter: var(--icon-filter-inactive);
  transition: filter .2s ease;
  will-change: filter;
}

/* Hover — подсветить иконку и фон */
.nav1w__link:hover:not(.is-active){
  background: rgba(255,255,255,.06);
}

.nav1w__link:hover:not(.is-active) .nav1w__text{
  color:#e8eefc;
}

/* Активный пункт */
.nav1w__link.is-active,
.nav1w__link[aria-current="page"]{
  background: var(--grad-active);
  box-shadow: var(--shadow-active);
  color: var(--text-active);
}
.nav1w__link.is-active .nav1w__icon img,
.nav1w__link[aria-current="page"] .nav1w__icon img{
  filter: var(--icon-filter-active); /* превращаем иконку в белую */
}
.nav1w__link.is-active .nav1w__text,
.nav1w__link[aria-current="page"] .nav1w__text{
  color:#fff;
}

/* Текст */
.nav1w__text{ letter-spacing:.2px; }

/* Адаптив */
@media (max-width:640px){
  .nav1w{ padding:4px; border-radius:14px; }
  .nav1w__link{ padding:9px 14px; border-radius:12px; }
}







.ticker {
    display: block;
    overflow: hidden;
    background: linear-gradient(180deg, #1F6BFF 0%, #1040A8 100%);
    margin: 14px 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),
            0 8px 18px rgba(16,64,168,.35);
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    padding: 0;
    margin-bottom: 10px;
    font-size: 16.6px;
    font-weight: bold;
}

.ticker__inner {
    --tick-icon: 28px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    padding: 15px 14px;
    white-space: nowrap;
    will-change: transform;
    animation: tkr 12s linear infinite;
}

.ticker__inner svg {
    width: var(--tick-icon);
    height: var(--tick-icon);
    display: block;
    flex: 0 0 auto;
}

@keyframes tkr {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}

.info-table tr {
    transition: background 0.3s ease;
}

.info-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.info-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table td:first-child {
    font-weight: 600;
    color: #fff;
    width: 40%;
}

.info-table a {
    background: linear-gradient(
  90deg,
  #02e25d 0%,
  #02c853 40%,
  #02b34c 70%,
  #02e25d 100%
);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.app-section {
    background: linear-gradient(180deg, #1F6BFF 0%, #1040A8 100%);
    margin: 14px 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15),
            0 8px 18px rgba(16,64,168,.35);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    line-height: 1;
    border-radius: 5px;
    gap: 15px;
    padding: 10px 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.app-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

img.app {
    height: 38px;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
}

.app-right {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 2px;
}

.app-section span {
    font-size: 12px;
}

.star-icons-toogle {
    display: flex;
    gap: 5px;
}

.star-icons-toogle li {
    width: 13.36px;
    height: 11.88px;
}

.app-d {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.app-d span {
    text-transform: uppercase;
    font-size: 16.6px;
    font-weight: bolder;
}

.k7-faq__item {
    border-radius: 18px;
    background: transparent;
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}

.k7-faq__item > summary {
    list-style: none;
    cursor: pointer;
    display: flex; 
    align-items: center; 
    gap: 10px;
    padding: 14px 16px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, #1F6BFF 0%, #1040A8 100%);
    border-bottom: 1px solid rgba(0,0,0,.25);
}

.k7-faq__item > summary::-webkit-details-marker {
    display: none;
}

.k7-faq__answer {
    background: #15171d;
    color: #d7dbe5;
    padding: 14px 16px;
}

.k7-faq__item > summary:hover {
    filter: brightness(1.05);
}

footer {
    text-align: center;
    padding: 40px 0;
}

.copu {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 860px) {
    .k7-mobile-bar {
        display: flex;
    }
    .k7-strip {
        display: none;
    }
}

@media (max-width: 920px) {
    .k7-nav {
        border-radius: 20px; 
        padding: 8px;
    }
    .k7-nav__link {
        padding: 9px 12px;
    }
}

@media (max-width: 768px) {
    .main_zag {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .k7-faq__item > summary {
        padding: 12px 14px;
    }
    .k7-faq__answer {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .header_list {
        gap: 20px;
    }
    
    .main_zag {
        font-size: 22px;
    }
    
    .info-table td {
        padding: 8px 8px;
    }

    .monetizing {
        margin-bottom: 25px;
    }

    .info-table {
        font-size: 14px;
    }
}

@media (max-width: 415px) {
    .header_list {
        gap: 0;
        padding: 0;
        justify-content: left;
    }

    .app-d span {
        text-transform: uppercase;
        font-size: 12.6px;
        font-weight: bolder;
    }
}