.seo-summary-box-root {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #f8fafc;
--ssb-active-bg: #eef2ff;
--ssb-tab-text: #0f172a;
--brand-size: 84px;
}
.seo-summary-box-root .ssb-card {
background: var(--ssb-card-bg);
border-radius: 14px;
box-shadow: 0 14px 38px rgba(2, 6, 23, 0.08);
overflow: hidden;
border: 1px solid rgba(15, 23, 42, 0.06);
direction: rtl;
}
.ssb-card {
margin-bottom: var(--ssb-mb, 24px);
}
.ssb-tabs {
display: flex;
gap: 0;
background: var(--ssb-tabs-bg);
}
.ssb-tabs button {
flex: 1;
padding: 12px 14px;
border: 0;
background: transparent;
cursor: pointer;
font-weight: 600;
color: var(--ssb-tab-text);
}
.ssb-tabs button.active {
background: linear-gradient(90deg, var(--ssb-active-bg), #fff);
}
.ssb-tabtitle {
display: inline-flex;
align-items: center;
gap: 8px;
}
.ssb-badge {
font-size: 14px;
line-height: 1;
}
.ssb-content {
padding: 16px;
}
.ssb-infographic {
width: 100%;
max-height: 480px;
overflow: auto;
}
.ssb-tooltip {
position: absolute;
z-index: 9999;
background: #fff;
padding: 10px;
border-radius: 8px;
box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
max-width: 320px;
}
.ssb-media {
width: 100%;
height: auto;
border-radius: 8px;
}
.ssb-media::-webkit-media-controls-enclosure {
overflow: hidden;
border-radius: 8px;
} .ssb-audio {
display: block !important;
min-height: 38px;
background: #fff;
}
.ssb-media[controls] {
outline: none;
}
.ssb-small {
font-size: 14px;
color: #475569;
}
.ssb-split {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
.ssb-split__media {
order: 1;
}
.ssb-split__text {
order: 2;
color: var(--ssb-tab-text);
font-weight: 600;
}
@media (min-width: 768px) {
.ssb-split {
grid-template-columns: 1.2fr 1fr;
align-items: center;
}
.ssb-split__media {
order: 1;
}
.ssb-split__text {
order: 2;
}
} .seo-summary-box-root .ssb-card.ssb-acc-h {
display: flex;
gap: 0;
}
.seo-summary-box-root .ssb-acc-h__headers {
display: flex;
flex-direction: column;
background: var(--ssb-tabs-bg);
min-width: 180px;
border-inline-end: 1px solid rgba(15, 23, 42, 0.06);
}
.seo-summary-box-root .ssb-acc-h__headers button {
padding: 12px 14px;
border: 0;
background: transparent;
cursor: pointer;
text-align: right;
border-bottom: 1px solid rgba(15, 23, 42, 0.04);
font-weight: 600;
color: var(--ssb-tab-text);
}
.seo-summary-box-root .ssb-acc-h__headers button.active {
background: linear-gradient(180deg, var(--ssb-active-bg), #fff);
}
.seo-summary-box-root .ssb-acc-h__panel {
padding: 16px;
flex: 1;
} .seo-summary-box-root .ssb-card.ssb-acc {
display: block;
}
.seo-summary-box-root .ssb-acc__item {
border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.seo-summary-box-root .ssb-acc__header {
width: 100%;
text-align: right;
display: block;
padding: 14px 16px;
background: var(--ssb-tabs-bg);
border: 0;
cursor: pointer;
font-weight: 700;
color: var(--ssb-tab-text);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.seo-summary-box-root .ssb-acc__header:hover {
background: linear-gradient(180deg, var(--ssb-active-bg), #fff);
transform: translateY(-1px);
}
.seo-summary-box-root .ssb-acc__header.active {
background: linear-gradient(180deg, var(--ssb-active-bg), #fff);
box-shadow: 0 2px 8px rgba(2, 6, 23, 0.08);
}
.seo-summary-box-root .ssb-acc__header::after {
content: "▼";
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
color: var(--ssb-tab-text);
opacity: 0.6;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-summary-box-root .ssb-acc__header.active::after {
transform: translateY(-50%) rotate(180deg);
opacity: 1;
}
.seo-summary-box-root .ssb-acc__panel {
padding: 0 16px 16px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-summary-box-root .ssb-acc__content {
opacity: 0;
transform: translateY(-10px);
animation: ssb-acc-fade-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes ssb-acc-fade-in {
to {
opacity: 1;
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
.seo-summary-box-root .ssb-acc__header,
.seo-summary-box-root .ssb-acc__panel,
.seo-summary-box-root .ssb-acc__content {
transition: none;
animation: none;
}
.seo-summary-box-root .ssb-acc__header:hover {
transform: none;
}
} .seo-summary-box-root .ssb-tabs button {
position: relative;
}
.seo-summary-box-root .ssb-tabs button.active::after {
content: "";
position: absolute;
inset-inline-start: 0;
inset-inline-end: 0;
bottom: 0;
height: 3px;
background: var(--ssb-active-bg);
} .seo-summary-box-root .ssb-card:hover {
box-shadow: 0 18px 48px rgba(2, 6, 23, 0.12);
} .seo-summary-box-root.theme-default {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #f8fafc;
--ssb-active-bg: #eef2ff;
--ssb-tab-text: #0f172a;
}
.seo-summary-box-root.theme-ocean {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #e6f3ff;
--ssb-active-bg: #cfe8ff;
--ssb-tab-text: #0b3b60;
}
.seo-summary-box-root.theme-sunset {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #fff1e6;
--ssb-active-bg: #ffe0cc;
--ssb-tab-text: #6b2e15;
}
.seo-summary-box-root.theme-emerald {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #e9f8f1;
--ssb-active-bg: #d3f1e3;
--ssb-tab-text: #0b3d2e;
}
.seo-summary-box-root.theme-rose {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #fff0f4;
--ssb-active-bg: #ffe3ec;
--ssb-tab-text: #6d0b2f;
} #seo-summary-box-root.theme-glass,
.seo-summary-box-root.theme-glass {
--ssb-card-bg: rgba(255, 255, 255, 0.7);
--ssb-tabs-bg: rgba(255, 255, 255, 0.5);
--ssb-active-bg: rgba(255, 255, 255, 0.9);
--ssb-tab-text: #1e293b;
}
#seo-summary-box-root.theme-glass .ssb-card,
.seo-summary-box-root.theme-glass .ssb-card {
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.4);
}
#seo-summary-box-root.theme-neumorphism,
.seo-summary-box-root.theme-neumorphism {
--ssb-card-bg: #e0e5ec;
--ssb-tabs-bg: #e0e5ec;
--ssb-active-bg: #e0e5ec;
--ssb-tab-text: #4a5568;
}
#seo-summary-box-root.theme-neumorphism .ssb-card,
.seo-summary-box-root.theme-neumorphism .ssb-card {
box-shadow: 9px 9px 16px rgb(163, 177, 198, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5);
border: none;
}
#seo-summary-box-root.theme-neumorphism .ssb-tabs button.active,
.seo-summary-box-root.theme-neumorphism .ssb-tabs button.active {
box-shadow: inset 6px 6px 10px 0 rgba(163, 177, 198, 0.7), inset -6px -6px 10px 0 rgba(255, 255, 255, 0.8);
background: transparent;
}
#seo-summary-box-root.theme-cyberpunk,
.seo-summary-box-root.theme-cyberpunk {
--ssb-card-bg: #050505;
--ssb-tabs-bg: #111;
--ssb-active-bg: #fcee0a;
--ssb-tab-text: #fcee0a;
}
#seo-summary-box-root.theme-cyberpunk .ssb-card,
.seo-summary-box-root.theme-cyberpunk .ssb-card {
border: 2px solid #00f0ff;
box-shadow: 0 0 10px #00f0ff;
color: #fff;
}
#seo-summary-box-root.theme-cyberpunk .ssb-tabs button.active,
.seo-summary-box-root.theme-cyberpunk .ssb-tabs button.active {
color: #000;
text-shadow: none;
}
#seo-summary-box-root.theme-cyberpunk .ssb-content,
.seo-summary-box-root.theme-cyberpunk .ssb-content {
color: #e0e0e0;
}
#seo-summary-box-root.theme-luxury,
.seo-summary-box-root.theme-luxury {
--ssb-card-bg: #121212;
--ssb-tabs-bg: #1a1a1a;
--ssb-active-bg: #d4af37;
--ssb-tab-text: #d4af37;
}
#seo-summary-box-root.theme-luxury .ssb-card,
.seo-summary-box-root.theme-luxury .ssb-card {
border: 1px solid #d4af37;
}
#seo-summary-box-root.theme-luxury .ssb-tabs button.active,
.seo-summary-box-root.theme-luxury .ssb-tabs button.active {
color: #000;
background: linear-gradient(45deg, #d4af37, #f2d06b);
}
#seo-summary-box-root.theme-luxury .ssb-content,
.seo-summary-box-root.theme-luxury .ssb-content {
color: #f0f0f0;
}
#seo-summary-box-root.theme-corporate,
.seo-summary-box-root.theme-corporate {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #f3f4f6;
--ssb-active-bg: #374151;
--ssb-tab-text: #374151;
}
#seo-summary-box-root.theme-corporate .ssb-tabs button.active,
.seo-summary-box-root.theme-corporate .ssb-tabs button.active {
color: #fff;
}  .seo-summary-box-root .ssb-layout-grid .ssb-tabs {
display: none;
}
.seo-summary-box-root .ssb-layout-grid .ssb-content {
padding: 0;
}
.seo-summary-box-root .ssb-layout-grid .ssb-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
padding: 16px;
}
.seo-summary-box-root .ssb-layout-grid .ssb-grid-item {
background: var(--ssb-tabs-bg);
border-radius: 8px;
padding: 16px;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.seo-summary-box-root .ssb-layout-grid .ssb-grid-title {
font-weight: bold;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
color: var(--ssb-tab-text);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding-bottom: 8px;
} .seo-summary-box-root .ssb-layout-minimal .ssb-tabs {
display: none;
}
.seo-summary-box-root .ssb-layout-minimal .ssb-list-item {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 16px;
}
.seo-summary-box-root .ssb-layout-minimal .ssb-list-item:last-child {
border-bottom: none;
}
.seo-summary-box-root .ssb-layout-minimal .ssb-list-title {
font-weight: bold;
margin-bottom: 8px;
color: var(--ssb-tab-text);
display: flex;
align-items: center;
gap: 8px;
} .seo-summary-box-root .ssb-layout-sidebar {
display: flex;
flex-direction: row;
}
.seo-summary-box-root .ssb-layout-sidebar .ssb-tabs {
flex-direction: column;
width: 200px;
flex-shrink: 0;
border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.seo-summary-box-root .ssb-layout-sidebar .ssb-tabs button {
text-align: right;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.seo-summary-box-root .ssb-layout-sidebar .ssb-tabs button.active::after {
width: 3px;
height: 100%;
right: 0;
top: 0;
bottom: auto;
left: auto;
}
.seo-summary-box-root .ssb-layout-sidebar .ssb-content {
flex-grow: 1;
} .seo-summary-box-root .ssb-layout-sidebar-left {
flex-direction: row-reverse;
}
.seo-summary-box-root .ssb-layout-sidebar-left .ssb-tabs {
border-left: none;
border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.seo-summary-box-root .ssb-layout-sidebar-left .ssb-tabs button {
text-align: left;
} .seo-summary-box-root .ssb-hero {
padding: 18px 18px 10px;
display: flex;
align-items: center;
gap: 12px;
position: relative;
background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(236, 72, 153, 0.10));
border-bottom: 1px solid rgba(15, 23, 42, 0.06);
box-shadow: inset 0 -12px 24px rgba(2, 6, 23, 0.04);
overflow: hidden;
}
.seo-summary-box-root .ssb-hero::after {
content: "";
position: absolute;
inset: -2px;
background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%);
background-size: 250% 250%;
background-position: -120% 0;
mix-blend-mode: screen;
pointer-events: none;
animation: ssb-sheen 7s linear infinite;
}
@keyframes ssb-sheen {
0% {
background-position: -120% 0;
}
100% {
background-position: 220% 0;
}
}
@media (prefers-reduced-motion: reduce) {
.seo-summary-box-root .ssb-hero::after {
animation-duration: 12s;
}
}
@media (max-width: 640px) {
.seo-summary-box-root .ssb-hero::after {
background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
animation-duration: 10s;
}
}
.seo-summary-box-root .ssb-hero .ssb-title {
font-weight: 900;
color: var(--ssb-tab-text);
display: flex;
align-items: center;
gap: 10px;
font-size: 20px;
letter-spacing: -0.2px;
}
.seo-summary-box-root .ssb-hero .typewriter {
position: relative;
white-space: nowrap;
overflow: hidden;
}
.seo-summary-box-root .ssb-hero .typewriter::after {
content: "";
position: absolute;
inset-inline-end: -2px;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 1.2em;
background: currentColor;
animation: ssb-caret 1s step-end infinite;
}
@keyframes ssb-caret {
0%,
50% {
opacity: 1;
}
50.01%,
100% {
opacity: 0;
}
}
.seo-summary-box-root .ssb-hero .brand {
margin-right: auto;
order: 2;
width: var(--brand-size);
height: var(--brand-size);
flex: 0 0 var(--brand-size);
box-sizing: border-box;
aspect-ratio: 1 / 1;
overflow: hidden;
display: grid;
place-items: center;
gap: 0;
padding: 4px;
border-radius: 50%;
background: linear-gradient(135deg, #38bdf8, #a78bfa, #f472b6);
box-shadow: 0 10px 20px rgba(2, 6, 23, 0.18);
}
.seo-summary-box-root .ssb-hero>* {
position: relative;
z-index: 1;
}
.seo-summary-box-root .ssb-hero .brand .brand-bg {
width: 100%;
height: 100%;
border-radius: 50%;
background-size: cover !important;
background-position: center center !important;
background-repeat: no-repeat !important;
display: block;
background-color: #fff;
}
.seo-summary-box-root .ssb-hero .rating {
font-weight: 800;
color: #f59e0b;
display: flex;
align-items: center;
gap: 4px;
font-size: 14px;
}
.seo-summary-box-root .ssb-hero .rating .star {
color: #f59e0b;
}
.seo-summary-box-root .ssb-band {
position: relative;
}
.seo-summary-box-root .ssb-band::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
height: 72px;
background: linear-gradient(90deg, rgba(14, 165, 233, .08), rgba(236, 72, 153, .08));
z-index: -1;
}
.seo-summary-box-root .ssb-takeaways {
padding: 0 16px 8px;
color: #0f172a;
}
.seo-summary-box-root .ssb-takeaways ul {
margin: 8px 0 0;
padding-inline-start: 20px;
}  .ssb-sticky-player {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
border-top: 1px solid rgba(15, 23, 42, 0.1);
box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
padding: 12px 16px;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
animation: ssb-slide-up 0.3s ease-out;
}
.ssb-sticky-player audio {
width: 100%;
max-width: 600px;
}
.ssb-sticky-close {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #64748b;
padding: 5px;
}
@keyframes ssb-slide-up {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
} .ssb-summary-wrapper {
position: relative;
}
.ssb-skim-toggle {
display: inline-block;
margin-bottom: 10px;
padding: 6px 12px;
background: #f1f5f9;
border: 1px solid #cbd5e1;
border-radius: 6px;
font-size: 13px;
cursor: pointer;
transition: all 0.2s;
}
.ssb-skim-toggle.active {
background: #e0f2fe;
border-color: #7dd3fc;
color: #0284c7;
}
.skim-mode {
line-height: 2;
font-size: 1.1em;
}
.skim-mode strong {
background: #fef08a;
padding: 0 4px;
border-radius: 2px;
}
.skim-mode p:not(:has(strong)) {
opacity: 0.6;
} .ssb-chapters {
margin-top: 12px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.ssb-chapter-btn {
padding: 6px 10px;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 4px;
font-size: 13px;
cursor: pointer;
color: #475569;
}
.ssb-chapter-btn:hover {
background: #f1f5f9;
color: #0f172a;
} .ssb-zero-click {
background: linear-gradient(to left, #fffbea, #fff7ed);
border-bottom: 1px solid rgba(252, 211, 77, 0.4);
padding: 16px 20px;
color: #451a03;
position: relative;
z-index: 2;
}
.ssb-zc-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 800;
color: #b45309;
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 6px;
}
.ssb-zc-label::before {
content: "⚡";
}
.ssb-zc-text {
margin: 0;
font-size: 15px;
font-weight: 600;
line-height: 1.7;
}
.ssb-freshness {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: rgba(15, 23, 42, 0.75);
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(4px);
padding: 4px 10px;
border-radius: 20px;
border: 1px solid rgba(15, 23, 42, 0.08);
margin-right: auto; white-space: nowrap;
}
.ssb-fresh-icon {
color: #059669; font-weight: bold;
} @media (max-width: 640px) {
.ssb-hero {
flex-direction: column;
align-items: flex-start;
}
.ssb-hero .brand {
order: -1; margin-right: 0;
margin-bottom: 4px;
}
.ssb-freshness {
margin-right: 0; width: 100%;
justify-content: center;
margin-top: 8px;
}
} .ssb-author-credentials {
margin-top: 8px;
display: flex;
flex-wrap: wrap;
gap: 8px;
align-items: center;
}
.ssb-exp-badge {
background: #f0f9ff;
color: #0369a1;
border: 1px solid #bce3eb;
padding: 2px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 4px;
}
.ssb-cred-text {
font-size: 12px;
color: #64748b;
font-weight: 500;
} .ssb-transcript {
margin-top: 20px;
border-top: 1px solid #e2e8f0;
padding-top: 15px;
}
.ssb-transcript h4 {
margin: 0 0 10px;
font-size: 15px;
color: #334155;
}
.ssb-transcript-box {
max-height: 200px;
overflow-y: auto;
padding: 10px;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 6px;
font-size: 13px;
line-height: 1.6;
color: #475569;
} .ssb-author-profile {
padding: 8px;
}
.ssb-author-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 12px;
}
.ssb-author-avatar {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #e2e8f0;
}
.ssb-author-info {
display: flex;
flex-direction: column;
gap: 4px;
}
.ssb-author-name {
font-weight: 700;
color: var(--ssb-tab-text);
font-size: 16px;
}
.ssb-author-link {
font-size: 13px;
color: #3b82f6;
text-decoration: none;
}
.ssb-author-link:hover {
text-decoration: underline;
} .ssb-semantic-link {
border-bottom: 2px dotted var(--ssb-accent, #3b82f6);
color: inherit;
text-decoration: none;
position: relative;
cursor: help;
transition: all 0.2s ease;
background: linear-gradient(120deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
background-repeat: no-repeat;
background-size: 100% 40%;
background-position: 0 85%;
}
.ssb-semantic-link:hover {
background-size: 100% 100%;
color: var(--ssb-accent, #3b82f6);
}
.ssb-semantic-link::after {
content: attr(data-ssb-tooltip);
position: absolute;
bottom: 150%;
left: 50%;
transform: translateX(-50%) translateY(10px);
background: #1e293b;
color: #fff;
padding: 8px 12px;
border-radius: 6px;
font-size: 0.85rem;
width: max-content;
max-width: 250px;
line-height: 1.4;
opacity: 0;
visibility: hidden;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
z-index: 9999;
pointer-events: none;
text-align: center;
}
.ssb-semantic-link::before {
content: '';
position: absolute;
bottom: 120%;
left: 50%;
transform: translateX(-50%) translateY(10px);
border: 6px solid transparent;
border-top-color: #1e293b;
opacity: 0;
visibility: hidden;
transition: all 0.2s;
z-index: 9999;
}
.ssb-semantic-link:hover::after,
.ssb-semantic-link:hover::before {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.ssb-author-bio {
color: #475569;
font-size: 14px;
line-height: 1.6;
margin: 0;
} .ssb-wizard-step {
text-align: center;
padding: 20px;
}
.ssb-wizard-step h4 {
margin-bottom: 20px;
font-size: 18px;
}
.ssb-wizard-options {
display: flex;
gap: 10px;
justify-content: center;
flex-wrap: wrap;
}
.ssb-wizard-btn {
padding: 10px 20px;
background: #fff;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-size: 15px;
cursor: pointer;
transition: all 0.2s;
}
.ssb-wizard-btn:hover {
border-color: #3b82f6;
background: #eff6ff;
}
.ssb-wizard-progress {
margin-top: 20px;
font-size: 12px;
color: #94a3b8;
}
.ssb-wizard-result {
text-align: center;
padding: 20px;
background: #f0fdf4;
border-radius: 12px;
border: 1px solid #bbf7d0;
}
.ssb-wizard-result h4 {
color: #166534;
margin-bottom: 10px;
}
.ssb-wizard-result .ssb-btn {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background: #16a34a;
color: #fff;
text-decoration: none;
border-radius: 6px;
}
.ssb-btn-text {
display: block;
margin: 10px auto 0;
background: none;
border: none;
color: #64748b;
cursor: pointer;
text-decoration: underline;
} .ssb-comparison {
overflow-x: auto;
}
.ssb-table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.ssb-table th,
.ssb-table td {
padding: 10px;
border: 1px solid #e2e8f0;
text-align: center;
}
.ssb-table th {
background: #f8fafc;
font-weight: 600;
color: #475569;
}
.ssb-table tr:nth-child(even) {
background: #fcfcfc;
} .ssb-review-card {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
}
.ssb-review-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.ssb-review-name {
font-weight: 700;
color: #334155;
}
.ssb-review-audio {
height: 30px;
}
.ssb-review-text {
font-size: 14px;
color: #475569;
line-height: 1.6;
margin: 0;
} .ssb-author-profile {
display: flex;
flex-direction: column;
gap: 16px;
padding: 10px 0;
}
.ssb-author-header {
display: flex;
align-items: flex-start;
gap: 16px;
}
.ssb-author-avatar {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--ssb-border);
}
.ssb-author-info {
flex: 1;
display: flex;
flex-direction: column;
gap: 8px;
}
.ssb-author-name-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.ssb-author-name {
font-weight: 700;
font-size: 1.1em;
color: var(--ssb-text);
}
.ssb-author-link {
font-size: 0.85em;
color: var(--ssb-primary);
text-decoration: none;
background: #eff6ff;
padding: 4px 10px;
border-radius: 20px;
transition: all 0.2s;
}
.ssb-author-link:hover {
background: var(--ssb-primary);
color: #fff;
text-decoration: none;
} .ssb-author-socials {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 4px;
}
.ssb-social-icon {
width: 24px;
height: 24px;
display: block;
color: #94a3b8;
transition: transform 0.2s, color 0.2s;
}
.ssb-social-icon:hover {
transform: translateY(-2px);
color: var(--ssb-primary);
}
.ssb-social-icon svg {
width: 100%;
height: 100%;
display: block;
} .ssb-style-simple.ssb-social-instagram:hover {
color: #bc1888;
}
.ssb-style-simple.ssb-social-telegram:hover {
color: #229ED9;
}
.ssb-style-simple.ssb-social-whatsapp:hover {
color: #25D366;
}
.ssb-style-simple.ssb-social-linkedin:hover {
color: #0077b5;
}
.ssb-style-simple.ssb-social-youtube:hover {
color: #FF0000;
}
.ssb-style-simple.ssb-social-twitter:hover {
color: #000;
}
.ssb-author-bio {
font-size: 0.95em;
line-height: 1.6;
color: #475569;
border-top: 1px solid #e2e8f0;
padding-top: 12px;
} .ssb-faq-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.ssb-faq-item {
border: 1px solid #e2e8f0;
border-radius: 8px;
overflow: hidden;
background: #fff;
transition: box-shadow 0.2s;
}
.ssb-faq-item.open {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
border-color: #cbd5e1;
}
.ssb-faq-question {
width: 100%;
display: flex;
align-items: center;
gap: 12px;
padding: 16px;
background: none;
border: none;
text-align: right;
font-weight: 700;
font-size: 1.05em;
color: var(--ssb-tab-text);
cursor: pointer;
transition: background 0.2s;
}
.ssb-faq-question:hover {
background: #f8fafc;
}
.ssb-faq-icon {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
background: #eef2ff;
color: #3b82f6;
border-radius: 6px;
font-weight: bold;
font-size: 18px;
line-height: 1;
transition: all 0.3s;
}
.ssb-faq-item.open .ssb-faq-icon {
background: #3b82f6;
color: #fff;
transform: rotate(180deg);
}
.ssb-faq-answer {
padding: 16px;
padding-top: 0;
color: #475569;
line-height: 1.7;
font-size: 0.95em;
border-top: 1px solid transparent;
animation: ssb-fade-in 0.3s ease-out;
}
.ssb-faq-item.open .ssb-faq-answer {
border-top-color: #f1f5f9;
padding-top: 16px;
}
@keyframes ssb-fade-in {
from {
opacity: 0;
transform: translateY(-5px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.ssb-author-bio p {
margin: 0 0 10px;
}
.ssb-author-bio p:last-child {
margin: 0;
} .ssb-video-embed {
position: relative;
padding-bottom: 56.25%; padding-top: 25px;
height: 0;
margin-bottom: 15px;
width: 100%;
}
.ssb-video-embed iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
border: none;
}  .ssb-paa-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.ssb-paa-item {
border: 1px solid #e2e8f0;
border-radius: 8px;
overflow: hidden;
background: #fff;
transition: all 0.2s;
}
.ssb-paa-question {
width: 100%;
text-align: right;
padding: 14px 16px;
background: #f8fafc;
border: none;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 700;
color: #1e293b;
font-size: 15px;
}
.ssb-paa-question:hover {
background: #f1f5f9;
}
.ssb-paa-icon {
font-size: 18px;
font-weight: bold;
color: #64748b;
margin-right: 12px;
}
.ssb-paa-answer {
padding: 16px;
border-top: 1px solid #e2e8f0;
background: #fff;
color: #334155;
line-height: 1.7;
font-size: 0.95em;
} .ssb-entity-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 16px;
}
.ssb-entity-card {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 16px;
transition: transform 0.2s, box-shadow 0.2s;
}
.ssb-entity-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border-color: #cbd5e1;
}
.ssb-entity-term {
font-weight: 800;
color: #0f172a;
margin-bottom: 8px;
font-size: 1.1em;
border-bottom: 2px solid #e2e8f0;
padding-bottom: 6px;
display: inline-block;
}
.ssb-entity-def {
font-size: 0.9em;
color: #475569;
line-height: 1.6;
margin-bottom: 10px;
}
.ssb-entity-wiki {
font-size: 0.75em;
color: #94a3b8;
background: #fff;
border: 1px solid #e2e8f0;
padding: 2px 6px;
border-radius: 4px;
display: inline-block;
} .ssb-indepth-list {
display: flex;
flex-direction: column;
gap: 24px;
}
.ssb-indepth-section {
padding-bottom: 24px;
border-bottom: 1px dashed #e2e8f0;
}
.ssb-indepth-section:last-child {
border-bottom: none;
padding-bottom: 0;
}
.ssb-indepth-title {
font-size: 1.25em;
font-weight: 800;
color: #1e293b;
margin-bottom: 12px;
position: relative;
padding-right: 14px;
}
.ssb-indepth-title::before {
content: "";
position: absolute;
right: 0;
top: 6px;
bottom: 6px;
width: 4px;
background: #3b82f6;
border-radius: 2px;
}
.ssb-indepth-content {
color: #334155;
line-height: 1.8;
font-size: 1em;
}  .ssb-table-wrapper {
overflow-x: auto;
border-radius: 8px;
border: 1px solid #e2e8f0;
}
.ssb-comparison-table {
width: 100%;
border-collapse: collapse;
min-width: 500px; }
.ssb-comparison-table th,
.ssb-comparison-table td {
padding: 14px;
text-align: right;
border-bottom: 1px solid #f1f5f9;
vertical-align: middle;
}
.ssb-th-feature {
width: 25%;
background: #f8fafc;
font-weight: 800;
color: #334155;
}
.ssb-th-prod {
width: 37.5%;
background: #f1f5f9;
font-weight: 800;
color: #3b82f6;
text-align: center;
}
.ssb-td-feature {
font-weight: 700;
color: #475569;
background: #fff;
}
.ssb-td-val {
text-align: center;
color: #1e293b;
background: #fff;
}
.ssb-comparison-table tr:hover td {
background: #f8fafc;
} .ssb-linkhub-grid {
display: flex;
flex-direction: column;
gap: 12px;
}
.ssb-linkhub-card {
display: flex;
align-items: center;
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 10px;
text-decoration: none;
transition: all 0.2s;
}
.ssb-linkhub-card:hover {
transform: translateX(-4px);
border-color: #3b82f6;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}
.ssb-linkhub-img {
width: 60px;
height: 60px;
border-radius: 8px;
background-size: cover;
background-position: center;
margin-left: 12px;
flex-shrink: 0;
border: 1px solid #f1f5f9;
}
.ssb-linkhub-content {
flex-grow: 1;
}
.ssb-linkhub-title {
font-weight: 800;
color: #1e293b;
font-size: 1.05em;
margin-bottom: 4px;
}
.ssb-linkhub-desc {
font-size: 0.85em;
color: #64748b;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} .ssb-entity-trigger {
position: relative;
border-bottom: 2px dashed #93C5FD;
cursor: help;
display: inline-block;
color: #1d4ed8;
}
.ssb-entity-trigger:hover::after {
content: attr(data-desc);
position: absolute;
bottom: 150%;
left: 50%;
transform: translateX(-50%);
background: #1e293b;
color: #fff;
padding: 10px 14px;
border-radius: 8px;
font-size: 13px;
line-height: 1.6;
width: 260px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
z-index: 99999;
text-align: right;
direction: rtl;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s, transform 0.2s;
visibility: hidden;
margin-bottom: 5px;
}
.ssb-entity-trigger:hover::after {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
.ssb-entity-trigger:hover::before {
content: '';
position: absolute;
bottom: 130%;
left: 50%;
transform: translateX(-50%);
border: 6px solid transparent;
border-top-color: #1e293b;
z-index: 99999;
opacity: 0;
transition: opacity 0.2s;
visibility: hidden;
}
.ssb-entity-trigger:hover::before {
opacity: 1;
visibility: visible;
}
.ssb-entity-link {
color: inherit;
text-decoration: none;
} .ssb-wizard-container {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 25px;
text-align: center;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.ssb-wizard-progress {
font-size: 0.85em;
color: #94a3b8;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
font-family: inherit;
}
.ssb-wizard-question {
font-size: 1.5em;
color: #1e293b;
margin: 0 0 25px 0;
font-weight: 800;
}
.ssb-wizard-options {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}
.ssb-wizard-opt-btn {
padding: 12px 24px;
font-size: 1em;
border-radius: 50px; transition: all 0.2s;
background: #f1f5f9;
color: #334155;
border: 1px solid #cbd5e1;
cursor: pointer;
}
.ssb-wizard-opt-btn:hover {
background: #3b82f6;
color: #fff;
border-color: #3b82f6;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}
.ssb-wizard-result {
text-align: center;
padding: 30px;
background: #eff6ff;
border-radius: 12px;
border: 2px dashed #93c5fd;
}
.ssb-wizard-result-icon {
font-size: 3em;
margin-bottom: 15px;
display: block;
}
.ssb-wizard-result h3 {
color: #1e40af;
margin: 0 0 10px 0;
}
.ssb-wizard-result-text {
font-size: 1.2em;
color: #1e293b;
margin-bottom: 20px;
} .ssb-story-trigger-btn {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9998;
background: #e11d48;
color: white;
padding: 12px 20px;
border-radius: 50px;
font-weight: bold;
box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
display: flex;
align-items: center;
gap: 8px;
border: 2px solid #fff;
cursor: pointer;
cursor: pointer; } .seo-summary-box-root .ssb-author-profile,
.seo-summary-box-root .ssb-author-profile * {
color: #1e293b !important; }
.seo-summary-box-root .ssb-author-profile {
display: flex !important;
flex-direction: column !important;
gap: 15px !important;
background: #f8fafc !important; padding: 15px !important;
border-radius: 12px !important;
border: 1px solid #e2e8f0 !important;
text-align: right !important;
}
.seo-summary-box-root .ssb-author-header {
display: flex !important;
align-items: center !important;
gap: 15px !important;
}
.seo-summary-box-root .ssb-author-avatar {
width: 80px !important;
height: 80px !important;
flex-shrink: 0 !important;
border-radius: 50% !important;
object-fit: cover !important;
border: 4px solid #fff !important;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
background-color: #cbd5e1 !important;
max-width: 80px !important;
display: block !important;
margin: 0 !important;
}
.seo-summary-box-root .ssb-author-info {
display: flex !important;
flex-direction: column !important;
gap: 4px !important;
flex: 1 !important;
}
.seo-summary-box-root .ssb-author-name {
font-size: 1.25em !important;
font-weight: 800 !important;
color: #1e293b !important;
margin: 0 !important;
line-height: 1.4 !important;
}
.seo-summary-box-root .ssb-author-link {
font-size: 0.85em !important;
color: #3b82f6 !important;
text-decoration: none !important;
font-weight: normal !important;
}
.seo-summary-box-root .ssb-author-credentials {
display: flex !important;
gap: 10px !important;
font-size: 0.85em !important;
color: #64748b !important;
align-items: center !important;
margin-top: 4px !important;
}
.seo-summary-box-root .ssb-exp-badge {
background: #fff !important;
padding: 2px 8px !important;
border-radius: 4px !important;
border: 1px solid #e2e8f0 !important;
font-weight: 600 !important;
color: #475569 !important;
font-size: 12px !important;
}
.seo-summary-box-root .ssb-author-bio {
font-size: 0.95em !important;
line-height: 1.6 !important;
color: #334155 !important;
border-top: 1px dashed #cbd5e1 !important;
padding-top: 10px !important;
margin-top: 5px !important;
} .ssb-progress-ring {
display: inline-flex;
margin-left: 10px;
}
.ssb-progress-circle {
transition: stroke-dashoffset 0.35s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
color: #3b82f6;
}
.ssb-progress-text {
font-size: 10px;
font-weight: bold;
fill: #1e293b;
}
.ssb-time-saved {
display: inline-flex;
align-items: center;
gap: 5px;
background: #ecfccb;
color: #3f6212;
font-size: 0.8em;
font-weight: bold;
padding: 4px 10px;
border-radius: 20px;
margin-top: 8px;
} .ssb-sticky-player {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
border-top: 1px solid #e2e8f0;
padding: 10px 20px;
display: flex;
align-items: center;
box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
z-index: 99999;
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.ssb-sticky-audio {
flex: 2;
height: 40px;
}
.ssb-sticky-close {
background: none;
border: none;
font-size: 24px;
color: #64748b;
cursor: pointer;
margin-right: 15px;
line-height: 1;
}
@keyframes ssb-pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.ssb-story-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
z-index: 99999;
color: #fff;
display: flex;
flex-direction: column;
}
.ssb-story-progress {
display: flex;
gap: 4px;
padding: 10px 10px 0;
}
.ssb-story-bar {
height: 4px;
background: rgba(255, 255, 255, 0.3);
flex: 1;
border-radius: 2px;
}
.ssb-story-bar.active {
background: #fff;
}
.ssb-story-close {
position: absolute;
top: 20px;
left: 20px;
background: none;
border: none;
color: #fff;
font-size: 30px;
cursor: pointer;
z-index: 100;
}
.ssb-story-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding: 30px;
text-align: center;
background: linear-gradient(135deg, #1e293b, #0f172a);
}
.ssb-story-slide-icon {
font-size: 4em;
margin-bottom: 20px;
}
.ssb-story-title {
font-size: 1.8em;
margin-bottom: 20px;
color: #38bdf8;
}
.ssb-story-body {
font-size: 1.2em;
line-height: 1.6;
color: #e2e8f0;
} @media (max-width: 768px) {
.ssb-linkhub-grid {
flex-direction: row;
overflow-x: auto;
padding-bottom: 10px;
scroll-snap-type: x mandatory;
}
.ssb-linkhub-card {
min-width: 280px;
scroll-snap-align: center;
flex-shrink: 0;
}
}  .seo-summary-box-root.theme-corporate {
--ssb-card-bg: #ffffff;
--ssb-tabs-bg: #f8fafc;
--ssb-active-bg: #1e3a8a; --ssb-tab-text: #1e293b;
--ssb-accent: #d4af37; border-top: 4px solid var(--ssb-active-bg);
}
.seo-summary-box-root.theme-corporate .ssb-card {
border-radius: 4px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
border: 1px solid #e2e8f0;
}
.seo-summary-box-root.theme-corporate .ssb-tabs button {
font-family: inherit; font-weight: 500;
color: #64748b;
transition: all 0.2s;
}
.seo-summary-box-root.theme-corporate .ssb-tabs button:hover {
background: #f1f5f9;
color: #0f172a;
}
.seo-summary-box-root.theme-corporate .ssb-tabs button.active {
background: #fff;
color: var(--ssb-active-bg);
border-bottom: 2px solid var(--ssb-accent);
font-weight: 700;
}
.seo-summary-box-root.theme-corporate .ssb-tabs button.active::after {
display: none; } .ssb-service-badge {
float: left;
background: #eff6ff;
color: #1d4ed8;
font-size: 12px;
font-weight: 600;
padding: 4px 10px;
border-radius: 20px;
text-decoration: none;
margin-bottom: 10px;
border: 1px solid #dbeafe;
transition: all 0.2s;
}
.ssb-service-badge:hover {
background: #1d4ed8;
color: #fff;
} .ssb-cta-container {
padding: 16px;
background: #f8fafc;
border-top: 1px solid #e2e8f0;
text-align: center;
}
.ssb-cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
color: #fff;
font-weight: 700;
font-size: 16px;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); transition: transform 0.2s, box-shadow 0.2s;
width: 100%;
max-width: 400px;
margin: 0 auto;
}
.ssb-cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
color: #fff;
}
.ssb-cta-icon {
font-size: 1.2em;
}
.ssb-cta-arrow {
transition: transform 0.2s;
}
.ssb-cta-btn:hover .ssb-cta-arrow {
transform: translateX(-4px); } .ssb-freshness {
font-size: 12px;
color: #64748b;
margin-top: 6px;
display: flex;
align-items: center;
gap: 6px;
background: rgba(255, 255, 255, 0.5);
padding: 4px 8px;
border-radius: 4px;
width: fit-content;
} .seo-summary-box-root.theme-hanika {
--ssb-card-bg: #1f1f1f;
--ssb-tabs-bg: #222;
--ssb-active-bg: rgba(142, 68, 173, 0.2);
--ssb-tab-text: #ffffff;
--ssb-border-color: #333;
--ssb-primary: #8e44ad;
--ssb-secondary: #e91e63;
--ssb-mb: 24px;
}
.seo-summary-box-root.theme-hanika .ssb-card {
border: 1px solid var(--ssb-border-color);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
color: #f0f0f0;
backdrop-filter: blur(10px);
}
.seo-summary-box-root.theme-hanika .ssb-tabs button {
color: #aaa;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.seo-summary-box-root.theme-hanika .ssb-tabs button:hover {
color: #fff;
background: rgba(255, 255, 255, 0.05);
}
.seo-summary-box-root.theme-hanika .ssb-tabs button.active {
background: linear-gradient(135deg, #8e44ad 0%, #e91e63 100%);
color: #fff;
font-weight: 700;
box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}
.seo-summary-box-root.theme-hanika .ssb-title .title-text {
background: linear-gradient(90deg, #fff, #e0e0e0);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 800;
}
@keyframes ssb-slide-down {
from {
opacity: 0;
transform: translateY(-5px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .seo-summary-box-root.theme-hanika .ssb-acc__item {
margin-bottom: 0 !important;
margin-top: 0 !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
background: #252525;
border-radius: 0;
transition: all 0.2s ease;
}
.seo-summary-box-root.theme-hanika .ssb-acc__item:first-child {
border-top-left-radius: 14px;
border-top-right-radius: 14px;
overflow: hidden;
}
.seo-summary-box-root.theme-hanika .ssb-acc__item:last-child {
border-bottom-left-radius: 14px;
border-bottom-right-radius: 14px;
border-bottom: none;
overflow: hidden;
} .seo-summary-box-root.theme-hanika .ssb-acc__header {
background: transparent;
box-shadow: none;
padding: 14px 20px;
border: none;
color: #ccc;
font-weight: 500;
min-height: auto;
border-radius: 0;
margin: 0;
transition: all 0.2s ease;
}
.seo-summary-box-root.theme-hanika .ssb-acc__header:hover {
background: rgba(255, 255, 255, 0.03);
color: #fff;
padding-right: 24px;
} .seo-summary-box-root.theme-hanika .ssb-acc__item.active .ssb-acc__header {
background: rgba(142, 68, 173, 0.08); color: #fff;
font-weight: 700;
box-shadow: none;
border-right: 3px solid #e91e63;
} .seo-summary-box-root.theme-hanika .ssb-acc__content {
background: #1f1f1f;
color: #e2e8f0;
border-top: none;
padding: 24px;
margin: 0;
animation: ssb-slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1);
} .seo-summary-box-root.theme-hanika .ssb-acc__content * {
color: #e2e8f0;
}
.seo-summary-box-root.theme-hanika .ssb-acc__content strong {
color: #fff;
}  .seo-summary-box-root.theme-hanika .ssb-acc__content,
.seo-summary-box-root.theme-hanika .ssb-acc__content p,
.seo-summary-box-root.theme-hanika .ssb-acc__content li,
.seo-summary-box-root.theme-hanika .ssb-acc__content span,
.seo-summary-box-root.theme-hanika .ssb-acc__content div {
color: #e0e0e0 !important;
opacity: 1 !important;
visibility: visible !important;
}
.seo-summary-box-root.theme-hanika .ssb-acc__content strong,
.seo-summary-box-root.theme-hanika .ssb-acc__content b {
color: #ffffff !important;
} .seo-summary-box-root.theme-hanika .ssb-acc__item {
margin-bottom: 0 !important;
margin-top: 0 !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
background: #252525 !important;
border-radius: 0 !important;
}
.seo-summary-box-root.theme-hanika .ssb-acc__item:first-child {
border-top-left-radius: 14px !important;
border-top-right-radius: 14px !important;
overflow: hidden !important;
}
.seo-summary-box-root.theme-hanika .ssb-acc__item:last-child {
border-bottom-left-radius: 14px !important;
border-bottom-right-radius: 14px !important;
border-bottom: none !important;
overflow: hidden !important;
} .seo-summary-box-root.theme-hanika .ssb-acc__header {
background: transparent !important;
box-shadow: none !important;
padding: 14px 20px !important;
border: none !important;
color: #ccc !important;
font-weight: 500 !important;
}
.seo-summary-box-root.theme-hanika .ssb-acc__header:hover {
background: rgba(255, 255, 255, 0.04) !important;
color: #fff !important; } .seo-summary-box-root.theme-hanika .ssb-acc__item.active .ssb-acc__header {
background: rgba(142, 68, 173, 0.08) !important;
color: #fff !important;
font-weight: 700 !important;
border-right: 3px solid #e91e63 !important;
} .seo-summary-box-root.theme-hanika .ssb-acc__content {
background: #1f1f1f !important;
border-top: none !important;
padding: 24px !important;
margin: 0 !important;
} .seo-summary-box-root.theme-hanika .ssb-author-profile,
.seo-summary-box-root.theme-hanika .ssb-author-profile * {
color: #1e293b !important; text-align: right !important;
direction: rtl !important;
}
.seo-summary-box-root.theme-hanika .ssb-author-profile {
background: #f8fafc !important; border: 1px solid #e2e8f0 !important;
}
.seo-summary-box-root.theme-hanika .ssb-author-avatar {
border: 4px solid #fff !important;
background-color: #cbd5e1 !important;
}
.seo-summary-box-root.theme-hanika .ssb-author-name {
color: #0f172a !important; }
.seo-summary-box-root.theme-hanika .ssb-author-link {
color: #2563eb !important; }
.seo-summary-box-root.theme-hanika .ssb-exp-badge {
background: #fff !important;
color: #475569 !important;
border: 1px solid #e2e8f0 !important;
}
.seo-summary-box-root.theme-hanika .ssb-author-bio {
color: #334155 !important; }