/*
Theme Name: Reel
Description: Тема для обзоров слотов с шаблоном «Главная» и полями ACF PRO.
Version: 1.2.1
Author: TheJema
Author URI: https://shop.thejema.ru/
Text Domain: reel
*/
:root {
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-card: #f1f5f9;
    --accent-green: #16a34a;
    --accent-blue: #2563eb;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.reel-home {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-anchor: none;
}

.reel-home button,
.reel-home input,
.reel-home select,
.reel-home textarea {
    font-family: inherit;
}

.reel-home .reel-scroll-sentinel {
    height: 2px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    pointer-events: none;
    flex-shrink: 0;
}

.reel-home h1, .reel-home h2, .reel-home h3, .reel-home h4 {
    font-family: inherit;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.reel-home a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.reel-home ul {
    list-style: none;
}

.reel-home .container {
    max-width: 1200px;
    margin: 0 auto;
}

.reel-home header {
    background: var(--bg-white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: padding 0.35s ease, box-shadow 0.35s ease;
}

.reel-home header.header--layout-center {
    padding: 16px 0 12px;
}

.reel-home header.header--layout-center.header--scrolled {
    padding: 25px 0;
}

.reel-home .header-wrap {
    display: flex;
    position: relative;
}

.reel-home .header-burger {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    color: var(--text-main);
    line-height: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 2;
}

.reel-home .header-burger:hover {
    background: var(--bg-card);
}

.reel-home .header-burger:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.reel-home .header-burger__lines {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    position: relative;
    transition: background 0.2s ease;
}

.reel-home .header-burger__lines::before,
.reel-home .header-burger__lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, top 0.25s ease;
}

.reel-home .header-burger__lines::before {
    top: -7px;
}

.reel-home .header-burger__lines::after {
    top: 7px;
}

.reel-home .header-burger--active .header-burger__lines {
    background: transparent;
}

.reel-home .header-burger--active .header-burger__lines::before {
    top: 0;
    transform: rotate(45deg);
}

.reel-home .header-burger--active .header-burger__lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.reel-home .header-wrap--logo-left {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px 24px;
}

.reel-home .header-wrap--logo-left .header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}

.reel-home .header-wrap--logo-left .header-nav .menu {
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.reel-home .header-wrap--logo-center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    transition: gap 0.35s ease;
}

.reel-home header.header--scrolled .header-wrap--logo-center {
    gap: 0;
}

.reel-home .header-wrap--logo-center > .logo {
    opacity: 1;
    max-height: 130px;
    margin: 0;
    overflow: hidden;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.35s ease,
    max-height 0.4s ease,
    margin 0.35s ease,
    transform 0.35s ease;
}

.reel-home header.header--scrolled .header-wrap--logo-center > .logo {
    opacity: 0;
    max-height: 0;
    min-height: 0;
    margin: 0;
    pointer-events: none;
    transform: translateY(-6px);
}

.reel-home .header-wrap--logo-center .header-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.reel-home .header-wrap--logo-center .header-nav .menu {
    justify-content: center;
    flex-wrap: wrap;
}

.reel-home .logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.reel-home .header-wrap--logo-left .logo.logo--image {
    text-transform: none;
    width: 70px;
    height: 70px;
}

.reel-home .header-wrap--logo-left .logo-img {
    width: 70px;
    height: 70px;
    max-width: 70px;
    max-height: 70px;
    display: block;
    object-fit: contain;
}

.reel-home .header-wrap--logo-center .logo.logo--image {
    text-transform: none;
    width: 100px;
    height: 100px;
}

.reel-home .header-wrap--logo-center .logo-img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    display: block;
    object-fit: contain;
}

.reel-home .header-nav .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.reel-home .header-nav .menu > li {
    flex-shrink: 0;
}

.reel-home .menu a {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    letter-spacing: 1.4px;
}

.reel-home .menu a:hover {
    color: var(--accent-blue);
}

.reel-home .page-main {
    padding: 40px 0 60px;
}

.reel-home .hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.reel-home .slot-title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 800;
}

.reel-home .slot-provider {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    display: block;
}

.reel-home .game-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.reel-home .game-frame {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reel-home .game-frame-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 0;
    pointer-events: none;
}

.reel-home .game-frame-iframe-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reel-home .game-frame-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.reel-home .game-frame--loaded .game-frame-poster {
    visibility: hidden;
}

