:root {
    --primary-color: #E30B5D;
    --primary-light: #FF4D8D;
    --primary-gradient: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    --bg-main: #FFFFFF;
    --bg-alt: #FDF2F5;
    --text-main: #1A1A1A;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --border-color: #F3F4F6;
    --shadow-color: rgba(227, 11, 93, 0.08);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Inter', sans-serif
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden
}

.smooth-scroll {
    scroll-behavior: smooth
}

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

.modern-stripe-layout .pill-button {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none
}

.modern-stripe-layout .primary-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none
}

.modern-stripe-layout .primary-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-color)
}

.modern-stripe-layout .secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color)
}

.modern-stripe-layout .secondary-btn:hover {
    background: var(--bg-alt);
    transform: translateY(-2px)
}

.modern-stripe-layout .skewed-bg {
    position: relative;
    background: var(--bg-alt);
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
    padding: 6rem 0
}

.modern-stripe-layout .card-custom {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px var(--shadow-color)
}

.modern-stripe-layout .card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-color)
}

/* ===== hero ===== */
#hero-vortex {
    min-height: 85vh;
    background-color: #1A1A1A;
    position: relative;
}

#hero-vortex .hero-vortex-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-vortex .hero-vortex-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-vortex .hero-vortex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(227, 11, 93, 0.2) 100%);
}

#hero-vortex .hero-vortex-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

#hero-vortex .hero-vortex-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 540px;
}

#hero-vortex .hero-vortex-stat-icon {
    color: #E30B5D;
    background: rgba(227, 11, 93, 0.15);
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-vortex .hero-vortex-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

#hero-vortex .hero-vortex-btn {
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
}

#hero-vortex .hero-vortex-btn-primary {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    color: #FFFFFF;
    border: none;
}

#hero-vortex .hero-vortex-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 11, 93, 0.3);
    color: #FFFFFF;
}

#hero-vortex .hero-vortex-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #E30B5D;
}

#hero-vortex .hero-vortex-btn-outline:hover {
    background: #E30B5D;
    transform: translateY(-3px);
    color: #FFFFFF;
}

#hero-vortex .hero-vortex-visual-container {
    padding: 20px;
    z-index: 1;
}

#hero-vortex .hero-vortex-visual-bg-skew {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 90%;
    height: 90%;
    background: rgba(227, 11, 93, 0.1);
    border-radius: 24px;
    transform: skew(-3deg, -3deg);
    z-index: -1;
}

#hero-vortex .hero-vortex-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#hero-vortex .hero-vortex-main-img {
    object-fit: cover;
    height: 500px;
    transition: transform 0.6s ease;
}

#hero-vortex .hero-vortex-visual-container:hover .hero-vortex-main-img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    #hero-vortex {
        min-height: auto;
        padding: 60px 0;
    }

    #hero-vortex .hero-vortex-title {
        font-size: 2.25rem;
    }

    #hero-vortex .hero-vortex-lead {
        font-size: 1rem;
    }

    #hero-vortex .hero-vortex-btn {
        width: 100%;
    }
}

/* ===== qualification ===== */
.qualification-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.qualification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: #FDF2F5;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

.qualification-section .container {
    position: relative;
    z-index: 1;
}

.qualification-section .qualification-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A1A;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.qualification-section .qualification-subtitle {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.qualification-section .qualification-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(227, 11, 93, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.qualification-section .qualification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 11, 93, 0.1);
}

.qualification-section .card-header-icon {
    margin-bottom: 1.5rem;
}

.qualification-section .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualification-section .icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.qualification-section .icon-wrapper-positive {
    background-color: #E30B5D;
    color: #FFFFFF;
}

.qualification-section .icon-wrapper-negative {
    background-color: #F3F4F6;
    color: #4B5563;
}

.qualification-section .card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.qualification-section .qualification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualification-section .qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #4B5563;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.qualification-section .item-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.qualification-section .qualification-card-positive .item-icon {
    color: #E30B5D;
}

