:root {
    --primary: #0056b3;
    --secondary: #28a745;
    --accent: #00c6ff;
    --background-main: #f8fbff;
    --background-surface: #ffffff;
    --text-light-bg-primary: #1a1a1a;
    --text-light-bg-muted: #505f79;
    --text-dark-bg-primary: #ffffff;
    --text-dark-bg-muted: #d1d9e6;
    --border-color: #e1e9f4;
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #a2ffb6 100%);
    --status-success: #28a745;
    --status-warning: #ffc107;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background-main);
    color: var(--text-light-bg-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

* {
    box-sizing: border-box;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

/* ===== header ===== */
.oak-header .navbar {
    background-color: #ffffff !important;
    padding: 1rem 0;
    transition: padding 0.3s ease;
    border-bottom: 1px solid #e1e9f4;
}

.oak-header .oak-brand-img {
    max-width: 42px;
    height: auto;
    object-fit: contain;
}

.oak-header .oak-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #002b5c;
    letter-spacing: -0.02em;
}

.oak-header .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.oak-header .nav-link:hover {
    color: #0056b3 !important;
}

.oak-header .oak-btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

.oak-header .oak-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 86, 179, 0.25);
    color: #ffffff !important;
}

.oak-header .navbar-toggler {
    border: none;
    padding: 0;
}

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

.oak-header .navbar-collapse {
    background-color: #ffffff;
}

@media (max-width: 991.98px) {
    .oak-header .navbar-collapse {
        padding: 1.5rem 0;
        border-top: 1px solid #e1e9f4;
        margin-top: 1rem;
    }

    .oak-header .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1rem;
    }

    .oak-header .oak-brand-text {
        font-size: 1.1rem;
    }
}

/* ===== hero ===== */
.hero-section {
    min-height: 80vh;
    background-image: url('../site-files/images/pics/reliable-gaming-platforms-uk.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-section .hero-bg-overlay {
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.85) 0%, rgba(0, 86, 179, 0.6) 100%);
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-section .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff !important;
}

.hero-section .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 650px;
    line-height: 1.6;
    color: #d1d9e6 !important;
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 86, 179, 0.4);
}

.hero-section .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background-color: #ffffff;
    color: #002b5c !important;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }

    .hero-section .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-section .hero-actions {
        align-items: center;
    }

    .hero-section .hero-title {
        font-size: 1.5rem !important;
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* ===== top-platforms ===== */
.top-platforms-block {
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
}

.top-platforms-block .section-title {
    color: #002b5c;
    font-weight: 800;
    font-size: 2rem;
}

.top-platforms-block .section-subtitle {
    color: #505f79;
    font-size: 1.1rem;
    max-width: 700px;
}

.top-platforms-block .platform-card {
    background: #ffffff;
    border: 1px solid #e1e9f4;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    position: relative;
}

.top-platforms-block .platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
}

.top-platforms-block .card-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.top-platforms-block .logo-container {
    height: 120px;
    border-bottom: 1px solid #f0f4f9;
}

.top-platforms-block .platform-logo {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}

.top-platforms-block .platform-name {
    color: #002b5c;
    transition: color 0.3s ease;
}

.top-platforms-block .platform-name:hover {
    color: #0056b3;
}

.top-platforms-block .rating-badge {
    background: #eef4ff;
    color: #0056b3;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.top-platforms-block .visit-count {
    font-size: 0.85rem;
    color: #505f79;
}

.top-platforms-block .reward-box {
    background: #f0f7ff;
    border-left: 4px solid #00c6ff;
    border-radius: 4px;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.top-platforms-block .btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.top-platforms-block .btn-primary:hover {
    opacity: 0.9;
}

.top-platforms-block .terms-text {
    font-size: 0.7rem;
    color: #505f79;
    line-height: 1.3;
}

.top-platforms-block .js-sort-btn {
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 600;
    border-color: #0056b3;
    color: #0056b3;
}

.top-platforms-block .js-sort-btn.active {
    background-color: #0056b3;
    color: #ffffff;
}

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

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

/* ===== features ===== */
.oak-features-section {
    background-color: #f8fbff;
    background-image:linear-gradient(rgba(248, 251, 255, 0.92), rgba(248, 251, 255, 0.92)),
    url('../site-files/images/pics/oakriverpoint-features-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0
}

.oak-section-title {
    color: #002b5c;
    font-size: 24px
}

.oak-section-subtitle {
    color: #505f79;
    font-size: 16px;
    max-width: 800px
}

.oak-feature-card {
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    border: 1px solid #e1e9f4
}

.oak-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1) !important
}