.reel-home .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 2;
}

.reel-home .game-frame--loaded .game-overlay,
.reel-home .game-overlay[hidden] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.reel-home .game-buttons-overlay {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.reel-home .btn {
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.reel-home .btn-demo {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    border: 2px solid #fff;
}

.reel-home .btn-demo:hover:not(:disabled) {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reel-home .btn-demo:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.reel-home .btn-real {
    background: var(--accent-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.reel-home .btn-real:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
    background: #15803d;
}

.reel-home .casino-card .btn-real:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.45);
    background: #15803d;
}

.reel-home .specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.reel-home .spec-card {
    background: var(--bg-white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
    transition: 0.3s;
}

.reel-home .spec-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reel-home .spec-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.reel-home .spec-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-blue);
}

.reel-home .casinos-section {
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.reel-home .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 800;
}

.reel-home .casinos-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.reel-home .casino-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.reel-home .casino-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 6px 28px rgba(15, 23, 42, 0.08);
}

.reel-home .casino-card__logo-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-home .casino-card__logo-col .casino-logo {
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    display: block;
    border: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 8px;
}

.reel-home .casino-card__middle {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;

}

.reel-home .casino-card__name-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px 16px;
    width: 100%;
    min-width: 0;
}

.reel-home .casino-card__name-row_one {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.reel-home .casino-title {
    margin: 0;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-main);
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.reel-home .casino-card__name-row_one .casino-card__rating {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.reel-home .casino-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.reel-home .casino-rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.reel-home .casino-star {
    flex-shrink: 0;
    display: block;
}

.reel-home .casino-star--full {
    color: #f59e0b;
}

.reel-home .casino-star--empty {
    color: #e5e7eb;
}

.reel-home .casino-star--half .casino-star__bg {
    color: #e5e7eb;
}

.reel-home .casino-star--half .casino-star__fg {
    color: #f59e0b;
}

.reel-home .casino-rating__value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.reel-home .casino-rating--10 .casino-rating__stars {
    gap: 2px;
    flex-wrap: wrap;
    max-width: 100%;
}

.reel-home .casino-card__name-row .casino-bonus {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(100%, 320px);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 0;
    box-shadow: none;
    margin-left: 50px;
}

.reel-home .casino-bonus__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 2px 0 0;
    width: auto;
    min-height: 0;
    background: none;
    border: 0;
    box-shadow: none;
    color: var(--text-muted);
    opacity: 0.85;
}

.reel-home .casino-bonus__gift-svg {
    width: 20px;
    height: 20px;
}

.reel-home .casino-bonus__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: left;
    min-width: 0;
}

.reel-home .bonus-amount {
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    color: var(--text-main);
    letter-spacing: 0;
}

.reel-home .bonus-desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-muted);
    font-weight: 500;
}

.reel-home .casino-action {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: auto;
    text-align: center;
    align-self: center;
}

.reel-home .btn-small {
    padding: 12px 28px;
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
}

.reel-home .faq-section {
    margin-top: 48px;
    margin-bottom: 60px;
}

.reel-home .faq-section .section-title {
    margin-bottom: 28px;
}

.reel-home .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
}

.reel-home .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reel-home .faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
}

.reel-home .faq-item--open {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.reel-home .faq-item__heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.reel-home .faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border: 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 55%, #f8fafc 100%);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}

.reel-home .faq-item--open .faq-item__trigger {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    color: var(--accent-blue);
}

.reel-home .faq-item__trigger:hover,
.reel-home .faq-item__trigger:focus-visible {
    outline: none;
    background: linear-gradient(135deg, #e0f2fe 0%, #f1f5f9 100%);
}

.reel-home .faq-item__trigger:focus-visible {
    box-shadow: inset 0 0 0 2px var(--accent-blue);
}

.reel-home .faq-item__question-text {
    flex: 1 1 auto;
    min-width: 0;
}

.reel-home .faq-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
}

.reel-home .faq-item--open .faq-item__icon {
    transform: rotate(180deg);
    background: rgba(37, 99, 235, 0.15);
}

.reel-home .faq-item__panel {
    border-top: 1px solid var(--border);
    background: var(--bg-white);
}

.reel-home .faq-item__panel[hidden] {
    display: none;
}

.reel-home .faq-item__answer {
    padding: 20px 22px 24px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
}

.reel-home .faq-item__answer p {
    margin: 0 0 1em;
}

.reel-home .faq-item__answer p:last-child {
    margin-bottom: 0;
}

.reel-home .faq-item__answer a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.reel-home .faq-item__answer a:hover {
    color: #1d4ed8;
}

.reel-home .faq-item__answer ul,
.reel-home .faq-item__answer ol {
    margin: 0 0 1em;
    padding-left: 1.35em;
}

.reel-home .review-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 60px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.reel-home #review p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 27px;
}