.qualification-section .qualification-card-negative .item-icon {
    color: #9CA3AF;
}

@media (max-width: 767.98px) {
    .qualification-section .qualification-card {
        padding: 1.5rem;
    }

    .qualification-section .qualification-title {
        font-size: 1.5rem;
    }
}

/* ===== geography ===== */
.geography-section {
    background-color: #FFFFFF;
    padding: clamp(4rem, 10vw, 8rem) 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.geography-bg-skew {
    background-color: #FDF2F5;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

.geography-title {
    color: #1A1A1A;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(2rem, 4vw, 3rem);
}

.geography-lead {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.stat-number {
    color: #E30B5D;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 500;
}

.geography-image-container {
    height: 400px;
    position: relative;
    z-index: 1;
}

.geography-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 20px rgba(227, 11, 93, 0.04);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    z-index: 1;
    position: relative;
}

.geography-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(227, 11, 93, 0.08);
}

.geography-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #FDF2F5;
    border-radius: 16px;
    color: #E30B5D;
}

.geography-icon {
    width: 28px;
    height: 28px;
}

.geography-card-title {
    color: #1A1A1A;
    font-size: 1.25rem;
    font-weight: 600;
}

.geography-card-text {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .geography-image-container {
        height: 300px;
    }
}

/* ===== cost-of-inaction ===== */
.cost-of-inaction-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FDF2F5;
    overflow: hidden;
}

.cost-of-inaction-section .calculator-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.cost-of-inaction-section .calculator-card:hover {
    transform: translateY(-8px);
}

.cost-of-inaction-section .form-range::-webkit-slider-thumb {
    background: #E30B5D;
}

.cost-of-inaction-section .form-range::-moz-range-thumb {
    background: #E30B5D;
}

.cost-of-inaction-section .results-panel {
    background-color: #FDF2F5;
    border: 1px solid rgba(227, 11, 93, 0.1);
}

.cost-of-inaction-section .text-primary {
    color: #E30B5D !important;
}

.cost-of-inaction-section .bg-primary {
    background-color: #E30B5D !important;
}

.cost-of-inaction-section .btn-primary-gradient {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    border: none;
    transition: all 0.4s ease;
}

.cost-of-inaction-section .btn-primary-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(227, 11, 93, 0.2);
}

.cost-of-inaction-section .feedback-form-container {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(227, 11, 93, 0.08);
}

.cost-of-inaction-section .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(227, 11, 93, 0.1);
    border-color: #E30B5D;
}

@media (max-width: 767.98px) {
    .cost-of-inaction-section h2 {
        font-size: 1.5rem !important;
    }

    .cost-of-inaction-section h3 {
        font-size: 1.25rem !important;
    }

    .cost-of-inaction-section .feedback-form-container {
        min-height: auto;
    }
}

/* ===== stages ===== */
.stages-section {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: #FFFFFF;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stages-skew-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #FDF2F5;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

.stages-section .container {
    position: relative;
    z-index: 1;
}

.stages-section .stages-heading {
    color: #1A1A1A;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.stages-section .stages-subtext {
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.stages-section .stage-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid #F3F4F6;
    box-shadow: 0 10px 30px rgba(227, 11, 93, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.stages-section .stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 11, 93, 0.1);
}

.stages-section .stage-number-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stages-section .stage-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E30B5D;
    opacity: 0.3;
}

.stages-section .stage-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.stages-section .stage-icon svg {
    width: 24px;
    height: 24px;
}

.stages-section .stage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.stages-section .stage-desc {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.stages-section .stage-approval {
    background-color: #FDF2F5;
    border-radius: 12px;
    padding: 1rem;
    border-left: 3px solid #E30B5D;
}

.stages-section .approval-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #E30B5D;
    margin-bottom: 0.25rem;
}

.stages-section .approval-text {
    font-size: 0.875rem;
    color: #1A1A1A;
    margin-bottom: 0;
    line-height: 1.4;
}

.stages-section .stages-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 11, 93, 0.2);
}

