:root {
    --primary-background: #F9F5FF;
    --secondary-background: #F4EBFF;
    --accent-color: #7F56D9;
    --primary-brand-color: #9E77ED;
    --text-primary: #2D1B4E;
    --text-secondary: #6941C6;
    --text-muted: #9E77ED !important;
    --card-bg: #FFFFFF;
    --border-color: #E9D7FE;
    --success: #32D583;
    --shadow-interactive: rgba(127, 86, 217, 0.15);
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-background);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

* {
    box-sizing: border-box;
}

.fructaraxit-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.text-muted {
    color: #9E77ED !important;
}

img {
    max-width: 100%;
    height: auto;
}

button,
.btn {
    transition: all 0.4s ease-out;
}

@media (max-width: 768px) {
    :root {
        --hero-title-size: 2rem;
    }
}

/* ===== header ===== */
.fructaraxit-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 15px rgba(127, 86, 217, 0.08);
    transition: all 0.4s ease;
    border-bottom: 1px solid #E9D7FE;
}

.fructaraxit-header.header-scrolled {
    padding-block: 0.25rem;
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.15);
}

.fructaraxit-header .navbar {
    padding-block: 0.75rem;
}

.fructaraxit-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.fructaraxit-header .navbar-brand img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.fructaraxit-header .brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #7F56D9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.fructaraxit-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2D1B4E !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.fructaraxit-header .nav-link:hover,
.fructaraxit-header .nav-link.active {
    color: #7F56D9 !important;
}

.fructaraxit-header .navbar-toggler {
    border: none;
    color: #7F56D9;
    font-size: 1.75rem;
    padding: 0.25rem;
}

.fructaraxit-header .navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid #9E77ED;
}

@media (max-width: 991.98px) {
    .fructaraxit-header .navbar-toggler {
        display: block !important;
    }
    .fructaraxit-header .navbar-collapse {
        display: none;
    }
    .fructaraxit-header .navbar-collapse.show {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .fructaraxit-header .navbar-toggler {
        display: none !important;
    }
}

.fructaraxit-header .dropdown-menu {
    border: 1px solid #E9D7FE;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(127, 86, 217, 0.1);
    background-color: #FFFFFF;
    padding: 0.5rem;
}

.fructaraxit-header .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    color: #2D1B4E;
    transition: all 0.3s ease;
}

.fructaraxit-header .dropdown-item:hover {
    background-color: #F4EBFF;
    color: #7F56D9;
}

.fructaraxit-header .btn-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #9E77ED, #7F56D9);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 86, 217, 0.3);
}

.fructaraxit-header .btn-cta-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(127, 86, 217, 0.4);
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .fructaraxit-header .navbar-collapse {
        background-color: #FFFFFF;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
        border: 1px solid #E9D7FE;
    }

    .fructaraxit-header .nav-item {
        border-bottom: 1px solid #F4EBFF;
    }

    .fructaraxit-header .nav-item:last-child {
        border-bottom: none;
    }

    .fructaraxit-header .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        background-color: #F9F5FF;
    }
}

/* ===== hero ===== */
.fructaraxit-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2D1B4E;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fructaraxit-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fructaraxit-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 27, 78, 0.4) 0%, rgba(45, 27, 78, 0.8) 100%);
    z-index: 2;
}

.fructaraxit-hero__container {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 60px;
}

.fructaraxit-hero__content-box {
    animation: heroFadeIn 1s ease-out forwards;
}

.fructaraxit-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.fructaraxit-hero__lead {
    font-size: 1.125rem;
    color: #F4EBFF;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fructaraxit-hero__btn {
    background-color: #7F56D9;
    color: #FFFFFF;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(127, 86, 217, 0.3);
}

.fructaraxit-hero__btn:hover {
    background-color: #9E77ED;
    color: #FFFFFF;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(127, 86, 217, 0.5);
}

.fructaraxit-hero__btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(233, 215, 254, 0.3);
    backdrop-filter: blur(5px);
}

.fructaraxit-hero__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-color: #E9D7FE;
}

.fructaraxit-hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #FFFFFF;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 767px) {
    .fructaraxit-hero__title {
        font-size: 1.75rem;
    }

    .fructaraxit-hero__lead {
        font-size: 1rem;
    }

    .fructaraxit-hero__actions {
        width: 100%;
    }

    .fructaraxit-hero__btn,
    .fructaraxit-hero__btn-secondary {
        width: 100%;
    }
}

/* ===== languages ===== */
.fructaraxit-languages {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fructaraxit-languages .fructaraxit-section-title {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: #2D1B4E;
}

.fructaraxit-languages .fructaraxit-section-desc {
    font-size: 1rem;
    color: #6941C6;
    line-height: 1.6;
}

.fructaraxit-languages .fructaraxit-lang-card {
    background-color: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.05);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.fructaraxit-languages .fructaraxit-lang-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 86, 217, 0.15);
}

.fructaraxit-languages .fructaraxit-lang-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #F4EBFF;
    border-radius: 16px;
}

.fructaraxit-languages .fructaraxit-lang-icon-wrapper i {
    font-size: 1.75rem;
    color: #7F56D9;
}

.fructaraxit-languages .fructaraxit-lang-h3 {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.fructaraxit-languages .fructaraxit-lang-list li {
    color: #2D1B4E;
    font-size: 0.95rem;
}

.fructaraxit-languages .fructaraxit-lang-list i {
    color: #32D583;
    font-size: 1.1rem;
}

.fructaraxit-languages .fructaraxit-cta-btn {
    background-color: #7F56D9;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
    border: none;
}

.fructaraxit-languages .fructaraxit-cta-btn:hover {
    background-color: #6941C6;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(127, 86, 217, 0.25);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .fructaraxit-languages .fructaraxit-section-title {
        font-size: 1.5rem;
    }

    .fructaraxit-languages .fructaraxit-section-desc {
        font-size: 0.9rem;
    }
}