.oak-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px
}

.oak-card-title {
    color: #002b5c;
    font-size: 18px
}

.oak-card-text {
    color: #505f79;
    font-size: 14px
}

.oak-features-section .btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #ffffff
}

.oak-features-section .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
    color: #ffffff
}

.oak-info-bar {
    border-color: #e1e9f4 !important
}

.oak-info-text {
    color: #505f79;
    font-size: 14px
}

@media(max-width:767px) {
    .oak-section-title {
        font-size: 16px
    }

    .oak-section-subtitle {
        font-size: 14px
    }

    .oak-card-title {
        font-size: 14px
    }

    .oak-card-text {
        font-size: 13px
    }

    .oak-info-text {
        font-size: 12px
    }
}

/* ===== evaluation-teaser ===== */
.evaluation-teaser-block {
    background-color: #f8fbff;
    overflow: hidden;
}

.evaluation-teaser-block .evaluation-title {
    color: #002b5c;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.2;
}

.evaluation-teaser-block .evaluation-lead {
    color: #505f79;
    font-size: 1.1rem;
}

.evaluation-teaser-block .evaluation-step-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e1e9f4;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evaluation-teaser-block .evaluation-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
}

.evaluation-teaser-block .step-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.evaluation-teaser-block .step-icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.evaluation-teaser-block .step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 0.5rem;
}

.evaluation-teaser-block .step-text {
    font-size: 0.9rem;
    color: #505f79;
    margin-bottom: 0;
    line-height: 1.5;
}

.evaluation-teaser-block .evaluation-cta-btn {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.evaluation-teaser-block .evaluation-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
    color: #ffffff;
}

.evaluation-teaser-block .evaluation-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.evaluation-teaser-block .evaluation-badge-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #0056b3;
}

.evaluation-teaser-block .badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evaluation-teaser-block .badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0056b3;
    line-height: 1;
}

.evaluation-teaser-block .badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #505f79;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 991px) {
    .evaluation-teaser-block .evaluation-image-container img {
        height: 350px;
        margin-top: 2rem;
    }

    .evaluation-teaser-block .evaluation-title {
        font-size: 1.75rem;
    }
}

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

    .evaluation-teaser-block .evaluation-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== footer ===== */
.oak-footer-block {
    background-color: #ffffff;
    border-top: 1px solid #e1e9f4;
    color: #1a1a1a;
}

.oak-footer-block__disclaimer {
    background-color: #f8fbff;
    border: 1px solid #e1e9f4;
    border-left: 4px solid #0056b3;
    border-radius: 12px;
}

.oak-footer-block__disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #505f79;
}

.oak-footer-block__logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.oak-footer-block__text {
    font-size: 15px;
    color: #505f79;
    line-height: 1.5;
}

.oak-footer-block__contacts p,
.oak-footer-block__contacts a {
    font-size: 14px;
    color: #505f79;
    transition: color 0.3s ease;
}

.oak-footer-block__contacts a:hover {
    color: #0056b3;
}

.oak-footer-block__nav a {
    font-size: 15px;
    color: #505f79;
    transition: all 0.3s ease;
}

.oak-footer-block__nav a:hover {
    color: #0056b3;
    padding-left: 5px;
}

.oak-footer-block__compliance-row {
    border-color: #e1e9f4 !important;
}

.oak-footer-block__compliance-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.oak-footer-block__compliance-logo:hover {
    transform: scale(1.05);
}

.oak-footer-block__compliance-icon {
    width: 40px;
    height: auto;
}