.stages-section .stages-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(227, 11, 93, 0.3);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .stages-section .stages-heading {
        font-size: 1.75rem;
    }

    .stages-section .stage-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== dynamic-problems ===== */
.dynamic-problems-section {
    background-color: #FDF2F5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dynamic-problems-section .problem-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(227, 11, 93, 0.04);
}

.dynamic-problems-section .problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(227, 11, 93, 0.08);
}

.dynamic-problems-section .problem-card.active {
    border-color: #E30B5D;
    background-color: #FFF9FA;
}

.dynamic-problems-section .problem-card .card-icon {
    color: #E30B5D;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDF2F5;
    border-radius: 12px;
    transition: 0.3s;
}

.dynamic-problems-section .problem-card.active .card-icon {
    background: #E30B5D;
    color: #FFFFFF;
}

.dynamic-problems-section .text-primary {
    color: #E30B5D !important;
}

.dynamic-problems-section .btn-primary-gradient {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    border: none;
    transition: transform 0.2s, opacity 0.3s;
}

.dynamic-problems-section .btn-primary-gradient:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.dynamic-problems-section .request-form-card {
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.dynamic-problems-section .form-control {
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    background-color: #FDF2F5;
}

.dynamic-problems-section .form-control:focus {
    border-color: #FF4D8D;
    box-shadow: 0 0 0 0.25rem rgba(227, 11, 93, 0.1);
    background-color: #FFFFFF;
}

.dynamic-problems-section .solution-display {
    transition: opacity 0.4s ease-in-out;
}

@media (max-width: 767.98px) {
    .dynamic-problems-section .display-5 {
        font-size: 1.5rem;
    }

    .dynamic-problems-section .h3 {
        font-size: 1.25rem;
    }

    .dynamic-problems-section .problem-card {
        padding: 1.5rem;
    }
}

/* ===== reviews-grid ===== */
.reviews-grid-section {
    background-color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.reviews-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-color: #FDF2F5;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 0;
}

.reviews-grid-section .container {
    position: relative;
    z-index: 1;
}

.reviews-grid-section .reviews-title {
    color: #1A1A1A;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.reviews-grid-section .reviews-subtitle {
    color: #4B5563;
    max-width: 600px;
    line-height: 1.6;
}

.reviews-grid-section .review-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(227, 11, 93, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reviews-grid-section .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 11, 93, 0.12);
}

.reviews-grid-section .review-image-link {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.reviews-grid-section .review-card:hover .review-card-img {
    transform: scale(1.08);
}

.reviews-grid-section .review-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.reviews-grid-section .review-badge {
    background-color: #FDF2F5;
    color: #E30B5D;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-grid-section .review-title-link {
    text-decoration: none;
    color: inherit;
}

.reviews-grid-section .review-card-title {
    color: #1A1A1A;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.reviews-grid-section .review-card-title:hover {
    color: #E30B5D;
}

.reviews-grid-section .review-excerpt {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.reviews-grid-section .review-meta {
    border-top: 1px solid #F3F4F6;
    padding-top: 1rem;
}

.reviews-grid-section .review-author {
    color: #9CA3AF;
    font-size: 0.85rem;
    font-weight: 500;
}

.reviews-grid-section .review-btn {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-grid-section .review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 11, 93, 0.3);
    color: #FFFFFF;
}

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

    .reviews-grid-section .reviews-subtitle {
        font-size: 0.9rem;
    }

    .reviews-grid-section .review-card {
        border-radius: 16px;
    }
}

/* ===== ratings-grid ===== */
.ratings-grid-section {
    background-color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ratings-grid-section .rating-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(227, 11, 93, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ratings-grid-section .rating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 11, 93, 0.12);
}

.ratings-grid-section .card-img-link img {
    transition: transform 0.6s ease;
}

.ratings-grid-section .rating-card:hover .card-img-link img {
    transform: scale(1.08);
}