/* ===== accessibility ===== */
.accessibility-settings {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.accessibility-settings__title {
    color: #2D1B4E;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.accessibility-settings__subtitle {
    color: #6941C6;
    max-width: 600px;
    line-height: 1.6;
}

.accessibility-card {
    background: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessibility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 86, 217, 0.12);
}

.accessibility-card__icon {
    width: 48px;
    height: 48px;
    background-color: #F4EBFF;
    border-radius: 12px;
    color: #7F56D9;
    font-size: 1.5rem;
}

.accessibility-card__title {
    color: #2D1B4E;
    font-weight: 700;
    font-size: 1.25rem;
}

.accessibility-card__text {
    color: #6941C6;
    font-size: 0.95rem;
    line-height: 1.5;
}

.accessibility-btn {
    background-color: #F4EBFF;
    color: #6941C6;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.accessibility-btn:hover {
    background-color: #E9D7FE;
    color: #2D1B4E;
}

.accessibility-btn.active {
    background-color: #7F56D9;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.3);
}

.accessibility-btn-primary {
    background-color: #7F56D9;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.accessibility-btn-primary:hover {
    background-color: #6941C6;
    transform: scale(1.02);
    color: #FFFFFF;
}

.accessibility-btn-outline {
    background-color: transparent;
    color: #7F56D9;
    border: 2px solid #E9D7FE;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.accessibility-btn-outline:hover {
    background-color: #F4EBFF;
    border-color: #7F56D9;
}

.key-cap {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 2px solid #E9D7FE;
    border-bottom-width: 5px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #2D1B4E;
    font-size: 1.2rem;
    transition: all 0.1s ease;
}

.accessibility-btn.active .ph-circle {
    color: #FFFFFF;
}

.accessibility-btn.active i::before {
    content: "\eabb";
}

@media (max-width: 767.98px) {
    .accessibility-settings__title {
        font-size: 1.5rem;
    }

    .accessibility-card {
        padding: 24px;
    }

    .control-preview {
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .key-cap {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== community ===== */
.fructaraxit-community {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.fructaraxit-community__title {
    color: #2D1B4E;
    font-weight: 800;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

.fructaraxit-community__subtitle {
    color: #6941C6;
    font-size: 1.1rem;
    line-height: 1.6;
}

.fructaraxit-community__card {
    background-color: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 24px;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    box-shadow: 0 4px 15px rgba(127, 86, 217, 0.05);
}

.fructaraxit-community__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.15);
}

.fructaraxit-community__icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #F4EBFF;
    color: #7F56D9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.fructaraxit-community__card-title {
    color: #2D1B4E;
    font-weight: 700;
    font-size: 1.25rem;
}

.fructaraxit-community__card-text {
    color: #6941C6;
    font-size: 0.95rem;
    line-height: 1.5;
}

.fructaraxit-community__cta-box {
    background: linear-gradient(135deg, #9E77ED 0%, #7F56D9 100%);
}

.fructaraxit-community__cta-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.fructaraxit-community__btn {
    background-color: #FFFFFF !important;
    color: #7F56D9 !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fructaraxit-community__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background-color: #F4EBFF !important;
}

@media (max-width: 767px) {
    .fructaraxit-community__title {
        font-size: 1.75rem;
    }

    .fructaraxit-community__subtitle {
        font-size: 1rem;
    }

    .fructaraxit-community__cta-title {
        font-size: 1.25rem;
    }
}

/* ===== secrets ===== */
.fructaraxit-secrets .transition-transform {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fructaraxit-secrets .hover\:scale-110:hover {
    transform: scale(1.1);
}

.fructaraxit-secrets .cursor-pointer {
    cursor: pointer;
}

.fructaraxit-secrets .blur-xl {
    filter: blur(24px);
}

.fructaraxit-secrets .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fructaraxit-secrets .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(127, 86, 217, 0.15) !important;
}

.fructaraxit-secrets .btn-primary {
    transition: all 0.3s ease;
}

.fructaraxit-secrets .btn-primary:hover {
    background-color: #6941C6 !important;
    transform: scale(1.05);
}

.fructaraxit-secrets .js-hint-item.active .ph-caret-down {
    transform: rotate(180deg);
}

.fructaraxit-secrets .js-hint-item.active {
    border-color: #7F56D9 !important;
}

/* ===== rules ===== */
.fructaraxit-rules {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.fructaraxit-rules__title {
    color: #2D1B4E;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.fructaraxit-rules__subtitle {
    color: #6941C6;
    font-size: 1.1rem;
    line-height: 1.6;
}

.fructaraxit-rules__card {
    background-color: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.05);
}

.fructaraxit-rules__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 86, 217, 0.15);
}

.fructaraxit-rules__icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #F4EBFF;
    color: #7F56D9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.fructaraxit-rules__card-title {
    color: #2D1B4E;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.fructaraxit-rules__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fructaraxit-rules__list li {
    color: #2D1B4E;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.fructaraxit-rules__list li::before {
    content: "•";
    color: #9E77ED;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.fructaraxit-rules__penalties {
    background-color: #F4EBFF;
    border: 1px solid #E9D7FE;
}

.fructaraxit-rules__penalties-title {
    color: #2D1B4E;
    font-weight: 800;
    font-size: 1.75rem;
}

.fructaraxit-rules__penalties-text {
    color: #6941C6;
    font-size: 1rem;
    line-height: 1.7;
}

.fructaraxit-rules__penalty-badge {
    background-color: #FFFFFF;
    color: #7F56D9;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #E9D7FE;
}

.fructaraxit-rules__penalty-badge--danger {
    background-color: #FFF1F0;
    color: #D92D20;
    border-color: #FDA29B;
}

