:root {
    --brand-primary: #EAB308;
    --brand-primary-dark: #A16207;
    --brand-neon: #FACC15;
    --bg-main: #FDFCF6;
    --bg-secondary: #F3F4F6;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --border-ui: #E5E7EB;
    --transition-speed: 0.4s;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.text-muted {
    color: #6B7280 !important;
}

.btn-editorial {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-speed);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--brand-primary);
}

.btn-editorial:hover {
    border-bottom-width: 4px;
    color: var(--brand-primary-dark);
}

.card-editorial {
    background: transparent;
    border: none;
    transition: opacity var(--transition-speed);
}

.card-editorial:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== header ===== */
.crystal-header {
    background-color: #FDFCF6;
    border-bottom: 1px solid #E5E7EB;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    z-index: 1030;
}

.crystal-header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.crystal-header .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.crystal-header .crystal-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.crystal-header .crystal-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #111827;
    letter-spacing: -0.02em;
}

.crystal-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.crystal-header .nav-link:hover {
    color: #111827;
}

.crystal-header .nav-link.active {
    color: #111827;
}

.crystal-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #EAB308;
}

.crystal-header .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: #111827;
    font-size: 1.5rem;
}

.crystal-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .crystal-header .navbar-collapse {
        background-color: #FDFCF6;
        padding: 1.5rem 0;
        text-align: center;
    }

    .crystal-header .nav-link {
        padding: 1rem;
        font-size: 1rem;
    }

    .crystal-header .nav-link.active::after {
        display: none;
    }

    .crystal-header .nav-link.active {
        color: #EAB308;
    }
}

/* ===== hero ===== */
.hero-section-block {
    background-color: #FDFCF6;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.hero-section-block .hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.hero-section-block .hero-badge-accent {
    display: inline-block;
    background-color: #FACC15;
    color: #111827;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.hero-section-block .hero-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.hero-section-block .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-section-block .hero-cta-group {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-section-block .hero-btn-main {
    background-color: #111827;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 16px 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #EAB308;
    transition: all 0.3s ease;
}

.hero-section-block .hero-btn-main:hover {
    background-color: #1F2937;
    border-bottom-width: 4px;
    transform: translateY(-2px);
}

.hero-section-block .hero-btn-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.hero-section-block .hero-btn-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #EAB308;
    transition: height 0.3s ease;
}

.hero-section-block .hero-btn-link:hover {
    opacity: 0.8;
}

.hero-section-block .hero-btn-link:hover::after {
    height: 2px;
}

.hero-section-block .hero-stats-grid {
    display: flex;
    gap: 40px;
    border-top: 1px solid #F3F4F6;
    pt-4;
    padding-top: 32px;
}

.hero-section-block .hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-section-block .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #111827;
}

.hero-section-block .hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #4B5563;
}

.hero-section-block .hero-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section-block .hero-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    border: 12px solid #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-section-block .hero-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-section-block .hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: #FFFFFF;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.hero-section-block .hero-floating-icon {
    background-color: #FEFCE8;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A16207;
    font-size: 1.5rem;
}

.hero-section-block .hero-floating-title {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
}

.hero-section-block .hero-floating-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #4B5563;
}

.hero-section-block .hero-decorative-shape {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background-color: #FACC15;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-section-block {
        padding: 40px 0;
    }

    .hero-section-block .hero-headline {
        font-size: 1.125rem;
    }

    .hero-section-block .hero-main-img {
        height: 350px;
    }

    .hero-section-block .hero-floating-card {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section-block .hero-headline {
        font-size: 18px !important;
    }

    .hero-section-block .hero-description {
        font-size: 14px;
    }

    .hero-section-block .hero-stat-num {
        font-size: 1.25rem;
    }

    .hero-section-block .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section-block .hero-btn-main {
        justify-content: center;
    }

    .hero-section-block .hero-btn-link {
        text-align: center;
    }
}

/* ===== about ===== */
.about-blog {
    background-color: #FDFCF6;
    overflow: hidden;
}

.about-blog__accent-text {
    color: #A16207;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid #EAB308;
}