.ratings-grid-section .btn-primary {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ratings-grid-section .btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.ratings-grid-section .btn-outline-primary {
    color: #E30B5D;
    border: 2px solid #E30B5D;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ratings-grid-section .btn-outline-primary:hover,
.ratings-grid-section .btn-outline-primary.active {
    background-color: #E30B5D;
    color: #FFFFFF;
}

.ratings-grid-section h2 {
    color: #1A1A1A;
    line-height: 1.2;
}

.ratings-grid-section .text-secondary {
    color: #4B5563 !important;
}

.ratings-grid-section .js-rating-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ===== footer ===== */
.footer-block {
    background-color: #FDF2F5;
    position: relative;
    border-top: 1px solid #F3F4F6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.footer-block::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    transform: skewY(-1deg);
    z-index: 1;
}

.footer-block .container {
    position: relative;
    z-index: 2;
}

.footer-block .text-primary-custom {
    color: #E30B5D;
}

.footer-block .text-secondary-custom {
    color: #4B5563;
    transition: color 0.3s ease;
}

.footer-block .text-muted-custom {
    color: #9CA3AF;
}

.footer-block .border-light-custom {
    border-color: #FFC1CC;
    opacity: 0.3;
}

.footer-block .footer-links a:hover {
    color: #E30B5D;
    transform: translateX(5px);
}

.footer-block .footer-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-block .footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-block .h6 {
    letter-spacing: 0.05em;
    font-weight: 700;
}

:root {
    --primary-custom: #E30B5D;
    --primary-light: #FDF2F5;
    --text-primary: #1A1A1A;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --border-color: #F3F4F6;
}

.repeat-theme-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.repeat-theme-header .nav-link:hover,
.repeat-theme-header .nav-link.active {
    color: var(--primary-custom);
}

.category-hero {
    background: #1A1A1A;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.category-hero-skew {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: var(--primary-custom);
    opacity: 0.1;
    transform: skewX(-15deg);
}

.bg-light-custom {
    background-color: #FDF2F5;
}

.text-primary-custom {
    color: var(--primary-custom);
}

.text-secondary-on-light {
    color: var(--text-secondary);
}

.text-muted-custom {
    color: var(--text-muted);
}

.game-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 11, 93, 0.08);
}

.game-card-img-wrapper {
    height: 200px;
}