@media (max-width: 768px) {
    .fructaraxit-rules__title {
        font-size: 1.75rem;
    }

    .fructaraxit-rules__subtitle {
        font-size: 1rem;
    }

    .fructaraxit-rules__card {
        padding: 1.5rem;
    }
}

/* ===== grid-categories ===== */
.grid-categories-block {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.grid-categories-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #2D1B4E;
    font-size: 1.75rem;
}

.grid-categories-subtitle {
    color: #6941C6;
    font-size: 1rem;
    max-width: 500px;
}

.btn-filter {
    background-color: #FFFFFF;
    border: 1px solid #E9D7FE;
    color: #6941C6;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-filter:hover {
    background-color: #F4EBFF;
    border-color: #9E77ED;
    color: #7F56D9;
    transform: translateY(-2px);
}

.btn-filter.active {
    background-color: #7F56D9;
    border-color: #7F56D9;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.2);
}

.category-card {
    background: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(127, 86, 217, 0.15);
    border-color: #9E77ED;
}

.card-img-link {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.card-content .badge {
    background-color: #F4EBFF;
    color: #7F56D9;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    width: fit-content;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.card-title a {
    text-decoration: none;
    color: #2D1B4E;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #7F56D9;
}

.btn-card-action {
    background-color: #7F56D9;
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-card-action:hover {
    background-color: #6941C6;
    color: #FFFFFF;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.25);
}

@media (max-width: 767px) {
    .grid-categories-title {
        font-size: 1.25rem;
    }

    .grid-categories-subtitle {
        font-size: 0.875rem;
    }

    .card-content {
        padding: 1.25rem;
    }
}

/* ===== footer ===== */
.fructaraxit-footer {
    background-color: #F9F5FF;
    padding: 60px 0 30px;
    color: #2D1B4E;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid #E9D7FE;
}

.fructaraxit-footer .footer-logo {
    max-width: 50px;
    height: auto;
    border-radius: 8px;
}

.fructaraxit-footer .footer-intro-text {
    font-size: 0.95rem;
    color: #6941C6;
    line-height: 1.6;
    max-width: 250px;
}

.fructaraxit-footer .footer-heading {
    font-weight: 800;
    font-size: 1.25rem;
    color: #2D1B4E;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.fructaraxit-footer .footer-link {
    color: #6941C6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.fructaraxit-footer .footer-link:hover {
    color: #7F56D9;
    padding-left: 5px;
}

.fructaraxit-footer .footer-contact-list i {
    color: #7F56D9;
    font-size: 1.2rem;
}

.fructaraxit-footer .footer-wa-btn {
    background-color: #7F56D9;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.2);
}

.fructaraxit-footer .footer-wa-btn:hover {
    background-color: #9E77ED;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.fructaraxit-footer .footer-divider {
    border-color: #E9D7FE;
    opacity: 1;
}

.fructaraxit-footer .footer-copyright-text {
    color: #9E77ED;
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .fructaraxit-footer {
        padding: 40px 0 20px;
        text-align: center;
    }

    .fructaraxit-footer .footer-intro-text {
        max-width: 100%;
    }

    .fructaraxit-footer .footer-contact-list li {
        justify-content: center;
    }

    .fructaraxit-footer .footer-link:hover {
        padding-left: 0;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-area {
  font-family: 'Inter', sans-serif;
  color: #2D1B4E;
  line-height: 1.6;
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E9D7FE;
}

.policy-content-area h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #7F56D9;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.policy-content-area p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.policy-content-area ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.policy-content-area li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.policy-content-area a {
  color: #7F56D9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-content-area a:hover {
  color: #9E77ED;
  text-decoration: underline;
}

.policy-content-area strong {
  color: #7F56D9;
  font-weight: 700;
}

@media (max-width: 767px) {
  .policy-content-area {
    padding: 16px;
  }
  .policy-content-area h2 {
    font-size: 16px;
    margin-top: 1.5rem;
  }
  .policy-content-area p,
  .policy-content-area li {
    font-size: 14px;
    hyphens: auto;
  }
}

/* ===== PAGE: terms ===== */
.policy-content-area { font-family: 'Inter', sans-serif; color: #2D1B4E; line-height: 1.6; padding: 24px; max-width: 1000px; margin: 0 auto; background: #FFFFFF; border-radius: 24px; box-shadow: 0 8px 30px rgba(127, 86, 217, 0.05); } .policy-content-area h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #7F56D9; margin-bottom: 8px; font-size: 2.5rem; letter-spacing: -0.02em; } .policy-content-area .last-updated { color: #9E77ED; font-size: 0.9rem; margin-bottom: 40px; font-weight: 600; } .policy-content-area h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #2D1B4E; margin-top: 32px; margin-bottom: 16px; font-size: 1.5rem; display: flex; align-items: center; gap: 12px; } .policy-content-area p { margin-bottom: 16px; color: #4A3E66; } .policy-content-area ul { list-style: none; padding-left: 0; margin-bottom: 24px; } .policy-content-area ul li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: #4A3E66; } .policy-content-area ul li i { color: #7F56D9; margin-top: 4px; font-size: 1.1rem; } .policy-content-area a { color: #7F56D9; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .policy-content-area a:hover { color: #9E77ED; text-decoration: underline; } .policy-content-area .terms-section { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid #E9D7FE; } .policy-content-area .terms-section:last-of-type { border-bottom: none; } .policy-content-area .contact-list li i { color: #9E77ED; } @media (max-width: 767.98px) { .policy-content-area { padding: 20px; border-radius: 0; } .policy-content-area h1 { font-size: 18px !important; } .policy-content-area h2 { font-size: 16px !important; } .policy-content-area h3 { font-size: 14px !important; } .policy-content-area p, .policy-content-area li { font-size: 14px; line-height: 1.5; hyphens: auto; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-block { padding: 4rem 1rem; background-color: #F9F5FF; font-family: 'Inter', sans-serif; } .policy-content-area { max-width: 850px; margin: 0 auto; background: #FFFFFF; padding: 3rem; border-radius: 24px; border: 1px solid #E9D7FE; box-shadow: 0 10px 30px rgba(127, 86, 217, 0.05); } .policy-content-area h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #2D1B4E; font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1.25rem; letter-spacing: -0.02em; border-left: 4px solid #7F56D9; padding-left: 1rem; } .policy-content-area p { color: #2D1B4E; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1rem; } .policy-content-area ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .policy-content-area ul li { position: relative; color: #2D1B4E; margin-bottom: 0.75rem; padding-left: 1.5rem; line-height: 1.6; } .policy-content-area ul li:not(:has(i))::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 8px; background-color: #9E77ED; border-radius: 50%; } .policy-content-area ul li:has(i) { padding-left: 0; } .policy-content-area a { color: #7F56D9; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .policy-content-area a:hover { color: #6941C6; text-decoration: underline; } @media (max-width: 768px) { .policy-content-block { padding: 2rem 1rem; } .policy-content-area { padding: 1.5rem; border-radius: 16px; } .policy-content-area h2 { font-size: 1.1rem; margin-top: 1.5rem; padding-left: 0.75rem; } .policy-content-area p, .policy-content-area ul li { font-size: 0.9rem; } }

/* ===== PAGE: cookies ===== */
.policy-content-area { font-family: 'Inter', sans-serif; color: #2D1B4E; line-height: 1.6; padding: 24px; max-width: 100%; word-wrap: break-word; box-sizing: border-box; } .policy-content-area h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #7F56D9; font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -0.02em; } .policy-content-area h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #2D1B4E; font-size: 1.75rem; margin-top: 40px; margin-bottom: 16px; border-left: 4px solid #9E77ED; padding-left: 16px; } .policy-content-area p { margin-bottom: 20px; font-size: 1rem; color: #2D1B4E; } .policy-content-area ul { list-style: none; padding-left: 0; margin-bottom: 24px; } .policy-content-area ul li { display: flex; align-items: flex-start; margin-bottom: 16px; font-size: 1rem; } .policy-content-area ul li i { color: #7F56D9; font-size: 1.25rem; margin-right: 12px; margin-top: 4px; flex-shrink: 0; } .policy-content-area ul li strong { color: #7F56D9; margin-right: 5px; } .policy-content-area a { color: #7F56D9; text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .policy-content-area a:hover { color: #9E77ED; text-decoration: underline; } .policy-content-area .policy-action-box { margin-top: 48px; text-align: center; } .policy-content-area .policy-btn { background: #7F56D9; color: #FFFFFF; border: none; padding: 12px 32px; border-radius: 50px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease; cursor: pointer; display: inline-block; box-shadow: 0 4px 15px rgba(127, 86, 217, 0.2); } .policy-content-area .policy-btn:hover { background: #9E77ED; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3); } @media (max-width: 768px) { .policy-content-area { padding: 16px; width: 100%; max-width: 100%; box-sizing: border-box; overflow-wrap: break-word; word-wrap: break-word; } .policy-content-area h1 { font-size: 1.5rem; margin-bottom: 16px; } .policy-content-area h2 { font-size: 1.15rem; margin-top: 24px; margin-bottom: 12px; padding-left: 12px; } .policy-content-area p { font-size: 0.95rem; margin-bottom: 14px; line-height: 1.6; overflow-wrap: break-word; word-wrap: break-word; } .policy-content-area ul { margin-bottom: 18px; width: 100%; } .policy-content-area ul li { display: flex; flex-direction: row; align-items: flex-start; flex-wrap: wrap; margin-bottom: 14px; font-size: 0.95rem; line-height: 1.6; overflow-wrap: break-word; word-wrap: break-word; word-break: normal; width: 100%; } .policy-content-area ul li i { display: inline-flex; font-size: 1.1rem; margin-right: 10px; margin-top: 2px; flex-shrink: 0; } .policy-content-area ul li strong { display: inline; font-size: 0.95rem; } .policy-content-area .policy-btn { width: 100%; padding: 14px; font-size: 0.95rem; box-sizing: border-box; } } @media (max-width: 480px) { .policy-content-area { padding: 12px; } .policy-content-area h1 { font-size: 1.35rem; } .policy-content-area h2 { font-size: 1.05rem; padding-left: 10px; } .policy-content-area p, .policy-content-area ul li { font-size: 0.9rem; } .policy-content-area ul li i { font-size: 1rem; margin-right: 8px; } }

/* ===== PAGE: privacy-policy list fix ===== */
.privacy-policy-list ul, .policy-content-area ul:has(li > strong) { list-style: none; padding-left: 0; margin-bottom: 20px; }
.policy-content-area ul:has(li > strong) li { display: flex; align-items: baseline; flex-wrap: nowrap; margin-bottom: 10px; font-size: 1rem; line-height: 1.5; }
.policy-content-area ul:has(li > strong) li:not(:has(i))::before { content: '•'; color: #9E77ED; font-size: 0.8rem; margin-right: 6px; flex-shrink: 0; line-height: 1; }
.policy-content-area ul:has(li > strong) li strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 40%; margin-right: 6px; flex-shrink: 0; color: #7F56D9; font-weight: 700; }
.policy-content-area ul:has(li > strong) li { overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 768px) {
  .policy-content-area ul:has(li > strong) li {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    margin-bottom: 16px;
  }
  .policy-content-area ul:has(li > strong) li i {
    margin-bottom: 4px;
  }
  .policy-content-area ul:has(li > strong) li strong {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-right: 0;
    margin-bottom: 4px;
    display: inline;
  }
  .policy-content-area ul:has(li > strong) li {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    width: 100%;
  }
  /* terms-of-use: иконка и текст в одну строку */
  .policy-content-area ul:has(li > i + strong) li,
  .policy-content-area ul:has(li > i + strong) li:has(i) {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 12px;
  }
  .policy-content-area ul:has(li > i + strong) li i {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .policy-content-area ul:has(li > i + strong) li strong {
    margin-bottom: 0;
    margin-right: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    flex: 1;
  }
  /* cookies-policy: иконка + заголовок + описание — иконка и заголовок в первой строке, описание переносится */
  .policy-content-area ul:has(li > i + strong) li:has(i) {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .policy-content-area ul:has(li > i + strong) li:has(i) > i {
    margin-bottom: 0;
  }
  .policy-content-area ul:has(li > i + strong) li:has(i) > strong {
    flex: 0 1 auto;
    margin-right: 4px;
  }
}

/* ===== PAGE: game-modes ===== */
.game-modes-section {
  background-color: #F9F5FF;
  font-family: 'Inter', sans-serif;
}

.game-modes-section .game-modes-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #2D1B4E;
  letter-spacing: -0.02em;
}

.game-modes-section .featured-game-block {
  background: #FFFFFF;
  border: 1px solid #E9D7FE;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(127, 86, 217, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.game-modes-section .featured-info {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.game-modes-section .featured-info .badge.bg-accent-light {
  display: inline-block;
  margin-bottom: 20px;
}

.game-modes-section .featured-info h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D1B4E;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.game-modes-section .featured-info p {
  font-size: 19px;
  line-height: 1.6;
  color: #6941C6;
  margin-bottom: 32px;
}

.game-modes-section .featured-info .btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 40px;
}

.game-modes-section .game-iframe-wrapper {
  background: #000;
  min-height: 400px;
}

.game-modes-section .fullscreen-control-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.game-modes-section .badge.bg-accent-light {
  background-color: #F4EBFF;
  color: #7F56D9;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.game-modes-section .gm-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.game-modes-section .gm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(127, 86, 217, 0.15) !important;
}

.game-modes-section .gm-card-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.game-modes-section .gm-card:hover .gm-card-img {
  transform: scale(1.05);
}

.game-modes-section .gm-card-title {
  color: #2D1B4E;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.game-modes-section .card-text {
  color: #6941C6;
  line-height: 1.6;
}

.game-modes-section .btn-primary {
  background-color: #7F56D9;
  border-color: #7F56D9;
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.2s ease;
}

.game-modes-section .btn-primary:hover {
  background-color: #6941C6;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(127, 86, 217, 0.3);
}

.game-modes-section .btn-outline-primary {
  color: #7F56D9;
  border-color: #7F56D9;
  font-weight: 600;
}

.game-modes-section .btn-outline-primary:hover {
  background-color: #F4EBFF;
  color: #6941C6;
  border-color: #6941C6;
}

@media (max-width: 768px) {
  .game-modes-section .game-modes-main-title {
    font-size: 1.5rem;
  }
  .game-modes-section .game-iframe-wrapper iframe {
    height: 300px !important;
  }
}

/* ===== PAGE: encyclopedia ===== */
.encyclopedia-section { background-color: #F9F5FF; font-family: 'Inter', sans-serif; } .encyclopedia-section .encyclopedia-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: #2D1B4E; font-size: 2.5rem; letter-spacing: -0.02em; } .encyclopedia-section .encyclopedia-subtitle { max-width: 700px; color: #6941C6; font-size: 1.1rem; line-height: 1.6; } .encyclopedia-section .search-wrapper .search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #9E77ED; font-size: 1.25rem; } .encyclopedia-section .search-input { background-color: #FFFFFF; border: 1px solid #E9D7FE; border-radius: 100px; padding: 0.75rem 1rem 0.75rem 3rem; color: #2D1B4E; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(127, 86, 217, 0.05); } .encyclopedia-section .search-input:focus { border-color: #7F56D9; box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1); outline: none; } .encyclopedia-section .filter-chip { background-color: #FFFFFF; border: 1px solid #E9D7FE; color: #6941C6; font-weight: 600; padding: 0.6rem 1.5rem; border-radius: 100px; transition: all 0.3s ease; } .encyclopedia-section .filter-chip:hover { background-color: #F4EBFF; border-color: #9E77ED; } .encyclopedia-section .filter-chip.active { background-color: #7F56D9; color: #FFFFFF; border-color: #7F56D9; box-shadow: 0 4px 12px rgba(127, 86, 217, 0.3); } .encyclopedia-section .encyclopedia-card { background: #FFFFFF; border: 1px solid #E9D7FE; border-radius: 24px; overflow: hidden; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease; text-decoration: none; position: relative; } .encyclopedia-section .encyclopedia-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(127, 86, 217, 0.15); } .encyclopedia-section .encyclopedia-card__link-wrapper { text-decoration: none; display: block; } .encyclopedia-section .encyclopedia-card__image-container { position: relative; width: 100%; height: 240px; overflow: hidden; } .encyclopedia-section .encyclopedia-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .encyclopedia-section .encyclopedia-card:hover .encyclopedia-card__img { transform: scale(1.08); } .encyclopedia-section .encyclopedia-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: #2D1B4E; font-size: 1.25rem; transition: color 0.3s ease; line-height: 1.3; } .encyclopedia-section .encyclopedia-card:hover .encyclopedia-card__title { color: #7F56D9; } .encyclopedia-section .encyclopedia-card__meta { font-size: 0.85rem; font-weight: 500; } .encyclopedia-section .encyclopedia-card__desc { font-size: 0.95rem; line-height: 1.5; hyphens: auto; } .encyclopedia-section .encyclopedia-card__btn { background: linear-gradient(135deg, #9E77ED 0%, #7F56D9 100%); color: #FFFFFF; font-weight: 600; border-radius: 100px; border: none; padding: 0.8rem 1.5rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .encyclopedia-section .encyclopedia-card__btn:hover { background: linear-gradient(135deg, #7F56D9 0%, #6941C6 100%); color: #FFFFFF; transform: scale(1.02); box-shadow: 0 8px 20px rgba(127, 86, 217, 0.3); } @media (max-width: 767.98px) { .encyclopedia-section .encyclopedia-title { font-size: 1.75rem; } .encyclopedia-section .encyclopedia-subtitle { font-size: 1rem; } .encyclopedia-section .encyclopedia-card__image-container { height: 200px; } }

/* ===== PAGE: guides ===== */
.guides-section {
  background-color: #F9F5FF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.guides-section__title {
  color: #2D1B4E;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.guides-section__subtitle {
  color: #6941C6;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.guides-filter .form-control {
  padding: 0.75rem 1rem;
  border-color: #E9D7FE;
  font-family: 'Inter', sans-serif;
}

.guides-filter .form-control:focus {
  box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.15);
  border-color: #9E77ED;
}

.guides-filter .input-group-text {
  border-color: #E9D7FE;
  color: #7F56D9;
}

.guide-card {
  background: #FFFFFF;
  border: 1px solid #E9D7FE;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(127, 86, 217, 0.15);
}

.guide-card__img-link {
  height: 200px;
  overflow: hidden;
}

.guide-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.guide-card:hover .guide-card__img {
  transform: scale(1.1);
}

.guide-card__title a {
  color: #2D1B4E;
  font-weight: 700;
  transition: color 0.3s ease;
}

.guide-card__title a:hover {
  color: #7F56D9;
}

.guide-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card .btn-primary {
  background-color: #7F56D9;
  border-color: #7F56D9;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guide-card .btn-primary:hover {
  background-color: #6941C6;
  border-color: #6941C6;
  transform: scale(1.05);
}

.badge {
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .guides-section__title {
    font-size: 1.75rem;
  }
}

/* ===== PAGE: about ===== */
.about-project-section {
  padding: 80px 0;
  background-color: #F9F5FF;
  font-family: 'Inter', sans-serif;
}

.about-project-section h2,
.about-project-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #2D1B4E;
  letter-spacing: -0.02em;
}

.about-project-section .about-project-title {
  font-size: 2.5rem;
  line-height: 1.2;
}

.about-project-section .about-project-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6941C6;
}

.about-project-section .about-project-main-img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(127, 86, 217, 0.15);
  transition: transform 0.4s ease-out;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-project-section .about-project-main-img:hover {
  transform: scale(1.02);
}

.about-project-section .btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-project-section .btn-primary {
  background-color: #7F56D9;
  border: none;
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(127, 86, 217, 0.3);
}

.about-project-section .btn-primary:hover {
  background-color: #9E77ED;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(127, 86, 217, 0.4);
}

.about-project-section .btn-outline-secondary {
  border: 2px solid #E9D7FE;
  color: #7F56D9;
  background: #FFFFFF;
}

.about-project-section .btn-outline-secondary:hover {
  background-color: #F4EBFF;
  border-color: #7F56D9;
  color: #7F56D9;
  transform: translateY(-2px);
}

.about-project-section .about-project-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #E9D7FE;
  transition: all 0.4s ease;
}

.about-project-section .about-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(127, 86, 217, 0.1);
}

.about-project-section .about-project-card-icon {
  font-size: 2.5rem;
  color: #7F56D9;
  background: #F4EBFF;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.about-project-section .about-project-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.about-project-section .about-project-card-text {
  font-size: 0.95rem;
  color: #6941C6;
  margin-bottom: 0;
}

.about-project-section .about-project-extra-content {
  background: #FFFFFF;
  border-radius: 30px;
  border: 1px solid #E9D7FE;
}

.about-project-section .about-project-secondary-img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-project-section {
    padding: 40px 0;
  }
  .about-project-section .about-project-title {
    font-size: 1.75rem;
  }
  .about-project-section .about-project-main-img {
    height: 250px;
  }
  .about-project-section .about-project-actions {
    width: 100%;
  }
  .about-project-section .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== about-project contact form ===== */
.about-contact-form-section {
  background-color: #F9F5FF;
  font-family: 'Inter', sans-serif;
}

.about-contact-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #7F56D9;
  box-shadow: 0 12px 40px rgba(127, 86, 217, 0.15);
  position: relative;
  overflow: hidden;
}

.about-contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #9E77ED, #7F56D9, #9E77ED);
}