.about-blog__title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #111827;
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-blog__description p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-blog__icon-box {
    background-color: #FEFCE8;
    color: #EAB308;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.about-blog__btn-primary {
    background: transparent;
    color: #111827;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #EAB308;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.about-blog__btn-primary:hover {
    border-bottom-width: 4px;
    color: #A16207;
}

.about-blog__btn-secondary {
    background: transparent;
    color: #4B5563;
    border-radius: 0;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 0.5rem 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about-blog__btn-secondary:hover {
    opacity: 1;
    color: #111827;
}

.about-blog__image-container {
    border: 1px solid #E5E7EB;
    padding: 1rem;
    background-color: #FFFFFF;
}

.about-blog__main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-blog__overlay-box {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: #EAB308;
    color: #111827;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05em;
    transform: rotate(-2deg);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
}

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

    .about-blog__main-img {
        height: 300px;
    }

    .about-blog__content-wrapper {
        text-align: center;
    }

    .about-blog__btn-primary,
    .about-blog__btn-secondary {
        width: 100%;
    }

    .d-flex.flex-wrap {
        justify-content: center;
    }

    .about-blog__icon-box {
        margin-bottom: 0.5rem;
    }

    .d-flex.align-items-start {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }
}

/* ===== featured-reviews ===== */
.featured-reviews-block {
    background-color: #FDFCF6;
    overflow: hidden;
}

.featured-reviews-block .section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #EAB308;
}

.featured-reviews-block .fw-black {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.featured-reviews-block .text-accent {
    color: #EAB308;
}

.featured-reviews-block .btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #111827;
    text-decoration: none;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #EAB308;
    transition: all 0.3s ease;
}

.featured-reviews-block .btn-editorial:hover {
    border-bottom-width: 4px;
    color: #A16207;
}

.featured-reviews-block .review-card {
    position: relative;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-reviews-block .review-card:hover {
    transform: translateY(-8px);
}

.featured-reviews-block .review-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.featured-reviews-block .review-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-reviews-block .review-card:hover .review-card__img {
    transform: scale(1.05);
}

.featured-reviews-block .review-card__tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FACC15;
    color: #111827;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-reviews-block .review-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-reviews-block .review-card__content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-reviews-block .review-card__excerpt {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-reviews-block .review-card__link {
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #111827;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.featured-reviews-block .review-card__link:hover {
    opacity: 1;
    color: #EAB308;
}

.featured-reviews-block .review-card--large .review-card__image-wrapper {
    padding-top: 50%;
}

@media (min-width: 992px) {
    .featured-reviews-block .review-card--wide {
        flex-direction: row;
    }

    .featured-reviews-block .review-card--wide .review-card__image-wrapper {
        width: 45%;
        padding-top: 0;
    }

    .featured-reviews-block .review-card--wide .review-card__content {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .featured-reviews-block h2 {
        font-size: 2rem;
    }

    .featured-reviews-block .review-card__content {
        padding: 1.5rem;
    }
}

/* ===== top-collections ===== */
.top-collections-section {
    background-color: #FDFCF6;
    overflow: hidden;
}

.top-collections-section .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #111827 !important;
}

.top-collections-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    font-size: 1.1rem;
    max-width: 600px;
}

.top-collections-section .filter-btn {
    background: #F3F4F6;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4B5563;
    transition: all 0.3s ease;
}

.top-collections-section .filter-btn:hover,
.top-collections-section .filter-btn.active {
    background-color: #EAB308;
    color: #FFFFFF;
}

.top-collections-section .collection-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.top-collections-section .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.top-collections-section .card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.top-collections-section .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.top-collections-section .collection-card:hover .card-img {
    transform: scale(1.1);
}

.top-collections-section .floating-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #EAB308;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.top-collections-section .card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.top-collections-section .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #111827 !important;
}

