:root {
    --primary-blue: #FBFF31;
    --primary-purple: #3E3D3D;
    --primary-green: #CFFF30;
    --bg-dark: #161515;
    --bg-charcoal: #1D1C1C;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border-gray: #3E3D3D;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --slot-card-min-width: 250px;
    --slot-card-height: 200px;
    --slot-card-gap: 24px;


    font-family: 'Mulish', sans-serif;

}

@font-face {
    font-family: 'Unbound';
    src: url('font_green/Unbounded-Bold.woff2') format('woff2');
    font-weight: 900;
}

@font-face {
    font-family: 'Mulish';
    src: url('font_green/Mulish-Regular.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Unbound', sans-serif;
    font-size: 52px;
    font-weight: 900;
}

h2 {
    font-family: 'Unbound', sans-serif;
    font-size: 36px;
    font-weight: 900;
}

h3 {
    font-family: 'Unbound', sans-serif;
    font-size: 24px;
    font-weight: 900;
}

h4 {
    font-family: 'Unbound', sans-serif;
    font-size: 18px;
    font-weight: 900;
}

p {
    font-size: 16px;
    font-weight: 700;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== УТИЛИТЫ ================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Фолбек для браузеров без поддержки */
}

/* Фолбек для браузеров без поддержки background-clip: text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--primary-green));
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    text-transform: uppercase;
    background: var(--primary-blue);
    color: var(--bg-charcoal);
    padding: 14px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-family: "Unbound", sans-serif;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-banner {
    text-transform: uppercase;
    background: linear-gradient(135deg, #4da6ff, #9d7bd6);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background: linear-gradient(135deg, #5eadfc, #a98dda);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    text-transform: uppercase;
    background: #00000050;
    color: var(--text-white);
    padding: 10px 0px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    transition: all 0.3s ease;


}

.btn-secondary:hover {
    background: var(--border-gray);
}

.card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 60px 0px;
    background: linear-gradient(135deg, #00000010, #00000010, #00000010);
}

.section-alt {
    background: var(--bg-charcoal);
}

/* ================== ШАПКА ================== */
.header {
    background: var(--bg-charcoal);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content ul {
    align-items: center;
}

.logo1 {
    display: none;
    align-items: center;
    height: 50px;
    margin-right: 24px;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    margin-right: 24px;
}

.botlogo {
    display: flex;
    align-items: center;
    height: 50px;
    margin-right: 24px;
}

.rightside {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.nav {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.2s ease;
}

.nav a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav.active {
    display: flex;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    background: url("assets_green/icons/burger.svg") center/contain no-repeat;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* когда меню активно */
.mobile-menu.active {
    background: url("assets_green/icons/close.svg") center/contain no-repeat;
}

.mobile-menu:hover {
    opacity: 0.5;
}

/* ================== БАННЕР СЛАЙДШОУ ================== */
.hero {
    position: relative;
    padding: 0px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    margin-bottom: 16px;
    line-height: 1;
    background: var(--primary-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 50px auto 80px;

    overflow: visible;
}

/*.slide {
    overflow: hidden;
    border-radius: var(--border-radius);
    display: none;
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: firebrick;
}*/

.slide {
    overflow: visible;
    border-radius: var(--border-radius);
    display: none;
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-gray);
    transition: all 0.3s ease;
}

.slide.active {
    display: block;
}

.slide.active:hover {
    scale: 102%;
}

.slidetext {
    position: absolute;
    top: 30%;
    left: 24px;
    color: var(--bg-charcoal);
    font-family: 'Unbound', sans-serif;
    font-size: 3em;
    line-height: 1;
    white-space: nowrap;
    z-index: 10;
    text-align: left;
}

.slideimg-container {
    border-radius: var(--border-radius);
    height: 110%;
    width: 50%;
    position: absolute;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}

.slideimg {
    height: 100%;
    position: relative;
    top: 0px;
    left: -10px;
    animation: move 8s infinite alternate ease-in-out;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
    border-radius: 100px;
}

.dot {
    height: 6px;
    width: 80px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--bg-charcoal);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
    padding: 0px 140px
}

.advantages> :last-child {
    grid-column: 1 / -1;
}

.advantage {
    width: 100%;
    text-align: center;
    padding: 30px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.advantage:nth-child(1) .advantage-icon {
    grid-column: 1;
    background: var(--border-gray);
}

.advantage:nth-child(2) .advantage-icon {
    grid-column: 2;
    background: var(--border-gray);
}

.advantage:nth-child(3) .advantage-icon {
    grid-column: 1/ -1;
    background: var(--border-gray);
}

/* ================== ПОПУЛЯРНЫЕ СЛОТЫ ================== */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--slot-card-min-width, 280px), 1fr));
    gap: var(--slot-card-gap, 24px);
    margin-bottom: 40px;
}