.about-contact-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #2D1B4E;
  letter-spacing: -0.02em;
}

.about-contact-form-subtitle {
  font-size: 1.05rem;
  color: #6941C6;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about-contact-form .form-control {
  border-radius: 12px;
  border: 1px solid #E9D7FE;
  padding: 14px 16px;
  font-size: 1rem;
  color: #2D1B4E;
  background-color: #F9F5FF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-contact-form .form-control:focus {
  border-color: #7F56D9;
  box-shadow: 0 0 0 0.2rem rgba(127, 86, 217, 0.15);
  background-color: #FFFFFF;
}

.about-contact-form .form-floating > label {
  color: #9E77ED;
  font-weight: 500;
}

.about-contact-submit-btn {
  background: linear-gradient(135deg, #9E77ED, #7F56D9);
  color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 16px 48px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(127, 86, 217, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.about-contact-submit-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(127, 86, 217, 0.45);
  background: linear-gradient(135deg, #7F56D9, #6941C6);
  color: #FFFFFF;
}

.about-contact-submit-btn:active {
  transform: translateY(-1px) scale(1.01);
}

@media (max-width: 768px) {
  .about-contact-form-card {
    padding: 24px 20px;
  }
  .about-contact-form-title {
    font-size: 1.5rem;
  }
  .about-contact-form-subtitle {
    font-size: 0.95rem;
  }
  .about-contact-submit-btn {
    width: 100%;
    padding: 14px;
  }
}

/* ===== about-project thank you modal ===== */
.about-thankyou-modal {
  border-radius: 24px;
  border: none;
  box-shadow: 0 20px 60px rgba(127, 86, 217, 0.25);
  overflow: hidden;
}

.about-thankyou-modal .modal-body {
  background: #FFFFFF;
}

.about-thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4EBFF, #E9D7FE);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-thankyou-icon i {
  font-size: 2.5rem;
  color: #7F56D9;
}

.about-thankyou-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #2D1B4E;
  letter-spacing: -0.02em;
}

.about-thankyou-text {
  font-size: 1.05rem;
  color: #6941C6;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.about-thankyou-close-btn {
  background: linear-gradient(135deg, #9E77ED, #7F56D9);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 15px rgba(127, 86, 217, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-thankyou-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(127, 86, 217, 0.4);
  color: #FFFFFF;
}

.comment-container {
    font-family: 'Plus Jakarta Sans', sans-serif;
    animation: slideIn 0.4s ease-out;
}

.comment-card {
    background: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.08);
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(127, 86, 217, 0.15);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.avatar-primary {
    background: linear-gradient(135deg, #9E77ED, #7F56D9);
}

.comment-author {
    color: #2D1B4E;
    font-weight: 800;
    font-size: 1.125rem;
}

.comment-date {
    color: #9E77ED;
    font-size: 0.875rem;
}

.comment-text {
    color: #2D1B4E;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.btn-action {
    background: none;
    border: none;
    color: #6941C6;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.btn-action:hover {
    color: #7F56D9;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reply-comment {
    position: relative;
}

.reply-comment::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 50%;
    width: 2px;
    background: #E9D7FE;
    border-radius: 0 0 0 10px;
}

.reply-card {
    background: #F4EBFF !important;
    border: 1px solid #E9D7FE;
    box-shadow: none !important;
}

.avatar-secondary {
    background: linear-gradient(135deg, #7F56D9, #6941C6);
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
}

.badge-dev {
    background: #7F56D9;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reply-card .comment-text {
    font-size: 0.95rem;
}


/* ===== PAGE TEMPLATE: game-modes-items ===== */
.fructaraxit-detail-page {
    background-color: #F9F5FF;
    font-family: 'Inter', sans-serif;
}

.detail-hero {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFFFF;
}

.detail-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.detail-hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    color: #FFFFFF;
}

.breadcrumb-item a {
    color: #F4EBFF;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #FFFFFF;
}

.detail-card-main {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E9D7FE;
    box-shadow: 0 8px 30px rgba(127, 86, 217, 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6941C6;
    font-size: 0.9rem;
    font-weight: 600;
}

.meta-item i {
    font-size: 1.2rem;
    color: #7F56D9;
}

.content-text {
    color: #2D1B4E;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.detail-game-section .iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.detail-game-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fullscreen-bar {
    background: #1A0D2E;
    border-bottom: 1px solid #2D1B4E;
}

.btn-fullscreen {
    background: #7F56D9;
    color: #FFFFFF;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-fullscreen:hover {
    background: #9E77ED;
}

.sidebar-widget {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E9D7FE;
    box-shadow: 0 4px 15px rgba(127, 86, 217, 0.05);
}

.widget-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: #2D1B4E;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.btn-sidebar-cta {
    background: linear-gradient(135deg, #9E77ED, #7F56D9);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.btn-sidebar-cta:hover {
    transform: translateY(-3px);
    color: #FFFFFF;
}

.btn-wa-sidebar {
    background-color: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.btn-mail-sidebar {
    background-color: #7F56D9;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.sidebar-list a {
    color: #6941C6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.sidebar-list a:hover {
    color: #7F56D9;
}


.comment-container {
    animation: fadeIn 0.5s ease-out;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
}

.avatar-primary {
    background: #7F56D9;
}

.avatar-secondary {
    background: #9E77ED;
}

.comment-card {
    background: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 16px;
}

.reply-card {
    background: #F9F5FF;
}

.comment-author {
    font-weight: 700;
    color: #2D1B4E;
}

.comment-date {
    font-size: 0.8rem;
    color: #9E77ED;
}

.comment-text {
    color: #2D1B4E;
}

.badge-dev {
    background: #7F56D9;
    color: #FFFFFF;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.btn-action {
    background: none;
    border: none;
    color: #6941C6;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-action:hover,
.btn-action.active {
    color: #7F56D9;
}

.btn-submit-comment {
    background: #7F56D9;
    color: #FFFFFF;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit-comment:hover {
    background: #9E77ED;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .detail-hero__title {
        font-size: 1.75rem;
    }

    .reply-comment {
        ms-3 !important;
    }
}

/* ===== PAGE TEMPLATE: encyclopedia-items ===== */
.fructaraxit-detail {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.fructaraxit-detail__article {
    border: 1px solid #E9D7FE;
}

.fructaraxit-detail__meta {
    font-size: 0.9rem;
    color: #6941C6;
    border-bottom: 1px solid #F4EBFF;
    padding-bottom: 1rem;
}

.meta-item i {
    color: #7F56D9;
    font-size: 1.2rem;
}

.fructaraxit-detail__content-text h2 {
    color: #2D1B4E;
    font-weight: 800;
    font-size: 1.75rem;
}

.fructaraxit-detail__content-text p {
    color: #2D1B4E;
    line-height: 1.6;
}

.custom-list {
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2D1B4E;
}

.custom-list li::before {
    content: '\e184';
    font-family: 'Phosphor-Bold';
    position: absolute;
    left: 0;
    top: 0;
    color: #7F56D9;
    font-size: 1rem;
}

.fructaraxit-detail__cta {
    background: #F4EBFF;
    border: 2px dashed #7F56D9;
}

.btn-cta-primary {
    background-color: #7F56D9;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #9E77ED;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background-color: transparent;
    border: 2px solid #7F56D9;
    color: #7F56D9;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #7F56D9;
    color: #FFFFFF;
}

.sidebar-widget {
    border: 1px solid #E9D7FE;
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #7F56D9 0%, #9E77ED 100%);
}

.bg-purple-gradient .btn-cta-header {
    background: #FFFFFF !important;
    color: #7F56D9 !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: 2px solid #FFFFFF;
}

.bg-purple-gradient .btn-cta-header:hover {
    background: #F4EBFF !important;
    color: #7F56D9 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.widget-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: #2D1B4E;
}

.sidebar-widget .widget-title.text-white {
    color: #FFFFFF;
}

.related-text {
    color: #2D1B4E;
    transition: color 0.3s ease;
}

.related-items-list a:hover .related-text {
    color: #7F56D9;
}

.comment-container .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFF;
}

.avatar-primary {
    background-color: #7F56D9;
}

.avatar-secondary {
    background-color: #9E77ED;
}

.comment-card {
    background-color: #F9F5FF;
    border-radius: 16px;
    border: 1px solid #E9D7FE;
}

.comment-author {
    font-weight: 700;
    color: #2D1B4E;
}

.badge-dev {
    background-color: #7F56D9;
    color: #FFF;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    vertical-align: middle;
}

.btn-action {
    background: none;
    border: none;
    color: #6941C6;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-action:hover {
    color: #7F56D9;
}

.btn-action.active i {
    color: #7F56D9;
    font-weight: fill;
}

.form-control {
    background-color: #FFFFFF;
    border: 1px solid #E9D7FE;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.form-control:focus {
    border-color: #7F56D9;
    box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
}

@media (max-width: 768px) {
    .fructaraxit-detail__content-text h2 {
        font-size: 1.5rem;
    }

    .reply-comment {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: guides-items ===== */
.guides-detail-page {
    background-color: #F9F5FF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.guides-detail-page .detail-hero {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    overflow: hidden;
}

.guides-detail-page .detail-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(45, 27, 78, 0.7) 0%, rgba(45, 27, 78, 0.9) 100%);
    z-index: 0;
}

.guides-detail-page .detail-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.guides-detail-page .detail-hero__meta {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.guides-detail-page .meta-item i {
    color: #9E77ED;
}

.guides-detail-page .breadcrumb-item a {
    color: #F4EBFF;
    text-decoration: none;
    font-weight: 600;
}

.guides-detail-page .content-article {
    background-color: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E9D7FE;
    box-shadow: 0 10px 40px rgba(127, 86, 217, 0.05);
}

.guides-detail-page .article-body h2,
.guides-detail-page .article-body h3 {
    color: #2D1B4E;
    font-weight: 800;
    margin-top: 2rem;
}

.guides-detail-page .article-body p {
    color: #6941C6;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.guides-detail-page .article-list {
    padding-left: 0;
    list-style: none;
}

.guides-detail-page .article-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #6941C6;
}

.guides-detail-page .article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #7F56D9;
    border-radius: 50%;
}

.guides-detail-page .info-box {
    background-color: #F4EBFF;
    border-left: 4px solid #7F56D9;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.guides-detail-page .info-box h3 {
    margin-top: 0 !important;
    color: #7F56D9 !important;
}

.guides-detail-page .article-cta-block {
    background: linear-gradient(135deg, #F9F5FF 0%, #F4EBFF 100%);
    border-radius: 20px;
    border: 1px solid #E9D7FE;
}

.guides-detail-page .btn-primary-custom {
    background-color: #7F56D9;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
}

.guides-detail-page .btn-primary-custom:hover {
    background-color: #9E77ED;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 86, 217, 0.2);
    color: #FFFFFF;
}

.guides-detail-page .sidebar-widget {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E9D7FE;
}

.guides-detail-page .widget-title {
    color: #2D1B4E;
    font-weight: 700;
    font-size: 1.25rem;
}

.guides-detail-page .related-img-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.guides-detail-page .related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guides-detail-page .contact-widget .icon-circle {
    width: 60px;
    height: 60px;
    background-color: #F4EBFF;
    color: #7F56D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.guides-detail-page .btn-whatsapp-custom {
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.guides-detail-page .comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E9D7FE;
    border-radius: 16px;
}

.guides-detail-page .avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
}

.guides-detail-page .avatar-primary {
    background-color: #7F56D9;
}

.guides-detail-page .avatar-secondary {
    background-color: #9E77ED;
}

.guides-detail-page .comment-author {
    color: #2D1B4E;
    font-size: 1rem;
}

.guides-detail-page .comment-date {
    color: #9E77ED;
    font-size: 0.85rem;
}

.guides-detail-page .btn-action {
    background: none;
    border: none;
    color: #6941C6;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.2s;
}

.guides-detail-page .btn-action:hover,
.guides-detail-page .btn-action.active {
    color: #7F56D9;
}

.guides-detail-page .badge-dev {
    background-color: #7F56D9;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.guides-detail-page .comment-form-box {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E9D7FE;
}

.guides-detail-page .form-control {
    border: 1px solid #E9D7FE;
    border-radius: 12px;
    padding: 12px;
    background-color: #F9F5FF;
}

.guides-detail-page .form-control:focus {
    border-color: #7F56D9;
    box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.1);
}

@media (max-width: 767.98px) {
    .guides-detail-page .detail-hero__title {
        font-size: 1.75rem;
    }

    .guides-detail-page .content-article {
        border-radius: 16px;
    }

    .guides-detail-page .reply-comment {
        margin-left: 1.5rem !important;
    }
}