@media (max-width: 768px) {
    .oak-footer-block {
        padding: 40px 0 20px;
    }

    .oak-footer-block__disclaimer {
        padding: 20px !important;
    }

    .oak-footer-block__compliance-logo {
        width: 100px;
    }
}

.oak-header .navbar {
    background-color: #ffffff !important;
    padding: 1rem 0;
    transition: padding 0.3s ease;
    border-bottom: 1px solid #e1e9f4;
}

.oak-header .oak-brand-img {
    max-width: 42px;
    height: auto;
    object-fit: contain;
}

.oak-header .oak-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #002b5c;
    letter-spacing: -0.02em;
}

.oak-header .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.oak-header .nav-link:hover {
    color: #0056b3 !important;
}

.oak-header .oak-btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

.oak-header .oak-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 86, 179, 0.25);
    color: #ffffff !important;
}

.oak-rating-page .oak-card-wrapper {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    border-color: #e1e9f4 !important;
}

.oak-rating-page .oak-card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08) !important;
}

.oak-rating-page .oak-btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.oak-rating-page .oak-btn-primary:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.oak-rating-page .bg-success-subtle {
    background-color: #e7f5ea !important;
    color: #28a745 !important;
}

.oak-footer-block {
    background-color: #ffffff;
    border-top: 1px solid #e1e9f4;
    color: #1a1a1a;
}

.oak-footer-block__disclaimer {
    background-color: #f8fbff;
    border: 1px solid #e1e9f4;
    border-left: 4px solid #0056b3;
    border-radius: 12px;
}

.oak-footer-block__logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.oak-footer-block__text {
    font-size: 15px;
    color: #505f79;
    line-height: 1.5;
}

.oak-footer-block__nav a {
    font-size: 15px;
    color: #505f79;
    transition: all 0.3s ease;
}

.oak-footer-block__nav a:hover {
    color: #0056b3;
    padding-left: 5px;
}

.oak-footer-block__compliance-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.oak-footer-block__compliance-icon {
    width: 40px;
    height: auto;
}

@media (max-width: 991.98px) {
    .oak-header .navbar-collapse {
        padding: 1.5rem 0;
        border-top: 1px solid #e1e9f4;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .oak-footer-block__disclaimer {
        padding: 20px !important;
    }

    .oak-footer-block__compliance-logo {
        width: 100px;
    }
}


/* ===== PAGE: privacy ===== */
.policy-content-wrapper {
  padding: 40px 20px;
  background-color: #f8fbff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1a1a;
}
.policy-content-wrapper .policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #e1e9f4;
}
.policy-content-wrapper .policy-header .last-updated {
  font-size: 0.85rem;
  color: #505f79;
  font-weight: 500;
}
.policy-content-wrapper .policy-main-title {
  color: #002b5c;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0;
}
.policy-content-wrapper .policy-section-title {
  color: #0056b3;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 1rem;
  border-left: 4px solid #00c6ff;
  padding-left: 15px;
}
.policy-content-wrapper .policy-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 16px;
  color: #505f79;
}
.policy-content-wrapper .policy-section ul,
.policy-content-wrapper .policy-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.policy-content-wrapper .policy-section li {
  margin-bottom: 0.75rem;
  color: #505f79;
  line-height: 1.6;
}
.policy-content-wrapper .policy-section strong {
  color: #0056b3;
}
.policy-content-wrapper .contact-list {
  list-style: none;
  padding-left: 0 !important;
}
.policy-content-wrapper .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.policy-content-wrapper .contact-list a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.policy-content-wrapper .contact-list a:hover {
  color: #00c6ff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .policy-content-wrapper { padding: 20px 10px; }
  .policy-content-wrapper .policy-card { padding: 30px 20px; }
  .policy-content-wrapper .policy-main-title { font-size: 1.5rem; }
  .policy-content-wrapper .policy-section-title { font-size: 1.1rem; }
  .policy-content-wrapper .policy-section p,
  .policy-content-wrapper .policy-section li { font-size: 15px; }
}