.game-card-img-wrapper img {
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.author-avatar-small {
    width: 24px;
    height: 24px;
    background: var(--border-color);
    border-radius: 50%;
}

.btn-card-link {
    color: var(--primary-custom);
    font-weight: 600;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.btn-card-link:hover {
    opacity: 0.7;
}

.footer-block {
    background-color: #FDF2F5;
    position: relative;
    border-top: 1px solid #F3F4F6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.footer-block::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    transform: skewY(-1deg);
    z-index: 1;
}

.footer-block .container {
    position: relative;
    z-index: 2;
}

.footer-block .text-primary-custom {
    color: #E30B5D;
}

.footer-block .text-secondary-custom {
    color: #4B5563;
    transition: color 0.3s ease;
}

.footer-block .text-muted-custom {
    color: #9CA3AF;
}

.footer-block .border-light-custom {
    border-color: #FFC1CC;
    opacity: 0.3;
}

.footer-block .footer-links a:hover {
    color: #E30B5D;
    transform: translateX(5px);
}

.footer-block .footer-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767.98px) {
    .category-hero {
        min-height: 200px;
    }

    .category-hero h1 {
        font-size: 1.75rem;
    }

    .category-hero p {
        font-size: 1rem;
    }
}


/* ===== PAGE: privacy ===== */
.policy-section .policy-content-area .policy-wrapper { font-family: 'Inter', sans-serif; color: #1A1A1A; line-height: 1.6; max-width: 900px; margin: 0 auto; padding: 20px; } .policy-section .policy-content-area .policy-header { margin-bottom: 40px; border-bottom: 2px solid #F3F4F6; padding-bottom: 20px; } .policy-section .policy-content-area h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: #1A1A1A; margin-bottom: 10px; } .policy-section .policy-content-area .last-updated { color: #9CA3AF; font-size: 0.9rem; margin: 0; } .policy-section .policy-content-area h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; color: #E30B5D; margin-top: 35px; margin-bottom: 15px; border-left: 4px solid #E30B5D; padding-left: 15px; } .policy-section .policy-content-area p { margin-bottom: 20px; font-size: 1.125rem; color: #4B5563; } .policy-section .policy-content-area ul { margin-bottom: 25px; padding-left: 20px; list-style-type: none; } .policy-section .policy-content-area li { position: relative; margin-bottom: 12px; padding-left: 25px; font-size: 1.125rem; color: #4B5563; } .policy-section .policy-content-area li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; background-color: #E30B5D; border-radius: 50%; } .policy-section .policy-content-area strong { color: #1A1A1A; font-weight: 600; } @media (max-width: 768px) { .policy-section .policy-content-area .policy-wrapper { padding: 15px; } .policy-section .policy-content-area h1 { font-size: 1.75rem; } .policy-section .policy-content-area h2 { font-size: 1.4rem; } .policy-section .policy-content-area p, .policy-section .policy-content-area li { font-size: 1rem; } }

/* ===== PAGE: terms ===== */
.policy-section { background-color: #FFFFFF; padding: clamp(4rem, 10vw, 8rem) 0; min-height: 100vh; }.policy-section .policy-content-area { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }.policy-section .policy-content-area h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); color: #1A1A1A; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; text-align: left; }.policy-section .policy-content-area .last-updated { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #9CA3AF; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 0.05em; }.policy-section .policy-content-area h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); color: #E30B5D; font-weight: 600; margin-top: 3.5rem; margin-bottom: 1.5rem; line-height: 1.3; border-left: 4px solid #E30B5D; padding-left: 1.25rem; }.policy-section .policy-content-area p { font-family: 'Inter', sans-serif; font-size: 1.125rem; color: #4B5563; line-height: 1.8; margin-bottom: 1.5rem; }.policy-section .policy-content-area ul { margin-bottom: 2rem; list-style: none; padding-left: 0; }.policy-section .policy-content-area ul li { position: relative; padding-left: 2rem; color: #4B5563; margin-bottom: 1rem; font-size: 1.125rem; line-height: 1.6; }.policy-section .policy-content-area ul li::before { content: ""; position: absolute; left: 0; top: 0.65rem; width: 10px; height: 10px; background-color: #FF75A0; border-radius: 2px; transform: rotate(45deg); }@media (max-width: 768px) { .policy-section { padding: 3rem 0; } .policy-section .policy-content-area h1 { font-size: 24px; } .policy-section .policy-content-area h2 { font-size: 20px; margin-top: 2.5rem; } .policy-section .policy-content-area p, .policy-section .policy-content-area li { font-size: 16px; line-height: 1.6; hyphens: auto; } }

/* ===== PAGE: cookies ===== */
.policy-content-area {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background-color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1A1A;
  hyphens: auto;
  word-wrap: break-word;
}
.policy-content-area .policy-inner-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.policy-content-area .policy-title-main {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #E30B5D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.policy-content-area .policy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.policy-content-area .policy-text-block {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 1.25rem;
}
.policy-content-area .policy-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.policy-content-area .policy-bullet-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4B5563;
}
.policy-content-area .policy-bullet-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  background-color: #E30B5D;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .policy-content-area .policy-title-main {
    font-size: 18px !important;
  }
  .policy-content-area .policy-subtitle {
    font-size: 16px !important;
  }
  .policy-content-area .policy-text-block,
  .policy-content-area .policy-bullet-item {
    font-size: 14px !important;
    line-height: 1.6;
  }
  .policy-content-area .policy-bullet-item::before {
    top: 0.4rem;
    width: 8px;
    height: 8px;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-content-area {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #4B5563;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.policy-content-area h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1A1A;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #E30B5D;
  padding-left: 1rem;
}

.policy-content-area p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.policy-content-area ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  list-style: none;
}

.policy-content-area ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.policy-content-area ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background-color: #E30B5D;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .policy-content-area h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .policy-content-area p {
    font-size: 1rem;
  }
  .policy-content-area ul li {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: about ===== */
.about-content {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1A1A1A;
}

.about-content .bg-alt {
  background-color: #FDF2F5;
}

.about-content .text-primary {
  color: #E30B5D !important;
}

.about-content .btn-primary {
  background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 11, 93, 0.2);
}