.slot-card {
    position: relative;
    height: var(--slot-card-height, 350px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.slot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.slot-content {
    opacity: 0.01;
    position: relative;
    text-align: center;
    height: 100%;
    z-index: 2;
    padding: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(7px);
    display: grid;
    align-items: end;
    transition: all 0.5s ease;
}

.slot-content:hover {
    opacity: 1;
}

.slot-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.slot-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ================== РЕЙТИНГ ================== */
.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
    margin: 24px 140px;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 16px 32px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
}

.stars {
    color: #fbbf24;
}

.overall-rating {
    text-align: center;
    padding: 40px;
    background: var(--bg-charcoal);
    border: 1px solid var(--primary-blue);
    border-radius: var(--border-radius);
    margin: 0px 140px;
}

.overall-rating .score {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--primary-blue);
    font-family: "Unbound", sans-serif;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================== КОМАНДА ================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.team-member,
.team-member2 {
    text-align: center;
    padding: 32px;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-photo {
    border: var(--primary-purple) 3px solid;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

/* ================== ИНФОРМАЦИЯ О КАЗИНО ================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;

}

.info-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
}

.info-icon {
    background: none;
    filter: drop-shadow(0px 10px 10px rgba(255, 255, 255, 0.5));
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.info-text {
    font-size: 28px;
    font-weight: 900;
    background: var(--primary-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================== СПОСОБЫ ОПЛАТЫ ================== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-section {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    padding: 30px;
}

.payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    padding-left: 16px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.paygreen,
.payyell {
    background-color: #10b98120;
    font-weight: 700;
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 8px;
}

.payyell {
    background-color: #fbbf2420;
    color: #fbbf24;
}

/* ================== МОБИЛЬНОЕ ПРИЛОЖЕНИЕ ================== */
.mobcontainer {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.mobbg {
    margin-top: 200px;
    background: var(--primary-blue);
    height: 50%;
    border-radius: 28px;
    display: flex;
    justify-content: center;
}

.mobcontainer img {
    bottom: 0px;
    width: auto;
    height: 80%;
    position: absolute;
    animation: move 8s infinite alternate ease-in-out;
}

.payment-subs {
    padding-bottom: 20px;
}

@keyframes move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(0px, 20px) rotate(-2deg);
    }

    50% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    75% {
        transform: translate(0px, 20px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0);
    }
}

.mobile-app {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-feature-icon {
    filter: drop-shadow(0px 10px 10px rgba(139, 92, 246, 0.5));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.app-button {
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.app-button:hover {
    background: #333;
}

/* ================== FAQ ================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    padding: 16px 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 8px 20px 20px;
    color: var(--text-gray);
    display: none;
}

.faq-answer.show {
    display: block;
}

/* ================== О БРЕНДЕ ================== */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
}

.stats {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.stat {
    width: 100%;
    padding: 16px 12px;
    background: var(--bg-charcoal);
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    filter: drop-shadow(0px 10px 10px rgba(255, 255, 255, 0.3));
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat:nth-child(1) .stat-number {
    color: var(--primary-green);
}

.stat:nth-child(2) .stat-number {
    color: var(--primary-green);
}

.stat:nth-child(3) .stat-number {
    color: var(--primary-green);
}

/* ================== ПОДВАЛ ================== */
.footer {
    background: var(--bg-charcoal);
    border-top: 1px solid var(--border-gray);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.social-link.vk {
    background: #4680c2;
}

.social-link.telegram {
    background: #0088cc;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 30px;
    text-align: center;
    color: var(--text-gray);
}

/* ================== Страница Chicken Royal ================== */

.game-frame-container {
    width: 100%;
    height: 600px;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 40px 0;
}

.payment-table th {
    padding: 16px;
    text-align: left;
    color: rgb(41, 41, 41);
    font-weight: 900;
    background: var(--primary-blue);
}

.payment-table th:nth-child(2),
.payment-table th:nth-child(3),
.payment-table th:nth-child(4) {
    text-align: center;
}

.payment-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-white);
    font-weight: 700;
}

.payment-table td:nth-child(2),
.payment-table td:nth-child(3),
.payment-table td:nth-child(4) {
    text-align: center;
    color: var(--primary-green);
}

.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

/* ================== АДАПТИВНОСТЬ ================== */
@media (max-width: 860px) {

    :root {
        --slot-card-height: 270px;
    }

    .logo1 {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 83px;
        right: 0;
        width: 50%;
        background: var(--bg-charcoal);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding-top: 32px;
        padding-left: 48px;
        padding-bottom: 100%;
    }

    .li3 {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .slide-nav {
        display: none;
    }

    .slide,
    .slide.active {
        height: 450px;
        z-index: -999;
    }

    .slideimg-container {
        height: 70%;
        width: 100%;
        position: relative;
        right: 0px;
        top: 136px;
        overflow: hidden;
        z-index: -998;
    }

    .slidetext {
        text-align: center;
        top: 24px;
        text-align: center;
        /* Настройте для выравнивания по горизонтали */
        font-size: 7vw;
        left: 0px;
        width: 100%;
        margin: 0px auto 0px auto;
        z-index: 999;
    }

    .slide-content {
        width: 100%;
    }

    .slot-content {
        opacity: 1;
        margin-top: 100%;
        padding: 8px;
        background: rgba(0, 0, 0, 0.01);
        backdrop-filter: blur(0px);
    }

    .slot-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .slot-buttons a,
    button {
        width: 100%;
    }

    .slot-content h3 {
        display: none;
    }

    .btn-secondary {
        background: var(--border-gray);
    }

    .section {
        padding: 40px 0;
    }

    .stats {
        gap: 20px;
    }

    .app-buttons {
        flex-direction: column;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    }

    .pp-section {
        padding: 40px 0;
    }

    .pp-content {
        padding: 20px;
    }

    .gp-guides-grid {
        grid-template-columns: 1fr;
    }

    .gp-modal-content {
        margin: 20px;
    }

    .ap-content-section {
        grid-template-columns: 1fr;
    }

    .ap-stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .game-frame-container {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .advantages {
        padding: 0px;
    }

    .rating-grid {
        margin: 24px 0px;
    }

    .overall-rating {
        margin: 0px;
    }
}

@media (max-width: 1126px) {
    .team-member2 {
        display: none;
    }
}

/* ================== АНИМАЦИИ ================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ================== ЗАГОЛОВКИ СЕКЦИЙ ================== */
.section-title {
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: var(--primary-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

::-webkit-scrollbar {
    width: 8px;
    /* Ширина для вертикального скроллбара */
}

/* Фон скроллбара */
::-webkit-scrollbar-track {
    background: var(--bg-charcoal);

}

/* Ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background: var(--border-gray);
    border-radius: 10px;
}

/* Ползунок при наведении */
::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}






/* ================== СТРАНИЦА КОМАНДА ================== */

.tp-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.tp-team-member {
    text-align: center;
    padding: 40px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    transition: var(--transition);
}

.tp-team-member:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tp-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-purple);
}

.tp-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tp-member-role {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tp-member-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tp-member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.tp-skill-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.tp-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tp-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.tp-social-link:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tp-team-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== СТРАНИЦА ПОЛИТИКА КОНФ ================== */

.pp-content {
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    padding: 40px;
    margin-bottom: 40px;
}

.pp-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.pp-content h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 30px 0 15px;
    color: var(--text-white);
}

.pp-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.pp-content ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-gray);
}

.pp-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.pp-last-updated {
    background: var(--border-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 900;
}

.pp-btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.pp-btn-primary:hover {
    transform: translateY(-2px);
}

/* ================== СТРАНИЦА РУКОВОДСТВА ================== */

.gp-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gp-guide-card {
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gp-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gp-guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gp-guide-content {
    padding: 30px;
}

.gp-guide-category {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.gp-guide-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.gp-guide-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gp-guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.gp-guide-difficulty {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gp-difficulty-easy {
    color: var(--primary-green);
}

.gp-difficulty-medium {
    color: #fbbf24;
}

.gp-difficulty-hard {
    color: #ef4444;
}

.gp-quick-start {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 60px;
}

.gp-quick-start h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    background: var(--primary-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gp-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gp-steps-grid a {
    text-decoration: none;
    color: inherit;
}

.gp-step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.gp-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.gp-step-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.gp-step-text {
    flex: 1;
    font-weight: 600;
}

.gp-guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: hidden;
}

.gp-modal-content {
    max-width: 800px;
    margin: 50px auto;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    position: relative;
}

.gp-modal-header {
    line-height: 1.2;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gp-modal-title {
    line-height: 1.2;
    font-size: 28px;
    font-weight: 900;
}

.gp-modal-body {
    margin: 16px 8px 16px 40px;
    max-height: 70vh;
    overflow-y: auto;
}

.gp-modal-content p {
    font-weight: 700;
    padding: 0px 16px 8px 16px;
}

.gp-modal-content ul {
    font-weight: 700;
    list-style: square;
    padding: 0px 16px 8px 32px;
}

.gp-close-modal {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 50px;
    cursor: pointer;
    padding: 5px;
}

/* ================== СТРАНИЦА FAQ ================== */

.fp-faq-category {
    margin-bottom: 40px;
}

.fp-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 20px;
}

.fp-btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.fp-btn-primary:hover {
    transform: translateY(-2px);
}

/* ================== СТРАНИЦА О НАС ================== */

.ap-hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.ap-hero-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.ap-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.ap-stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
}

.ap-stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.ap-stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.ap-content-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.ap-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.ap-content-text h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ap-content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ap-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ap-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.ap-value-item {
    padding: 40px;
    background: var(--bg-charcoal);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: var(--transition);
}

.ap-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ap-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.ap-value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ap-value-description {
    color: var(--text-gray);
    line-height: 1.6;
}