/* ===== PAGE: terms ===== */
.policy-content-wrapper .terms-content {
  color: #1a1a1a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.policy-content-wrapper .terms-heading-main {
  color: #002b5c;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.policy-content-wrapper .terms-date {
  color: #505f79;
  font-size: 14px;
  margin-bottom: 32px;
  font-weight: 500;
}
.policy-content-wrapper .terms-section-title {
  color: #0056b3;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 16px;
  border-left: 4px solid #00c6ff;
  padding-left: 15px;
}
.policy-content-wrapper .terms-text {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 16px;
  color: #505f79;
}
.policy-content-wrapper .terms-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #505f79;
  margin-bottom: 24px;
  font-weight: 500;
}
.policy-content-wrapper .terms-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.policy-content-wrapper .terms-list li {
  margin-bottom: 12px;
  position: relative;
  list-style-type: none;
  padding-left: 30px;
  color: #505f79;
  line-height: 1.6;
}
.policy-content-wrapper .terms-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
}
.policy-content-wrapper .terms-contact-info {
  background: #f8fbff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e1e9f4;
  line-height: 1.8;
}
.policy-content-wrapper .terms-link {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.policy-content-wrapper .terms-link:hover {
  color: #00c6ff;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .policy-content-wrapper .terms-heading-main { font-size: 1.5rem !important; }
  .policy-content-wrapper .terms-section-title { font-size: 1.1rem !important; }
  .policy-content-wrapper .terms-text,
  .policy-content-wrapper .terms-list li { font-size: 15px !important; }
}

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper {
  padding: 40px 20px;
  background-color: #f8fbff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1a1a;
}

.policy-content-wrapper .policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #e1e9f4;
}

.policy-content-wrapper h2 {
  color: #002b5c;
  font-weight: 800;
  line-height: 1.2;
}

.policy-content-wrapper h3 {
  color: #0056b3;
  font-weight: 700;
  border-left: 4px solid #00c6ff;
  padding-left: 15px;
  margin-top: 30px;
}

.policy-content-wrapper p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 16px;
  color: #505f79;
}

.policy-content-wrapper .custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.policy-content-wrapper .custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #505f79;
}

.policy-content-wrapper .custom-list li::before {
  content: '\F26E';
  font-family: 'Bootstrap Icons';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
}

.policy-content-wrapper a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-content-wrapper a:hover {
  color: #00c6ff !important;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-content-wrapper {
    padding: 20px 10px;
  }
  
  .policy-content-wrapper .policy-card {
    padding: 30px 20px;
  }

  .policy-content-wrapper h2 {
    font-size: 24px;
  }

  .policy-content-wrapper h3 {
    font-size: 18px;
  }
  
  .policy-content-wrapper p {
    font-size: 15px;
  }
}

/* ===== PAGE: cookies ===== */
.policy-content-wrapper .policy-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #e1e9f4;
}

.policy-content-wrapper .policy-header {
  border-bottom: 2px solid #e1e9f4;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.policy-content-wrapper .policy-main-heading {
  color: #002b5c;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.policy-content-wrapper .policy-intro {
  color: #505f79;
  font-size: 16px;
  line-height: 1.8;
}

.policy-content-wrapper .policy-section {
  margin-bottom: 30px;
  position: relative;
  padding-left: 0;
}

.policy-content-wrapper .policy-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.policy-content-wrapper .policy-icon-box i {
  color: #ffffff;
  font-size: 1.2rem;
}

.policy-content-wrapper .policy-subheading {
  color: #0056b3;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-left: 4px solid #00c6ff;
  padding-left: 15px;
}

.policy-content-wrapper .policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.policy-content-wrapper .policy-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #505f79;
  line-height: 1.6;
}

.policy-content-wrapper .policy-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: #28a745;
  font-weight: bold;
}

.policy-content-wrapper .policy-alert {
  background-color: #fff9e6;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.policy-content-wrapper .policy-alert p {
  color: #856404;
  font-weight: 500;
}

.policy-content-wrapper .policy-meta {
  color: #505f79;
  border-top: 1px solid #e1e9f4;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .policy-content-wrapper .policy-inner {
    padding: 30px 20px;
  }

  .policy-content-wrapper .policy-main-heading {
    font-size: 1.5rem !important;
  }

  .policy-content-wrapper .policy-subheading {
    font-size: 1.1rem !important;
  }

  .policy-content-wrapper .policy-icon-box {
    width: 32px;
    height: 32px;
  }

  .policy-content-wrapper .policy-icon-box i {
    font-size: 1rem;
  }
}