.reel-home #review h1.review-main-heading {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.25;
}

.reel-home #review h1:not(.review-main-heading):not(.screen-reader-text) {
    font-size: 26px;
    margin: 1.5rem 0 1rem;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.3;
}

.reel-home #review h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

.reel-home #review h2:first-child {
    margin-top: 0;
}

.reel-home #review h3 {
    font-size: 1.35rem;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.35;
}

.reel-home #review ul:not(.blocks-gallery-grid):not([class*="wp-block-gallery"]) {
    list-style: disc;
    padding-left: 1.35em;
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 16px;
}

.reel-home #review ol {
    list-style: decimal;
    padding-left: 1.35em;
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 16px;
}

.reel-home #review ul ul {
    list-style: circle;
    margin-top: 0.35em;
    margin-bottom: 0.35em;
}

.reel-home #review ol ol {
    list-style: lower-alpha;
    margin-top: 0.35em;
    margin-bottom: 0.35em;
}

.reel-home #review li {
    margin-bottom: 0.4em;
    line-height: 1.6;
}

.reel-home #review li > ul,
.reel-home #review li > ol {
    margin-bottom: 0.35em;
}

.reel-home #review blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem 1rem 1.25rem;
    border-left: 4px solid var(--accent-blue);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-main);
    font-size: 17px;
    line-height: 1.55;
}

.reel-home #review blockquote cite,
.reel-home #review blockquote .wp-block-quote__citation {
    display: block;
    margin-top: 0.75em;
    font-size: 0.92em;
    font-style: normal;
    color: var(--text-muted);
}

.reel-home #review blockquote p:last-child {
    margin-bottom: 0;
}

.reel-home #review img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.reel-home #review .alignleft {
    float: left;
    margin: 0 1.25rem 1rem 0;
}

.reel-home #review .alignright {
    float: right;
    margin: 0 0 1rem 1.25rem;
}

.reel-home #review .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.reel-home #review .alignnone {
    display: inline-block;
    max-width: 100%;
}

.reel-home #review .wp-caption {
    max-width: 100%;
    margin-bottom: 1.25rem;
}

.reel-home #review .wp-caption img {
    display: block;
}

.reel-home #review .wp-caption-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5em;
    line-height: 1.4;
    text-align: center;
}

.reel-home #review .wp-block-table,
.reel-home #review figure.wp-block-table {
    margin: 1.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.reel-home #review table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 15px;
    color: var(--text-main);
}

.reel-home #review th,
.reel-home #review td {
    border: 1px solid var(--border);
    padding: 10px 14px;
    text-align: left;
    vertical-align: top;
}

.reel-home #review thead th,
.reel-home #review th {
    background: var(--bg-card);
    font-weight: 600;
}

.reel-home #review figcaption {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5em;
    text-align: center;
}

.reel-home #review iframe {
    max-width: 100%;
    border: 0;
    vertical-align: middle;
}

.reel-home #review .wp-block-embed {
    margin: 1.5rem 0;
}

.reel-home #review .wp-block-embed .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
}

.reel-home #review .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.reel-home #review .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 180px;
}

.reel-home #review::after {
    content: "";
    display: table;
    clear: both;
}

.reel-home .review-quote {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 30px;
    border-left: 5px solid var(--accent-blue);
    font-style: italic;
    margin: 35px 0;
    border-radius: 0 12px 12px 0;
    color: var(--text-main);
    font-size: 17px;
}

.reel-home .review-note {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--accent-green);
    padding: 20px;
    border-radius: 12px;
    font-size: 15px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    color: var(--text-main);
}

.reel-home .review-note strong {
    color: var(--accent-green);
}

.reel-home footer {
    background: var(--bg-card);
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 2px solid var(--border);
}

.reel-home .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