.top-collections-section .card-excerpt {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.top-collections-section .action-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid #EAB308;
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.top-collections-section .action-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.top-collections-section .action-link:hover {
    color: #A16207;
    border-color: #A16207;
}

.top-collections-section .action-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .top-collections-section .section-title {
        font-size: 1.8rem;
    }

    .top-collections-section .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ===== interactive-teaser ===== */
.interactive-runner-teaser {
    background-color: #FDFCF6;
    overflow: hidden;
}

.interactive-runner-teaser .teaser-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
}

.interactive-runner-teaser .teaser-text {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    line-height: 1.8;
}

.interactive-runner-teaser .accent-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A16207;
    border-left: 3px solid #EAB308;
    padding-left: 12px;
}

.interactive-runner-teaser .btn-runner-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background-color: transparent;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #EAB308;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.interactive-runner-teaser .btn-runner-cta:hover {
    border-bottom-width: 5px;
    color: #A16207;
    transform: translateY(-2px);
}

.interactive-runner-teaser .teaser-image-wrapper {
    position: relative;
    padding: 10px;
}

.interactive-runner-teaser .teaser-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.interactive-runner-teaser .image-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FEFCE8;
    z-index: 1;
    transform: translate(20px, 20px);
}

@media (max-width: 991px) {
    .interactive-runner-teaser .teaser-title {
        font-size: 2.5rem;
    }

    .interactive-runner-teaser .teaser-image-wrapper img {
        height: 300px;
    }

    .interactive-runner-teaser .image-overlay-accent {
        transform: translate(10px, 10px);
    }
}

@media (max-width: 767px) {
    .interactive-runner-teaser .teaser-title {
        font-size: 1.5rem;
    }

    .interactive-runner-teaser .teaser-text {
        font-size: 0.95rem;
    }
}

/* ===== newsletter ===== */
.newsletter-block {
    background-color: #FDFCF6;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.newsletter-block .newsletter-inner {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.newsletter-block .newsletter-badge {
    background-color: #FEFCE8;
    color: #A16207;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter-block .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #111827;
    line-height: 1.2;
}

.newsletter-block .newsletter-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.7;
}