/* ===== PAGE: about ===== */
.about-oakriverpoint .card:hover { transform: translateY(-8px); }.about-oakriverpoint .btn-primary:hover { transform: scale(1.05); }.about-oakriverpoint .btn-outline-primary:hover { background-color: #0056b3; color: #fff; }.about-oakriverpoint img { transition: opacity 0.3s ease-in-out; }.about-oakriverpoint .js-counter { font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -1px; }

/* ===== PAGE: addiction-help ===== */
.help-info-section { background-color: #f8fbff; font-family: 'Plus Jakarta Sans', sans-serif; }
.help-info-section .bg-light-blue { background-color: rgba(0, 86, 179, 0.08); }
.help-info-section .assessment-card, .help-info-section .resource-list-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.help-info-section .assessment-card:hover, .help-info-section .resource-list-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1) !important; }
.help-info-section .quiz-item { transition: border-color 0.2s; }
.help-info-section .quiz-item:hover { border-color: #0056b3 !important; }
.help-info-section .icon-box { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.help-info-section .external-org-card { background: #ffffff; transition: all 0.3s ease; }
.help-info-section .external-org-card:hover { border-color: #0056b3 !important; background: #f0f7ff; }
.help-info-section .support-cta-block { box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2); }
.help-info-section .btn-primary { background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%); border: none; }
.help-info-section .btn-outline-primary { border-color: #0056b3; color: #0056b3; }
.help-info-section .btn-outline-primary:hover { background-color: #0056b3; color: #ffffff; }

/* ===== PAGE: how-we-rate ===== */
.process-details {
  background-color: #f8fbff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}
.process-details__title {
  color: #002b5c;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.process-details__lead {
  color: #505f79;
  font-size: 1.125rem;
  line-height: 1.6;
}
.process-details__card {
  background: #ffffff;
  border: 1px solid #e1e9f4;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.process-details__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
}
.process-details__icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
.process-details__card-title {
  color: #002b5c;
  font-weight: 600;
}
.process-details__card-text {
  color: #505f79;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.process-details__workflow {
  background: #ffffff;
  border: 1px solid #e1e9f4;
}
.process-details__step {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}
.process-details__step:hover {
  background: rgba(0, 86, 179, 0.03);
}
.process-details__step.active {
  background: #ffffff;
  border-color: #00c6ff;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.05);
}
.process-details__step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #f0f4f9;
  color: #0056b3;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.process-details__step.active .process-details__step-num {
  background: #0056b3;
  color: #ffffff;
}
.process-details__image-stack img {
  object-fit: cover;
  min-height: 400px;
}
.process-details__floating-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #002b5c;
  border-left: 4px solid #28a745;
}
.process-details__floating-badge i {
  color: #28a745;
  font-size: 1.2rem;
}
.process-details__commitment .btn-primary {
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  border: none;
  font-weight: 600;
  border-radius: 8px;
}
.process-details__commitment .btn-outline-primary {
  border: 2px solid #0056b3;
  color: #0056b3;
  font-weight: 600;
  border-radius: 8px;
}
.process-details__commitment .btn-outline-primary:hover {
  background: #0056b3;
  color: #ffffff;
}
@media (max-width: 767px) {
  .process-details__image-stack img {
    min-height: auto;
  }
  .process-details__floating-badge {
    display: none !important;
  }
  .process-details__step {
    padding: 0.75rem;
  }
}

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

.faq-section .faq-search-box {
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.faq-section .faq-search-box .form-control {
  border: 1px solid #e1e9f4;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.faq-section .faq-search-box .form-control:focus {
  box-shadow: none;
  border-color: #0056b3;
}

.faq-section .faq-search-box .input-group-text {
  border: 1px solid #e1e9f4;
  font-size: 1.25rem;
}

.faq-section .faq-categories .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1.5px solid #0056b3;
  color: #0056b3;
}

.faq-section .faq-categories .btn:hover,
.faq-section .faq-categories .btn.active {
  background: #0056b3;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.faq-section .faq-accordion .accordion-item {
  border: 1px solid #e1e9f4;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.04);
  background: #ffffff;
}

.faq-section .faq-accordion .accordion-button {
  background: #ffffff;
  color: #002b5c;
  font-weight: 700;
  padding: 1.25rem;
  font-size: 1.1rem;
  box-shadow: none;
}

.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  color: #0056b3;
  background: #f0f7ff;
  border-bottom: 1px solid #e1e9f4;
}

.faq-section .faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230056b3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .faq-accordion .accordion-body {
  color: #505f79;
  line-height: 1.7;
  padding: 1.25rem;
  background: #ffffff;
}

.faq-section .faq-cta-card {
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  color: #ffffff;
}

.faq-section .faq-cta-card h2 {
  color: #ffffff;
  font-weight: 800;
}

.faq-section .faq-cta-card p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.faq-section .faq-cta-card .btn-primary {
  background: #ffffff;
  color: #0056b3;
  border: none;
  font-weight: 700;
}

.faq-section .faq-cta-card .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .faq-section .faq-categories {
    gap: 8px;
  }
  .faq-section .faq-categories .btn {
    font-size: 0.85rem;
    padding: 6px 15px;
  }
  .faq-section .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* ===== PAGE: contacts ===== */
.contact-details-section {
  background-color: #f8fbff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-details-section .contact-details-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.05);
  border: 1px solid #e1e9f4;
}

.contact-details-section .contact-main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #002b5c;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact-details-section .contact-main-text {
  color: #505f79;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-details-section .contact-card {
  background: #ffffff;
  border: 1px solid #e1e9f4;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.contact-details-section .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
}

.contact-details-section .contact-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
}

