:root {
    /* Основные цвета */
    --color-primary: #F2F2F2;
    --color-primary-dark: #6B46C1;
    --color-secondary: #9A32C9;
    --color-accent: #FF1493;

    /* Фоновые цвета */
    --bg-primary: #000000;
    --bg-secondary: #000000;
    --bg-dark: #22262f;
    --bg-card: #2a282c;
    --bg-card-hover: #664465;
    --bg-overlay: rgb(84 78 93 / 50%);

    /* Текстовые цвета */
    --text-primary: #ffffff;
    --text-secondary: #ececec;
    --text-muted: #ececec;
    --text-light: #bdc8d5;
    --text-dark: #7a8696;
    --text-button: #fff;

    /* Границы */
    --border-primary: #525863;
    --border-secondary: #53509a;
    --border-card: #6d7a8e;
    --border-overlay: rgb(114 129 152 / 30%);

    /* Градиенты */
    --gradient-primary: linear-gradient(90deg, #712394 0%, #78409e 100%);
    --gradient-text: linear-gradient(135deg, var(--text-primary) 0%, #c5c5c5 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    --gradient-bg: linear-gradient(90deg, #141824, #241f2b);
    --gradient-cta: linear-gradient(90deg, #441859 0%, #530e33 100%);

    /* Тени */
    --shadow-primary: 0 0 25px rgba(154, 50, 201, 0.4);
    --shadow-secondary: rgba(0, 0, 0, 0.3);
    --shadow-card: rgba(0, 0, 0, 0.4);

    /* Статусные цвета */
    --status-new: #3b82f6;
    --status-jackpot: #fbbf24;
    --status-top: #d668e5;

    /* Прочие */
    --color-primary-color: #f2f2f2;
    --color-primary-dark-color: #6b46c1;
    --color-secondary-color: #9a32c9;
    --color-accent-color: #ff1493;
    --bg-primary-color: #000000;
    --bg-secondary-color: #000000;
    --bg-dark-color: #22262f;
    --bg-card-color: #2a282c;
    --bg-card-hover-color: #664465;
    --text-primary-color: #ffffff;
    --text-secondary-color: #ececec;
    --text-muted-color: #ececec;
    --text-light-color: #bdc8d5;
    --text-dark-color: #7a8696;
    --text-button-color: #ffffff;
    --border-primary-color: #525863;
    --border-secondary-color: #53509a;
    --border-card-color: #6d7a8e;
    --status-new-color: #3b82f6;
    --status-jackpot-color: #fbbf24;
    --status-top-color: #d668e5;
}

*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    margin: 0;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
}

main {
    padding: 60px 0;
    background: var(--gradient-cta);
}

.menu {
    display: flex;
    position: relative;
    justify-content: flex-end;
    width: 100%;
    margin: 0 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: var(--color-text);
    transition: 0.3s;
    padding: 5px;
    display: block;
    border-radius: 6px;
    font-size: 13px;
}

.menu ul li a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .menu.active ul {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        width: 100%;
        align-items: center;
        margin-top: 10px;
    }
    
    .menu ul li a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu ul li:last-child a {
        border-bottom: none;
    }
}



.FiMfI {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.UT32k {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.YFSMU {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.mc8h1R {
    font-size: 15px;
    color: #c1c1c1;
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.VB5nF {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.avygn {
    background: var(--gradient-card);
    border-radius: 12px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-card);
    position: relative;
}

.avygn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-card);
}

.kcR4T {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
}

.cWbyFZ {
    background: var(--status-new);
    color: var(--text-primary);
}

.rmEp5m {
    background: var(--status-jackpot);
    color: black;
}

.gFtpPw {
    background: var(--status-top);
    color: var(--text-primary);
}

.Z5Ie6Z {
    width: 100%;
    height: auto;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    position: relative;
}

.y8SZpl {
    padding: 15px;
    text-align: left;
}

.fJFdsY {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.fugCR {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 15px;
}

.fMFoJs {
    display: flex;
    gap: 8px;
}

.EY8A1 {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.SfFR6 {
    background: var(--border-secondary);
    color: var(--text-light);
}

.xtLQnF {
    background: var(--gradient-primary);
    color: var(--text-button);
}

.xtLQnF:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px var(--shadow-primary);
}

.cEE0cV {
    background: #1f2937;
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #3f4e62;
    display: inline-block;
}

.cEE0cV:hover {
    background: #333b46;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .FiMfI {
        padding: 60px 0;
    }
    
    .YFSMU {
        font-size: 40px;
    }
    
    .mc8h1R {
        font-size: 16px;
        max-width: 500px;
    }
    
    .VB5nF {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .avygn {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .FiMfI {
        padding: 50px 0;
    }
    
    .YFSMU {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .mc8h1R {
        font-size: 14px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .VB5nF {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .avygn {
        width: 100%;
        max-width: 320px;
    }
    
    .y8SZpl {
        padding: 12px;
    }
    
    .fJFdsY {
        font-size: 14px;
    }
    
    .fugCR {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .fMFoJs {
        gap: 6px;
    }
    
    .EY8A1 {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .cEE0cV {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .FiMfI {
        padding: 40px 0;
    }
    
    .YFSMU {
        font-size: 28px;
    }
    
    .mc8h1R {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .avygn {
        max-width: 280px;
    }
    
    .y8SZpl {
        padding: 10px;
    }
    
    .fJFdsY {
        font-size: 13px;
    }
    
    .fugCR {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .EY8A1 {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .cEE0cV {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.menu {
    display: flex;
    position: relative;
    justify-content: flex-end;
    width: 100%;
    margin: 0 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: var(--color-text);
    transition: 0.3s;
    padding: 5px;
    display: block;
    border-radius: 6px;
    font-size: 13px;
}

.menu ul li a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    .menu.active ul {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        width: 100%;
        align-items: center;
        margin-top: 10px;
    }
    
    .menu ul li a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu ul li:last-child a {
        border-bottom: none;
    }
}

/* Блок контента: E-mail Бонус */
.bonus-subscribe {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.subscribe-header h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
}
.subscribe-header p {
    margin: 0 0 20px 0;
    font-size: 14px;
    opacity: 0.9;
}
.subscribe-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}
.subscribe-button {
    padding: 12px 24px;
    background: var(--color-secondary);
    color: var(--text-button);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}
.subscribe-note {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
    text-align: center;
}

/* Блок контента: Бонус калькулятор */
.bonus-calculator {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}
.calculator-header {
    margin-bottom: 20px;
}
.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.calculator-header h3 {
    margin-bottom: 5px;
    border: none;
    padding: 0;
}
.calculator-header p {
    opacity: 0.8;
    margin: 0;
}
.calculator-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.calculator-input label {
    font-weight: 700;
    font-size: 14px;
}
.calculator-input input {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 16px;
}
.calculator-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.calculator-button {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--text-button);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.calculator-result {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.result-label {
    font-weight: 500;
    opacity: 0.9;
}
.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

/* Блок контента: Кнопка играть */
.play-now-block {
    background: var(--bg-card-hover);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}
.play-now-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-primary);
}
.play-now-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.play-now-text {
    flex: 1;
}
.play-now-text h3 {
    margin: 0 0 4px 0;
    font-size: 22px;
    font-weight: 700;
}
.play-now-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}
.play-now-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #ffd700;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.play-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}
.play-now-arrow {
    transition: transform 0.2s;
}
.play-now-button:hover .play-now-arrow {
    transform: translateX(4px);
}
@media (max-width: 640px) {
    .play-now-content {
        flex-direction: column;
        text-align: center;
    }
    .play-now-button {
        width: 100%;
        justify-content: center;
    }
}

/* Блок контента: Скачать приложение */
.app-download {
    background: var(--bg-card);
    border: 2px solid var(--bg-card-hover);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.app-download-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.app-icon {
    flex-shrink: 0;
}
.app-info {
    flex: 1;
}
.app-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}
.app-info p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: var(--text-light);
}
.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.app-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #212529;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, background 0.2s;
}
.app-button:hover {
    transform: translateY(-2px);
    background: #495057;
}
.app-button-ios {
    background: #000;
}
.app-button-android {
    background: var(--color-accent);
    color: #000;
}
.app-button-android:hover {
    background: #2fc370;
}
@media (max-width: 640px) {
    .app-download-content {
        flex-direction: column;
        text-align: center;
    }
    .app-buttons {
        justify-content: center;
    }
}

/* Block: Шапка сайта 1 (Group: Header) */
header {
        display: flex;
        height: 72px;
        width: 100%;
        background: var(--bg-dark);
        align-items: center;
        justify-content: center;
    }

.JSO6zi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    padding: 0 10px;
    margin: 0 auto;
}

.l6YwVD img {
    display: flex;
    max-width: 100%;
    height: 40px;
    margin: 10px 0;
}

.menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
    }
    
.menu a:hover {
    color: var(--color-accent);
}

/* Block: Первый экран 4 (Group: First Screen) */
.YmOWT {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.YmOWT::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        color-mix(in srgb, var(--status-top) 8%, transparent) 0%, 
        transparent 30%,
        color-mix(in srgb, var(--color-accent) 8%, transparent) 100%);
    pointer-events: none;
    z-index: 0;
}

.sJgamS {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.djZo2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.Ic8jJ {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    width: fit-content;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Kfpdw {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.P29yk {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.giZln {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

.hg2YwM {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.X85oK {
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.oRmNH {
    background: var(--gradient-primary);
    color: var(--text-button);
    box-shadow: 0 6px 20px var(--shadow-primary);
}

.oRmNH::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.oRmNH:hover::before {
    left: 100%;
}

.oRmNH:hover {
    box-shadow: 0 10px 30px color-mix(in srgb, var(--status-top) 60%, transparent);
    transform: translateY(-3px);
}

.YqbG3g {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--color-secondary);
}

.YqbG3g:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--color-secondary) 40%, transparent);
}

.zCzsQ {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.pj2WQC {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.tRKzTD {
    width: 18px;
    height: 18px;
    color: var(--status-top);
}

.nN7uoT {
    font-weight: 700;
    color: var(--text-primary);
}

.BOSPDL {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.C1d8Y {
    position: relative;
    max-width: 580px;
    width: 100%;
}

.C1d8Y::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0.15;
    z-index: 0;
    filter: blur(30px);
}

.C1d8Y::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.QvLSF {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px var(--shadow-card);
    border: 2px solid var(--border-card);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .sJgamS {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .djZo2 {
        align-items: center;
    }
    
    .P29yk {
        font-size: 40px;
    }
    
    .hg2YwM {
        justify-content: center;
    }
    
    .zCzsQ {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .YmOWT {
        min-height: auto;
        padding: 50px 0;
    }
    
    .P29yk {
        font-size: 32px;
    }
    
    .giZln {
        font-size: 16px;
    }
    
    .hg2YwM {
        flex-direction: column;
        width: 100%;
    }
    
    .X85oK {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .P29yk {
        font-size: 28px;
    }
    
    .giZln {
        font-size: 14px;
    }
    
    .X85oK {
        padding: 16px 28px;
        font-size: 14px;
    }
}

/* Block: Блок преимуществ 1 (Group: Преимущества) */
.Tifh62 {
    padding: 60px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.Tifh62::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        color-mix(in srgb, var(--status-top) 5%, transparent) 50%,
        transparent 100%);
    pointer-events: none;
}

.ZNaOs {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.OEgQul {
    text-align: center;
    margin-bottom: 48px;
}

.FZe98H {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m7gnc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.FH2jT {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.IWP3I {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.IWP3I::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.IWP3I:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-card);
    border-color: var(--color-secondary);
}

.IWP3I:hover::before {
    transform: scaleX(1);
}

.KXespZ {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    padding: 14px;
    background: var(--bg-card-hover);
    border-radius: 12px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.KXespZ svg {
    width: 100%;
    height: 100%;
}

.MBGmz5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.rEXTc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.LsXZD {
    font-size: 32px;
    font-weight: 700;
    color: var(--status-top);
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .FH2jT {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .Tifh62 {
        padding: 40px 0;
    }
    
    .FZe98H {
        font-size: 28px;
    }
    
    .m7gnc {
        font-size: 16px;
    }
    
    .FH2jT {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .FZe98H {
        font-size: 24px;
    }
    
    .IWP3I {
        padding: 24px 20px;
    }
}

/* Block: Статья 3 (Group: Article) */
.article-content {
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 1280px;
    margin: 32px auto 40px;
    padding: 32px 24px 28px;
}

.article-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.article-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 28px 0 10px;
}

.article-content p {
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
}

.article-content ul,
.article-content ol {
    margin: 0 0 16px 18px;
    padding-left: 0;
}

.article-content li {
    margin: 0 0 8px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.article-content img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-card);
    margin: 10px 0 16px;
}

.mzFjX {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
}

.article-content th {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.article-content td {
    padding: 12px;
    border-top: 1px solid var(--border-secondary);
    color: var(--text-muted);
    font-size: 14px;
}

.article-content tr:nth-child(even) td {
    background: var(--bg-card-hover);
}

/* Block: Футер 3 (платежки) (Group: Footer) */
footer {
    background: var(--bg-secondary);
    padding: 30px 0 30px;
    border-top: 1px solid var(--border-primary);
}

.c3TLR {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.WFRVW {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 21px;
    margin: 10px 0;
}

.m4GeV {
    display: flex;
    column-gap: 20px;
    width: 100%;
    justify-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px 0;
}

.m4GeV .B0ump {
    display: flex;
    height: 60px;
    align-items: center;
}

.Yq5DC img, .ZJbm5 img, .fXjve img, .yPMfP img, .vfWcq img, .ghBOC img, .CqdGa0 img, .ies3DY img {
    height: 30px;
}

.V8Gw8 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    border-top: 1px solid var(--border-primary);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.rS2it {
    color: var(--text-dark);
    font-size: 13px;
}

.ZUDnmy {
    background: var(--bg-secondary);
    padding: 32px 0 28px;
    border-top: 1px solid var(--border-primary);
}

.gQvej {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

.tFmdBa {
    font-size: 13px;
    color: var(--text-light);
}

.UMYy0Z {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dffMU2 {
    margin: 0;
    line-height: 1.6;
}

.TNI6D strong {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.TNI6D p {
    margin: 0;
    line-height: 1.6;
    font-size: 13px;
    color: var(--text-light);
}

.QtRLV {
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-primary);
}

.oVVCZu {
    padding-left: 0;
    padding-top: 8px;
}

.oVVCZu .c3TLR {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.oVVCZu .WFRVW {
    justify-content: center;
    font-size: 16px;
    margin: 0 0 10px;
}

.oVVCZu .m4GeV {
    padding: 8px 0 0;
    justify-content: center;
    gap: 14px 22px;
}

.oVVCZu .B0ump img {
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.oVVCZu .B0ump img:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.UgRUM {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.UgRUM li {
    margin: 0;
}

.UgRUM a {
    text-decoration: none;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.UgRUM a:hover {
    color: var(--color-accent);
}

.wi1Gg {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid var(--border-secondary);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .gQvej {
        row-gap: 24px;
    }

    .QtRLV {
        padding-right: 0;
        border-right: none;
        margin-bottom: 8px;
    }

    .oVVCZu {
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .gQvej {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 18px;
    }

    .tFmdBa {
        text-align: left;
    }

    .V8Gw8 {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        gap: 10px;
        text-align: center;
    }

    .QtRLV {
        margin-bottom: 4px;
    }

    .oVVCZu .WFRVW {
        justify-content: flex-start;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .oVVCZu .m4GeV {
        justify-content: flex-start;
        gap: 10px 16px;
        padding-top: 4px;
    }

    .oVVCZu .B0ump {
        min-width: 72px;
    }

    .vNqEF {
        justify-content: flex-start;
        width: 100%;
    }
}

/* Уникальные поведенческие стили */
@keyframes wEgQZbeE_bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes XlIzmFve_bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Применение анимаций к элементам */
article, section, .content, [class*='content'], [class*='article'], [class*='section'] { animation: wEgQZbeE_bounceIn 0.6s ease 0.2s both; }
h1, h2, h3, h4, h5, h6 { animation: wEgQZbeE_bounceIn 0.6s ease 0.3s both; }
p, li, .text, [class*='text'] { animation: XlIzmFve_bounceIn 0.6s ease 0.4s both; }


/* Hover эффекты применяются ко всем ссылкам и кнопкам */
a:hover, button:hover, .btn:hover, [role='button']:hover { transform: scale(1.03); transition: all 0.3s ease; }

/* Hover эффекты для карточек и элементов */
.card:hover, .item:hover, [class*='card']:hover, [class*='item']:hover { transform: scale(1.03); transition: all 0.3s ease; }



/* Уникальные transition эффекты */
a, button, .btn, input, select, textarea { transition: all 0.5s ease; }

/* Transition для специфичных свойств */
.card, .item, [class*='card'], [class*='item'] { transition: transform, background-color 0.5s ease; }