.newsletter-block .newsletter-input {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    color: #111827;
    padding: 0.85rem 1.25rem;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.newsletter-block .newsletter-input:focus {
    outline: none;
    border-color: #EAB308;
    box-shadow: none;
}

.newsletter-block .newsletter-input::placeholder {
    color: #9CA3AF;
}

.newsletter-block .newsletter-submit-btn {
    background: transparent;
    color: #111827;
    border: none;
    border-bottom: 2px solid #EAB308;
    padding: 0.85rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-bottom-width 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.newsletter-block .newsletter-submit-btn:hover {
    border-bottom-width: 4px;
    color: #A16207;
}

.newsletter-block .newsletter-disclaimer {
    font-size: 0.85rem;
    color: #6B7280;
}

.newsletter-block .newsletter-link {
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.newsletter-block .newsletter-link:hover {
    color: #EAB308;
}

.newsletter-block .newsletter-deco-img {
    max-width: 80px;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
    image-rendering: pixelated;
}

@media (max-width: 767.98px) {
    .newsletter-block .newsletter-title {
        font-size: 1.75rem;
    }

    .newsletter-block .newsletter-text {
        font-size: 1rem;
    }

    .newsletter-block .newsletter-inner {
        padding: 2rem 1.5rem !important;
    }
}

/* ===== footer ===== */
.ccp-footer {
    background-color: #F9FAFB;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.ccp-footer .ccp-footer-logo {
    max-width: 58px;
    height: auto;
    display: block;
}

.ccp-footer .ccp-footer-brand a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px;
    text-decoration: none;
    flex-wrap: nowrap;
    width: max-content;
    white-space: nowrap;
}

.ccp-footer .ccp-footer-brand a::after {
    content: 'CrystalCrownProtocol';
    color: #111827;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.15rem, 3.2vw, 1.35rem);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.ccp-footer .ccp-footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4B5563;
    max-width: 320px;
}

.ccp-footer .ccp-footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ccp-footer .ccp-footer-links li {
    margin-bottom: 0.75rem;
}

.ccp-footer .ccp-footer-links a {
    color: #4B5563;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.ccp-footer .ccp-footer-links a:hover {
    color: #EAB308;
    padding-left: 5px;
}

.ccp-footer .ccp-footer-contact {
    font-size: 0.9rem;
    color: #4B5563;
}

.ccp-footer .ccp-footer-contact li {
    display: flex;
    align-items: center !important;
    gap: 10px;
    flex-wrap: nowrap !important;
    min-width: 0;
    white-space: normal;
}

.ccp-footer .ccp-footer-contact li:first-child {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
}

.ccp-footer .ccp-footer-contact li:first-child i {
    justify-self: start;
}

.ccp-footer .ccp-footer-contact li:first-child span {
    min-width: 0;
}

.ccp-footer .ccp-footer-contact a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ccp-footer .ccp-footer-contact a:hover {
    color: #EAB308;
}

.ccp-footer .ccp-footer-contact i {
    color: #EAB308;
    font-size: 1.1rem;
    flex: 0 0 auto;
    margin: 0;
    line-height: 1.5;
}

.ccp-footer .ccp-footer-contact span,
.ccp-footer .ccp-footer-contact a {
    line-height: 1.5;
    min-width: 0;
}

.ccp-footer .ccp-footer-copy {
    font-size: 0.85rem;
    color: #9CA3AF;
}

.ccp-footer .border-top {
    border-color: #E5E7EB !important;
}

@media (max-width: 767.98px) {
    .ccp-footer {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .ccp-footer .ccp-footer-title {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .ccp-footer .ccp-footer-desc {
        max-width: 100%;
    }

    .ccp-footer .ccp-footer-brand a {
        gap: 10px;
        width: auto;
    }

    .ccp-footer .ccp-footer-logo {
        max-width: 56px;
    }

    .ccp-footer .ccp-footer-contact li {
        align-items: center !important;
        gap: 8px;
    }

    .ccp-footer .ccp-footer-contact li:first-child {
        column-gap: 8px;
    }

    .ccp-footer .ccp-footer-contact i {
        line-height: 1;
        margin-top: 0;
        transform: translateY(0);
    }

    .ccp-footer .ccp-footer-contact span,
    .ccp-footer .ccp-footer-contact a {
        overflow-wrap: anywhere;
    }
}

.category-hero-section {
    background-color: #FDFCF6;
    padding: 100px 0 60px;
    border-bottom: 1px solid #E5E7EB;
}

.category-badge {
    display: inline-block;
    background-color: #FEFCE8;
    color: #A16207;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    border-left: 3px solid #EAB308;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 3rem;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.category-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    max-width: 700px;
}

.category-filter-bar {
    background-color: #FFFFFF;
    padding: 16px 24px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
}

.category-search-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.category-search-wrapper .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.category-search-wrapper input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background-color: #F9FAFB;
}

.category-sort-wrapper select {
    padding: 10px 32px 10px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background-color: #F9FAFB;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234B5563' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80a8,8,0,0,1,11.32-11.32L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.category-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.category-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.category-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.category-card-meta i {
    color: #EAB308;
}

.category-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.category-card-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    border-bottom: 2px solid #EAB308;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.category-card-link:hover {
    color: #A16207;
    border-bottom-width: 4px;
}

@media (max-width: 767.98px) {
    .category-title {
        font-size: 1.5rem !important;
    }

    .category-hero-section {
        padding: 60px 0 40px;
    }

    .category-card-img-wrap {
        height: 180px;
    }
}


/* ===== PAGE: privacy ===== */
.policy-body-container { padding: 60px 20px; color: #111827; background-color: #FDFCF6; display: flex; justify-content: center; } .policy-body-container .policy-card { max-width: 900px; width: 100%; } .policy-body-container h2 { font-family: 'Playfair Display', serif; font-weight: 900; color: #111827; margin-top: 48px; margin-bottom: 24px; font-size: 2rem; border-left: 4px solid #EAB308; padding-left: 20px; line-height: 1.2; } .policy-body-container p { font-family: 'Inter', sans-serif; font-size: 1.05rem; line-height: 1.8; color: #4B5563; margin-bottom: 24px; } .policy-body-container ul, .policy-body-container ol { margin-bottom: 24px; padding-left: 20px; } .policy-body-container li { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.8; color: #4B5563; margin-bottom: 12px; } .policy-body-container li strong { color: #111827; font-weight: 600; } .policy-body-container .policy-date { font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #A16207; font-size: 0.85rem; margin-bottom: 12px; } .policy-body-container a { color: #A16207; text-decoration: none; border-bottom: 1px solid #EAB308; transition: opacity 0.3s ease; } .policy-body-container a:hover { opacity: 0.7; } @media (max-width: 768px) { .policy-body-container { padding: 40px 16px; } .policy-body-container h2 { font-size: 1.5rem; margin-top: 32px; } .policy-body-container p, .policy-body-container li { font-size: 1rem; } }

/* ===== PAGE: terms ===== */
.policy-body-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    color: #111827;
}
.policy-body-container h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #111827;
    border-left: 4px solid #EAB308;
    padding-left: 1rem;
}
.policy-body-container p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}
.policy-body-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
    list-style-type: none;
}
.policy-body-container li {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}
.policy-body-container li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #EAB308;
    border-radius: 50%;
}
.policy-body-container .policy-link {
    color: #111827;
    text-decoration: none;
    border-bottom: 2px solid #FACC15;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.policy-body-container .policy-link:hover {
    color: #A16207;
    border-bottom-color: #A16207;
}
@media (max-width: 768px) {
    .policy-body-container {
        padding: 2rem 1rem;
    }
    .policy-body-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    .policy-body-container p, .policy-body-container li {
        font-size: 1rem;
    }
}