.contact-details-section .contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #002b5c;
  margin-bottom: 1rem;
}

.contact-details-section .contact-card-desc {
  color: #505f79;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-details-section .contact-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
}

.contact-details-section .contact-btn-primary {
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  color: #ffffff;
  border: none;
}

.contact-details-section .contact-btn-primary:hover {
  filter: brightness(1.1);
  color: #ffffff;
  transform: scale(1.02);
}

.contact-details-section .contact-btn-success {
  background: linear-gradient(135deg, #28a745 0%, #a2ffb6 100%);
  color: #ffffff;
  border: none;
}

.contact-details-section .contact-btn-success:hover {
  filter: brightness(1.1);
  color: #ffffff;
  transform: scale(1.02);
}

.contact-details-section .contact-btn-outline {
  background: #ffffff;
  color: #0056b3;
  border: 2px solid #0056b3;
}

.contact-details-section .contact-btn-outline:hover {
  background: #0056b3;
  color: #ffffff;
}

.contact-details-section .contact-info-banner {
  background: #f0f7ff;
  border-radius: 16px;
  border-left: 5px solid #0056b3;
}

.contact-details-section .banner-image-container img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.contact-details-section .banner-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #002b5c;
  margin-bottom: 0.5rem;
}

.contact-details-section .banner-text {
  color: #505f79;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-details-section .contact-main-heading {
    font-size: 1.75rem;
  }
  .contact-details-section .contact-main-text {
    font-size: 1rem;
  }
  .contact-details-section .banner-image-container img {
    width: 100%;
    height: 200px;
  }
}

/* ===== PAGE: safer-gaming ===== */
.safer-gaming-content {
  background-color: #f8fbff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.safer-gaming-content .safer-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.safer-gaming-content .safer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 86, 179, 0.12) !important;
}

.safer-gaming-content .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  border-radius: 50%;
  color: #0056b3;
}

.safer-gaming-content .form-check-input:checked {
  background-color: #0056b3;
  border-color: #0056b3;
}

.safer-gaming-content .accordion-button:not(.collapsed) {
  background-color: #eef5ff;
  color: #0056b3;
  box-shadow: none;
}

.safer-gaming-content .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 86, 179, 0.12);
}

.safer-gaming-content .accordion-item {
  border: none;
}