.about-content .btn-outline-primary {
  border: 2px solid #E30B5D;
  color: #E30B5D;
  background: transparent;
}

.about-content .btn-outline-primary:hover {
  background: #E30B5D;
  color: #FFFFFF;
}

.about-content__image-wrapper {
  position: relative;
}

.about-content__image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: #FFC1CC;
  border-radius: 24px;
  z-index: 0;
  opacity: 0.3;
}

.about-content .transition-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content .transition-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(227, 11, 93, 0.1) !important;
}

.about-content__card {
  border: 1px solid #F3F4F6;
}

.about-content__icon-box {
  width: 64px;
  height: 64px;
  background: #FDF2F5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content .tab-content {
  min-height: 120px;
}

@media (max-width: 768px) {
  .about-content h1 {
    font-size: 24px !important;
  }
  .about-content h2 {
    font-size: 20px !important;
  }
  .about-content h3 {
    font-size: 18px !important;
  }
  .about-content .display-5 {
    font-size: 28px !important;
  }
}

/* ===== PAGE: contact ===== */
.contact-form-block {
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-skew-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #FDF2F5;
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 0;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #F3F4F6;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-side {
  background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
  color: #FFFFFF;
}

.contact-heading {
  font-weight: 700;
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.contact-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-feature-text {
  font-weight: 500;
  font-size: 1rem;
}

.contact-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.contact-input {
  border: 2px solid #F3F4F6;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  transition: border-color 0.3s ease;
}

.contact-input:focus {
  border-color: #FF4D8D;
  box-shadow: none;
  outline: none;
}

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

.contact-submit-btn {
  background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit-btn:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 11, 93, 0.2);
}

.contact-submit-btn:active {
  transform: scale(0.98);
}

.form-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background: #FDF2F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-reset-btn {
  border: 2px solid #E30B5D;
  color: #E30B5D;
  border-radius: 50px;
  padding: 0.5rem 2rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.contact-reset-btn:hover {
  background: #E30B5D;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .contact-skew-bg {
    height: 40%;
  }
  .contact-heading {
    font-size: 1.5rem;
  }
  .contact-card {
    border-radius: 16px;
  }
}

.tv-main-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 24px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(227, 11, 93, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tv-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 11, 93, 0.08);
}

.tv-comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E30B5D;
}

.tv-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.125rem;
}

.tv-star-filled {
    color: #E30B5D;
    font-size: 1rem;
}

.tv-star-empty {
    color: #D1D5DB;
    font-size: 1rem;
}

.tv-comment-content p {
    color: #4B5563;
    line-height: 1.6;
    font-size: 1.05rem;
}

.tv-btn-reply {
    color: #E30B5D;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tv-btn-reply:hover {
    background: #FDF2F5;
    border-color: #E30B5D;
}

.tv-icon {
    width: 18px;
    height: 18px;
}

.tv-reply-wrapper {
    border-left: 2px solid #FDF2F5;
    margin-left: 1.5rem;
}

.tv-reply-card {
    background: #FDF2F5;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    position: relative;
}

.tv-reply-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #FF75A0;
}

.tv-author-name-sm {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 1rem;
}

.tv-reply-card .tv-comment-content p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* ===== PAGE TEMPLATE: game-reviews ===== */
#hero-vortex {
    min-height: 60vh;
    background-color: #1A1A1A;
    position: relative;
}

#hero-vortex .hero-vortex-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-vortex .hero-vortex-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-vortex .hero-vortex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(227, 11, 93, 0.2) 100%);
}

#hero-vortex .hero-vortex-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

#hero-vortex .hero-vortex-lead {
    font-family: 'Inter', sans-serif;
    max-width: 600px;
}