/* ===== PAGE: disclaimer ===== */
.policy-body-container {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #111827;
  line-height: 1.8;
}

.crystal-disclaimer-content .disclaimer-header {
  border-bottom: 2px solid #F3F4F6;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
}

.crystal-disclaimer-content .disclaimer-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.crystal-disclaimer-content .disclaimer-header p {
  font-family: 'Inter', sans-serif;
  color: #4B5563;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.crystal-disclaimer-content .disclaimer-section {
  margin-bottom: 2.5rem;
}

.crystal-disclaimer-content .disclaimer-section h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid #EAB308;
}

.crystal-disclaimer-content .disclaimer-section p {
  margin-bottom: 1rem;
}

.crystal-disclaimer-content .disclaimer-list {
  list-style: none;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

.crystal-disclaimer-content .disclaimer-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.crystal-disclaimer-content .disclaimer-list li::before {
  content: '•';
  color: #EAB308;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.crystal-disclaimer-content .disclaimer-link {
  color: #A16207;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.crystal-disclaimer-content .disclaimer-link:hover {
  color: #EAB308;
  border-bottom-color: #EAB308;
}

.crystal-disclaimer-content .disclaimer-footer-note {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #F3F4F6;
  font-size: 0.85rem;
  color: #6B7280;
  text-align: center;
}

@media (max-width: 768px) {
  .policy-body-container {
    padding: 2rem 1rem;
  }
  .crystal-disclaimer-content .disclaimer-header h2 {
    font-size: 1.75rem;
  }
  .crystal-disclaimer-content .disclaimer-section h3 {
    font-size: 1.25rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-body-container .cookies-content-inner { max-width: 800px; margin: 0 auto; padding: 60px 20px; }.policy-body-container .accent-line { width: 60px; height: 4px; background-color: #EAB308; margin-bottom: 2rem; }.policy-body-container h2 { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 900; color: #111827; margin-bottom: 1.5rem; border-left: 5px solid #EAB308; padding-left: 20px; line-height: 1.2; }.policy-body-container h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #111827; margin-top: 2.5rem; margin-bottom: 1rem; line-height: 1.3; }.policy-body-container p { font-family: 'Inter', sans-serif; font-size: 1.05rem; line-height: 1.8; color: #4B5563; margin-bottom: 1.25rem; }.policy-body-container .cookies-link { color: #A16207; font-weight: 600; text-decoration: none; border-bottom: 2px solid #FACC15; transition: all 0.3s ease; }.policy-body-container .cookies-link:hover { color: #111827; border-bottom-color: #111827; }@media (max-width: 768px) { .policy-body-container .cookies-content-inner { padding: 40px 15px; } .policy-body-container h2 { font-size: 1.125rem; padding-left: 15px; } .policy-body-container h3 { font-size: 1rem; } .policy-body-container p { font-size: 0.95rem; } }

/* ===== PAGE: top-dendy-games ===== */
.games-list-section { background-color: #FDFCF6; }
.games-list-section h2 { font-family: 'Playfair Display', serif; color: #111827; }
.games-list-section .search-wrapper input {
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 0.75rem 1.25rem;
  transition: border-color 0.3s ease;
  background: #FFFFFF;
}
.games-list-section .search-wrapper input:focus {
  border-color: #EAB308;
  box-shadow: none;
  outline: none;
}
.games-list-section .form-select {
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  background-color: #FFFFFF;
  cursor: pointer;
}
.games-list-section .form-select:focus {
  border-color: #EAB308;
  box-shadow: none;
}
.games-list-section .game-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.games-list-section .game-card:hover {
  transform: translateY(-8px);
  border-color: #EAB308;
}
.games-list-section .game-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F3F4F6;
}
.games-list-section .game-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.games-list-section .game-card:hover img {
  transform: scale(1.05);
}
.games-list-section .badge-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111827;
  background: #FACC15;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.games-list-section .year-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9CA3AF;
  font-family: 'Inter', sans-serif;
}
.games-list-section .game-content h3 {
  color: #111827;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}
.games-list-section .game-card:hover h3 {
  color: #A16207;
}
.games-list-section .no-results-message {
  transition: all 0.3s ease;
}

/* ===== PAGE: interactive-game ===== */
.game-area-block {
  background-color: #FDFCF6;
  font-family: 'Inter', sans-serif;
}

.game-area-block .container {
  box-sizing: border-box;
}

.game-area-block .game-header,
.game-area-block .game-stage-wrapper,
.game-area-block .game-footer {
  width: 100%;
  max-width: 100%;
}

.game-area-block .game-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #111827;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.game-area-block .game-instruction {
  color: #4B5563;
  font-size: 0.95rem;
}
.game-area-block .score-item .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.game-area-block .score-item .value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #A16207;
}
.game-area-block .game-stage {
  width: 100%;
  height: 430px;
  background-size: cover;
  background-position: center center;
  border: 4px solid #111827;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  touch-action: none;
  user-select: none;
  cursor: pointer;
}
.game-area-block .player {
  position: absolute;
  left: 50px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  transition: bottom 0.4s cubic-bezier(0.1, 0.4, 0.4, 1);
  z-index: 10;
}
.game-area-block .player-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.game-area-block .player.jumping {
  bottom: 150px;
}
.game-area-block .obstacle {
  position: absolute;
  bottom: 20px;
  width: 45px;
  height: 45px;
  z-index: 5;
}
.game-area-block .obstacle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.game-area-block .game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 20;
  transition: opacity 0.3s ease;
}
.game-area-block .overlay-content {
  background: #FFFFFF;
  max-width: 400px;
  width: 90%;
  box-sizing: border-box;
}
.game-area-block .custom-btn-primary {
  background-color: #EAB308;
  color: #111827;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  border-bottom: 3px solid #A16207;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.game-area-block .custom-btn-primary:hover {
  background-color: #FACC15;
  transform: translateY(-2px);
}
.game-area-block .custom-btn-secondary {
  background-color: #F3F4F6;
  color: #111827;
  border: 2px solid #E5E7EB;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.game-area-block .custom-btn-secondary:hover {
  background-color: #E5E7EB;
}
.game-area-block .registration-form input {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
}
.game-area-block .registration-form input:focus {
  border-color: #EAB308;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
  outline: none;
}
.game-area-block .feature-icon-box i {
  font-size: 1.8rem;
  color: #EAB308;
}
.game-area-block .feature-icon-box h4 {
  color: #111827;
  font-weight: 700;
}
.game-area-block .feature-icon-box p {
  color: #6B7280;
}
@media (max-width: 768px) {
  .game-area-block .game-stage {
    width: 100%;
    height: clamp(360px, 78vw, 520px);
    border-width: 3px;
  }
  .game-area-block > .container > .row {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }
  .game-area-block > .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .game-area-block > .container > .row > .col-lg-10 {
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .game-area-block .player { width: 45px; height: 45px; left: 20px; }
  .game-area-block .game-title { font-size: 1.8rem; }
  .game-area-block .game-instruction {
    font-size: 0.9rem;
  }
  .game-area-block .score-board {
    gap: 0.75rem !important;
    flex-wrap: wrap;
  }
  .game-area-block .score-item .value {
    font-size: 1.15rem;
  }
  .game-area-block .game-footer {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .game-area-block .overlay-content {
    width: 100%;
    max-width: none;
    padding: 1rem !important;
  }
  .game-area-block .overlay-content h3 {
    font-size: 1.3rem;
  }
  .game-area-block .custom-btn-primary,
  .game-area-block .custom-btn-secondary {
    width: 100%;
    white-space: normal;
  }
  .game-area-block .registration-form .row {
    row-gap: 0.75rem;
  }
  .game-area-block .registration-form input {
    width: 100%;
    font-size: 1rem;
  }
}

/* ===== PAGE: contacts ===== */
.contact-form-section { background-color: #FDFCF6; padding: 60px 0; overflow: hidden; } .contact-form-section .contact-info-card { background: #FFFFFF; border: 1px solid #E5E7EB; padding: 40px; } .contact-form-section .contact-info-card__badge { background: #FEFCE8; color: #A16207; font-size: 0.75rem; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 4px; display: inline-block; } .contact-form-section .contact-info-card__title { font-family: 'Playfair Display', serif; font-weight: 900; color: #111827; font-size: 2.25rem; } .contact-form-section .contact-info-card__desc { color: #4B5563; line-height: 1.7; font-size: 1.1rem; } .contact-form-section .contact-info-item__icon { background: #EAB308; color: #FFFFFF; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 1.25rem; } .contact-form-section .contact-info-item__text strong { display: block; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #111827; margin-bottom: 2px; } .contact-form-section .contact-info-item__text p, .contact-form-section .contact-info-item__text a { font-size: 1rem; color: #4B5563; text-decoration: none; transition: color 0.3s ease; } .contact-form-section .contact-link:hover { color: #EAB308; } .contact-form-section .contact-form-container { background: #FFFFFF; border: 1px solid #E5E7EB; padding: 40px; } .contact-form-section .contact-form-header__title { font-family: 'Playfair Display', serif; font-weight: 700; color: #111827; font-size: 1.75rem; margin-bottom: 10px; } .contact-form-section .contact-form-header__subtitle { color: #4B5563; font-size: 1rem; } .contact-form-section .form-label { font-family: 'Inter', sans-serif; font-weight: 600; color: #111827; font-size: 0.85rem; margin-bottom: 8px; } .contact-form-section .form-control { background-color: #F3F4F6; border: 1px solid #E5E7EB; border-radius: 0; padding: 12px 15px; font-family: 'Inter', sans-serif; color: #111827; transition: border-color 0.3s; } .contact-form-section .form-control:focus { background-color: #FFFFFF; border-color: #EAB308; box-shadow: none; outline: none; } .contact-form-section .form-control::placeholder { color: #9CA3AF; opacity: 1; } .contact-form-section .btn-primary-custom { background: transparent; color: #111827; border: none; border-bottom: 3px solid #FACC15; padding: 12px 30px; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease; cursor: pointer; display: inline-block; } .contact-form-section .btn-primary-custom:hover { border-bottom-width: 6px; color: #A16207; transform: translateY(-2px); } @media (max-width: 991px) { .contact-form-section .contact-info-card, .contact-form-section .contact-form-container { padding: 30px 20px; } .contact-form-section .contact-info-card__title { font-size: 1.75rem; } }

.ccp-comment-main {
    background-color: #FFFFFF;
    border-left: 4px solid #EAB308;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease;
}

.ccp-comment-main:hover {
    transform: translateY(-2px);
}

.ccp-avatar-initials {
    width: 56px;
    height: 56px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background-color: #EAB308;
    color: #111827;
}

.ccp-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #111827;
    font-size: 1.15rem;
}

.ccp-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #9CA3AF;
}

.ccp-text-content p {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 0;
}

.ccp-btn-link {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.ccp-btn-link:hover {
    color: #A16207;
}

.bg-accent-neon {
    background-color: #FACC15 !important;
}

.ccp-comment-reply {
    background-color: #F9FAFB;
    border-color: #E5E7EB !important;
}

.ccp-avatar-initials-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: #F3F4F6;
    color: #4B5563;
}

.ccp-author-name-sm {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.ccp-timestamp-sm {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.ccp-text-content-sm p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 0;
}

.ccp-btn-link-sm {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #6B7280;
    transition: color 0.3s ease;
}

.ccp-btn-link-sm:hover {
    color: #111827;
}


/* ===== PAGE TEMPLATE: reviews ===== */
.detail-hero-section {
    background-color: #FDFCF6;
    border-bottom: 1px solid #E5E7EB;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #111827;
    line-height: 1.2;
}

.detail-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 600px;
}

.detail-hero-frame {
    border: 8px solid #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.detail-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.detail-article-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #4B5563;
}

.detail-article-body h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.detail-article-body p {
    margin-bottom: 1.5rem;
}

.detail-article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    list-style: square;
}

.detail-tabs-container .nav-tabs {
    border-bottom: 2px solid #E5E7EB;
}

.detail-tabs-container .nav-link {
    border: none;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.detail-tabs-container .nav-link.active {
    color: #111827;
    background: none;
    border-bottom: 2px solid #EAB308;
}


.ccp-comment-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.ccp-avatar-initials {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
}

.ccp-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.ccp-timestamp {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.ccp-btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.ccp-btn-link:hover {
    color: #EAB308;
}

.ccp-btn-link.active i {
    color: #EF4444;
}

.btn-comment-submit {
    background-color: #111827;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-bottom: 2px solid #EAB308;
    transition: all 0.3s ease;
}

.btn-comment-submit:hover {
    transform: translateY(-2px);
    background-color: #1F2937;
}

.sidebar-card {
    background-color: #FFFFFF;
}

@media (max-width: 767px) {
    .detail-title {
        font-size: 1.5rem !important;
    }

    .detail-main-img {
        height: 250px;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

/* ===== PAGE TEMPLATE: mechanics ===== */
.detail-hero-section {
    background-color: #FDFCF6;
    border-bottom: 1px solid #E5E7EB;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #111827;
    line-height: 1.2;
}

.detail-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 600px;
}

.detail-hero-frame {
    border: 8px solid #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.detail-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.detail-article-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #4B5563;
}

.detail-article-body h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.detail-article-body p {
    margin-bottom: 1.5rem;
}

.detail-article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    list-style: square;
}

.detail-tabs-container .nav-tabs {
    border-bottom: 2px solid #E5E7EB;
}

.detail-tabs-container .nav-link {
    border: none;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.detail-tabs-container .nav-link.active {
    color: #111827;
    background: none;
    border-bottom: 2px solid #EAB308;
}


.ccp-comment-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.ccp-avatar-initials {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
}

.ccp-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.ccp-timestamp {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.ccp-btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.ccp-btn-link:hover {
    color: #EAB308;
}

.ccp-btn-link.active i {
    color: #EF4444;
}

.btn-comment-submit {
    background-color: #111827;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-bottom: 2px solid #EAB308;
    transition: all 0.3s ease;
}

.btn-comment-submit:hover {
    transform: translateY(-2px);
    background-color: #1F2937;
}

.sidebar-card {
    background-color: #FFFFFF;
}

@media (max-width: 767px) {
    .detail-title {
        font-size: 1.5rem !important;
    }

    .detail-main-img {
        height: 250px;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}