.safer-gaming-content .list-group-item {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.safer-gaming-content .list-group-item:hover {
  background-color: #f8fbff;
}

.safer-gaming-content .btn-primary {
  background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
  border: none;
}

.safer-gaming-content .btn-primary:hover {
  opacity: 0.9;
}

@media (max-width: 767.98px) {
  .safer-gaming-content .display-5 {
    font-size: 1.75rem;
  }
  .safer-gaming-content .h3 {
    font-size: 1.4rem;
  }
  .safer-gaming-content .accordion-button {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.main-comment-card {
    background: #ffffff;
    border: 1px solid #e1e9f4;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-comment-card:hover {
    transform: translateY(-4px);
}

.user-avatar-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.commenter-name {
    color: #002b5c;
    font-weight: 700;
}

.comment-text {
    color: #1a1a1a;
    line-height: 1.6;
}

.comment-rating-stars {
    font-size: 0.85rem;
}

.btn-action-link {
    background: none;
    border: none;
    color: #0056b3;
    font-weight: 600;
    font-size: 14px;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-action-link:hover {
    color: #00c6ff;
}

.btn-vote {
    background: #f8fbff;
    border: 1px solid #e1e9f4;
    border-radius: 8px;
    padding: 4px 10px;
    color: #505f79;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-vote:hover {
    background: #ffffff;
    border-color: #0056b3;
    color: #0056b3;
}

.reply-comment-card {
    background: #f8fbff;
    border: 1px solid #e1e9f4;
    border-left: 3px solid #0056b3;
    border-radius: 12px;
    position: relative;
}

.reply-comment-card::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #e1e9f4;
}

.user-avatar-circle-sm {
    width: 36px;
    height: 36px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

.commenter-name-sm {
    color: #002b5c;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.badge-staff {
    background: #e1e9f4;
    color: #0056b3;
    font-size: 10px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.comment-text-sm {
    color: #505f79;
    font-size: 14px;
    line-height: 1.5;
}

.btn-action-link-sm {
    background: none;
    border: none;
    color: #505f79;
    font-weight: 600;
    font-size: 12px;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-action-link-sm:hover {
    color: #0056b3;
}


/* ===== PAGE TEMPLATE: rating ===== */
.oak-detail-page-wrapper {
    background-color: #f8fbff;
}

.oak-header .navbar {
    background-color: #ffffff !important;
    padding: 1rem 0;
    transition: padding 0.3s ease;
    border-bottom: 1px solid #e1e9f4;
}

.oak-header .oak-brand-img {
    max-width: 42px;
    height: auto;
    object-fit: contain;
}

.oak-header .oak-brand-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #002b5c;
    letter-spacing: -0.02em;
}

.oak-header .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.oak-header .oak-btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
}

.oak-hero-detail .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.oak-score-badge {
    background: linear-gradient(135deg, #28a745 0%, #a2ffb6 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.oak-cta-btn {
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.oak-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
}

.oak-detail-logo {
    transition: transform 0.3s ease;
}

.oak-brand-container:hover .oak-detail-logo {
    transform: scale(1.05);
}

.oak-content-body h1,
.oak-content-body h2,
.oak-content-body h3 {
    color: #002b5c;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.oak-content-body p {
    color: #505f79;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.oak-content-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.oak-content-body li {
    color: #505f79;
    margin-bottom: 0.5rem;
}

.oak-footer-block {
    background-color: #ffffff;
    border-top: 1px solid #e1e9f4;
}

.oak-footer-block__disclaimer {
    background-color: #f8fbff;
    border: 1px solid #e1e9f4;
    border-left: 4px solid #0056b3;
    border-radius: 12px;
}

.oak-star-rating-select .bi {
    cursor: pointer;
    color: #d1d9e6;
    transition: color 0.2s ease;
}

.oak-star-rating-select .bi.active {
    color: #ffc107;
}

.js-vote-btn.active {
    color: #0056b3 !important;
    background-color: #f0f7ff !important;
}

@media (max-width: 768px) {
    .oak-hero-detail {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

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

    .oak-detail-card {
        padding: 1.5rem !important;
    }
}