.bg-primary-custom {
    background-color: #E30B5D;
    color: #FFFFFF;
}

.text-primary-custom {
    color: #E30B5D;
}

.tv-detail-wrapper {
    background-color: #FDF2F5;
    min-height: 100vh;
}

.tv-btn-primary {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 11, 93, 0.3);
}

.tv-btn-outline {
    border: 2px solid #E30B5D;
    color: #E30B5D;
    background: transparent;
    transition: all 0.3s ease;
}

.tv-btn-outline:hover {
    background: #E30B5D;
    color: #FFFFFF;
}

.tv-article-content h2 {
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tv-article-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.tv-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tv-slider-btn:hover {
    background: #E30B5D;
    color: #FFFFFF;
}

.tv-accordion-header {
    transition: background 0.3s ease;
}

.tv-accordion-header:hover {
    background: #FDF2F5;
}

.tv-comment-avatar,
.tv-reply-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.tv-comment-avatar {
    width: 48px;
    height: 48px;
}

.tv-reply-avatar {
    width: 36px;
    height: 36px;
}

.tv-star-filled {
    color: #FFC107;
}

.tv-star-empty {
    color: #E0E0E0;
}

.tv-btn-reply {
    color: #E30B5D;
    font-weight: 600;
    padding: 0;
}

.footer-block {
    background-color: #FDF2F5;
    position: relative;
    border-top: 1px solid #F3F4F6;
    padding-top: 80px;
}

.footer-block::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    transform: skewY(-1deg);
    z-index: 1;
}

.transition-300 {
    transition: all 0.3s ease;
}

.transition-400 {
    transition: all 0.4s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .tv-detail-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    #hero-vortex {
        min-height: 40vh;
    }
}

/* ===== PAGE TEMPLATE: game-ratings ===== */
#hero-vortex {
    min-height: 60vh;
    background-color: #1A1A1A;
    position: relative;
}

#hero-vortex .hero-vortex-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-vortex .hero-vortex-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-vortex .hero-vortex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(227, 11, 93, 0.2) 100%);
}

#hero-vortex .hero-vortex-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

#hero-vortex .hero-vortex-lead {
    font-family: 'Inter', sans-serif;
    max-width: 600px;
}

.bg-primary-custom {
    background-color: #E30B5D;
    color: #FFFFFF;
}

.text-primary-custom {
    color: #E30B5D;
}

.tv-detail-wrapper {
    background-color: #FDF2F5;
    min-height: 100vh;
}

.tv-btn-primary {
    background: linear-gradient(135deg, #E30B5D 0%, #FF75A0 100%);
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 11, 93, 0.3);
}

.tv-btn-outline {
    border: 2px solid #E30B5D;
    color: #E30B5D;
    background: transparent;
    transition: all 0.3s ease;
}

.tv-btn-outline:hover {
    background: #E30B5D;
    color: #FFFFFF;
}

.tv-article-content h2 {
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tv-article-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.tv-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tv-slider-btn:hover {
    background: #E30B5D;
    color: #FFFFFF;
}

.tv-accordion-header {
    transition: background 0.3s ease;
}

.tv-accordion-header:hover {
    background: #FDF2F5;
}

.tv-comment-avatar,
.tv-reply-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.tv-comment-avatar {
    width: 48px;
    height: 48px;
}

.tv-reply-avatar {
    width: 36px;
    height: 36px;
}

.tv-star-filled {
    color: #FFC107;
}

.tv-star-empty {
    color: #E0E0E0;
}

.tv-btn-reply {
    color: #E30B5D;
    font-weight: 600;
    padding: 0;
}

.footer-block {
    background-color: #FDF2F5;
    position: relative;
    border-top: 1px solid #F3F4F6;
    padding-top: 80px;
}

.footer-block::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    transform: skewY(-1deg);
    z-index: 1;
}

.transition-300 {
    transition: all 0.3s ease;
}

.transition-400 {
    transition: all 0.4s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .tv-detail-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    #hero-vortex {
        min-height: 40vh;
    }
}