.optatips-tips-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.optatips-tip-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.optatips-tip-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.optatips-tip-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

.optatips-tip-card__title a {
    color: #111827;
    text-decoration: none;
}

.optatips-tip-card__title a:hover {
    text-decoration: underline;
}

.optatips-tip-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.optatips-tip-card__badge--pending {
    color: #854d0e;
    background: #fef3c7;
}

.optatips-tip-card__badge--win {
    color: #166534;
    background: #dcfce7;
}

.optatips-tip-card__badge--won {
    color: #166534;
    background: #dcfce7;
}

.optatips-tip-card__badge--lose {
    color: #991b1b;
    background: #fee2e2;
}

.optatips-tip-card__badge--lost {
    color: #991b1b;
    background: #fee2e2;
}

.optatips-tip-card__badge--void {
    color: #374151;
    background: #e5e7eb;
}

.optatips-tip-card__teams {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.optatips-tip-card__teams strong {
    color: #0f766e;
    font-size: 12px;
    text-transform: uppercase;
}

.optatips-tip-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 14px;
}

.optatips-tip-card__meta span:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #9ca3af;
}

.optatips-tip-card__meta .optatips-tip-card__access {
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.optatips-tip-card__meta .optatips-tip-card__access::after {
    content: "";
    margin: 0;
}

.optatips-tip-card__access--free {
    color: #166534;
    background: #dcfce7;
}

.optatips-tip-card__access--premium {
    color: #1d4ed8;
    background: #dbeafe;
}

.optatips-tip-card__access--super {
    color: #7c2d12;
    background: #ffedd5;
}

.optatips-tip-card__prediction {
    margin: 0 0 12px;
    color: #111827;
}

.optatips-tip-card__locked {
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid #fde68a;
    border-radius: 8px;
    color: #78350f;
    background: #fffbeb;
}

.optatips-tip-card__locked strong {
    display: block;
    margin-bottom: 4px;
}

.optatips-tip-card__locked p {
    margin: 0;
    color: #92400e;
}

.optatips-tip-card__locked-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.optatips-tip-card__locked-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 8px;
    padding: 0 12px;
    color: #ffffff;
    background: #0f766e;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.optatips-tip-card__locked-actions a:hover,
.optatips-tip-card__locked-actions a:focus {
    color: #ffffff;
    background: #064e3b;
    text-decoration: none;
}

.optatips-tip-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
}

.optatips-tip-card__stats span {
    display: inline-flex;
    gap: 6px;
}

.optatips-tip-card__excerpt {
    margin-top: auto;
    color: #4b5563;
}

.optatips-tip-card__excerpt p {
    margin: 0 0 12px;
}

.optatips-tip-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 8px;
    padding: 0 14px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

.optatips-tip-card__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.optatips-tip-card__follow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 14px;
    color: #0f766e;
    font-weight: 700;
    text-decoration: none;
}

.optatips-tip-card__link:hover,
.optatips-tip-card__link:focus {
    color: #ffffff;
    background: #064e3b;
    text-decoration: none;
}

.optatips-tip-card__follow-link:hover,
.optatips-tip-card__follow-link:focus {
    color: #064e3b;
    border-color: #0f766e;
    background: #ecfdf5;
    text-decoration: none;
}

.optatips-tips-empty {
    padding: 16px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    color: #4b5563;
}

.optatips-statistics,
.optatips-tipsters {
    margin: 24px 0;
}

.section--deep .optatips-statistics {
    margin-bottom: 0;
}

.optatips-statistics__header,
.optatips-tipsters__header {
    margin-bottom: 18px;
}

.optatips-statistics__header h2,
.optatips-tipsters__header h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
}

.section--deep .optatips-statistics__header h2 {
    color: #ffffff;
}

.optatips-statistics__header p,
.optatips-tipsters__header p {
    max-width: 780px;
    margin: 0;
    color: #4b5563;
}

.section--deep .optatips-statistics__header p {
    color: #d9f4e8;
}

.optatips-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.optatips-stat {
    min-height: 92px;
    padding: 14px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.section--deep .optatips-stat {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.optatips-stat span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.section--deep .optatips-stat span {
    color: #b8c8d8;
}

.optatips-stat strong {
    display: block;
    margin-top: 8px;
    color: #111827;
    font-size: 24px;
    line-height: 1.1;
}

.section--deep .optatips-stat strong {
    color: #ffffff;
}

.optatips-tipster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.optatips-tipster-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 18px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.optatips-tipster-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.optatips-tipster-avatar {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    color: #ffffff;
    background: #0f766e;
    font-size: 24px;
    font-weight: 800;
}

.optatips-tipster-card h3 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.2;
}

.optatips-tipster-card__top p,
.optatips-tipster-card__leagues {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
}

.optatips-tipster-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.optatips-tipster-card__stats span {
    padding: 10px;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.optatips-tipster-card__stats strong {
    display: block;
    color: #111827;
    font-size: 19px;
    line-height: 1.2;
}

.optatips-tipster-card__latest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}

.optatips-tipster-card__latest > span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.optatips-tipster-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 16px;
    border-radius: 8px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

.optatips-tipster-card__button:hover {
    color: #ffffff;
    background: #064e3b;
}

.optatips-results-strip {
    display: inline-flex;
    gap: 4px;
}

.optatips-result-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.optatips-result-dot--won {
    background: #16a34a;
}

.optatips-result-dot--lost {
    background: #dc2626;
}

.optatips-result-dot--void {
    background: #6b7280;
}

.optatips-result-dot--pending {
    background: #f59e0b;
}

.optatips-results-empty {
    color: #64748b;
}

.optatips-blacklist-report,
.optatips-blacklist {
    margin: 24px 0;
}

.optatips-blacklist-report h2,
.optatips-blacklist h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
}

.optatips-blacklist-report > p {
    max-width: 760px;
    margin: 0 0 18px;
    color: #4b5563;
}

.optatips-blacklist-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
}

.optatips-blacklist-form label,
.optatips-blacklist-form__full {
    display: grid;
    gap: 6px;
}

.optatips-blacklist-form__full {
    grid-column: 1 / -1;
}

.optatips-blacklist-form span {
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.optatips-blacklist-form input,
.optatips-blacklist-form select,
.optatips-blacklist-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 11px;
    color: #111827;
    background: #ffffff;
    font: inherit;
}

.optatips-blacklist-form button {
    justify-self: start;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    cursor: pointer;
}

.optatips-blacklist--archive {
    display: grid;
    gap: 22px;
}

.optatips-blacklist-archive__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 22px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.12), transparent 20rem),
        linear-gradient(135deg, #ffffff 0%, #f5fbf9 100%);
    box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}

.optatips-blacklist-archive__head h2 {
    margin: 4px 0 8px;
}

.optatips-blacklist-archive__head p {
    max-width: 760px;
    margin: 0;
    color: #405568;
}

.optatips-blacklist-archive__eyebrow {
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.optatips-blacklist-archive__count {
    min-width: 150px;
    padding: 16px;
    border-radius: 14px;
    color: #ffffff;
    background: #073430;
    text-align: center;
}

.optatips-blacklist-archive__count strong {
    display: block;
    color: #9fe870;
    font-size: 34px;
    line-height: 1;
}

.optatips-blacklist-archive__count span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.optatips-blacklist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.optatips-blacklist-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: 238px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,250,248,0.96)),
        radial-gradient(circle at 100% 0%, rgba(159, 232, 112, 0.16), transparent 12rem);
    box-shadow: 0 18px 38px rgba(16, 32, 51, 0.09);
}

.optatips-blacklist-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #0f766e, #9fe870);
}

.optatips-blacklist-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.optatips-blacklist-card h3 {
    margin: 0;
    color: #071522;
    font-size: 20px;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.optatips-blacklist-card p {
    margin: 0;
    color: #405568;
    line-height: 1.65;
}

.optatips-blacklist-card__link {
    align-self: end;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    color: #073430;
    background: #9fe870;
    font-weight: 900;
    text-decoration: none;
}

.optatips-blacklist-card__domain {
    margin: 8px 0 0;
    font-weight: 800;
}

.optatips-risk {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.optatips-risk--low {
    color: #166534;
    background: #dcfce7;
}

.optatips-blacklist-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.optatips-blacklist-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 10px;
    color: #073430;
    background: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.optatips-blacklist-pagination .page-numbers.current {
    color: #ffffff;
    background: #073430;
    border-color: #073430;
}

.optatips-blacklist-pagination .page-numbers.prev,
.optatips-blacklist-pagination .page-numbers.next {
    min-width: 92px;
}

.optatips-risk--medium {
    color: #854d0e;
    background: #fef3c7;
}

.optatips-risk--high {
    color: #991b1b;
    background: #fee2e2;
}

.optatips-report-message {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.optatips-report-message--success {
    color: #166534;
    background: #dcfce7;
}

.optatips-report-message--error {
    color: #991b1b;
    background: #fee2e2;
}

.optatips-auth-panel {
    max-width: 760px;
    margin: 24px 0;
    padding: 22px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
}

.optatips-auth-panel h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
}

.optatips-auth-panel p {
    color: #4b5563;
}

.optatips-auth-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.optatips-auth-form label {
    display: grid;
    gap: 6px;
}

.optatips-auth-form span {
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.optatips-auth-form input,
.optatips-auth-form select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 11px;
    color: #111827;
    background: #ffffff;
    font: inherit;
}

.optatips-auth-form__checkbox {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    gap: 8px;
}

.optatips-auth-form__checkbox input {
    width: auto;
}

.optatips-auth-help {
    grid-column: 1 / -1;
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.optatips-auth-form button,
.optatips-auth-form__button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
}

.optatips-auth-form button:hover,
.optatips-auth-form button:focus,
.optatips-auth-form__button-link:hover,
.optatips-auth-form__button-link:focus {
    color: #ffffff;
    background: #064e3b;
    text-decoration: none;
}

.optatips-auth-form__actions {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 2px;
}

.optatips-auth-form__primary-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.optatips-auth-form__secondary-link {
    color: #0f766e;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
}

.optatips-auth-form__secondary-link:hover,
.optatips-auth-form__secondary-link:focus {
    color: #064e3b;
    text-decoration: underline;
}

.optatips-auth-form__secondary-link--right {
    margin-left: auto;
    text-align: right;
}

.optatips-auth-form__account-note {
    margin: 0 0 0 auto;
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
}

.optatips-auth-form__account-note .optatips-auth-form__secondary-link {
    margin-left: 4px;
}

.optatips-auth-help.is-error {
    color: #991b1b;
    font-weight: 700;
}

.optatips-auth-message {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.optatips-auth-message--success {
    color: #166534;
    background: #dcfce7;
}

.optatips-auth-message--error {
    color: #991b1b;
    background: #fee2e2;
}

.optatips-auth-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

.optatips-pricing {
    margin: 24px 0;
}

.optatips-pricing__header {
    margin-bottom: 18px;
}

.optatips-pricing__header h2 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
}

.optatips-pricing__header p {
    max-width: 720px;
    margin: 0;
    color: #4b5563;
}

.optatips-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.optatips-pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.optatips-pricing-card__type {
    align-self: flex-start;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.optatips-pricing-card--tipster .optatips-pricing-card__type {
    color: #854d0e;
    background: #fef3c7;
}

.optatips-pricing-card h3 {
    margin: 14px 0 8px;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
}

.optatips-pricing-card__price {
    margin: 0;
    color: #111827;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.optatips-pricing-card__price span {
    margin-right: 2px;
    color: #64748b;
    font-size: 18px;
    vertical-align: super;
}

.optatips-pricing-card__duration {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 800;
}

.optatips-pricing-card__content {
    margin: 16px 0;
    color: #4b5563;
}

.optatips-pricing-card__content p {
    margin: 0 0 10px;
}

.optatips-pricing-card__content ul {
    margin: 0;
    padding-left: 18px;
}

.optatips-pricing-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: auto;
    border: 0;
    border-radius: 8px;
    padding: 0 16px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.optatips-pricing-card__form {
    display: flex;
    margin-top: auto;
}

.optatips-pricing-card__form .optatips-pricing-card__button {
    width: 100%;
}

.optatips-pricing-tipster-cta {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #cde7dc;
    border-radius: 8px;
    background: #f0fdf4;
}

.optatips-pricing-tipster-cta h3 {
    margin: 0 0 6px;
    color: #111827;
}

.optatips-pricing-tipster-cta p {
    margin: 0 0 12px;
    color: #4b5563;
}

.optatips-payment-error {
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    background: #fef2f2;
    font-weight: 700;
}

.optatips-payment-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 42px 20px;
}

.optatips-payment-panel {
    border: 1px solid #d8dee8;
    border-radius: 8px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.08);
}

.optatips-payment-panel h1 {
    margin: 0 0 18px;
    color: #102033;
    font-size: 32px;
    line-height: 1.15;
}

.optatips-payment-status {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border-radius: 999px;
    padding: 0 12px;
    color: #92400e;
    background: #fef3c7;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.optatips-payment-status--paid,
.optatips-payment-status--manual_paid {
    color: #065f46;
    background: #d1fae5;
}

.optatips-payment-status--need_review {
    color: #9a3412;
    background: #ffedd5;
}

.optatips-payment-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.optatips-payment-details div {
    min-width: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    background: #f8fafc;
}

.optatips-payment-details dt {
    margin: 0 0 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.optatips-payment-details dd {
    margin: 0;
    color: #111827;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.optatips-payment-wallet {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 18px;
    background: #f0fdf4;
}

.optatips-payment-wallet img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    background: #ffffff;
}

.optatips-payment-wallet span {
    display: block;
    margin-bottom: 8px;
    color: #14532d;
    font-weight: 900;
}

.optatips-payment-wallet code,
.optatips-payment-details code {
    white-space: normal;
    overflow-wrap: anywhere;
}

.optatips-payment-wallet p {
    margin: 10px 0 0;
    color: #4b5563;
}

.optatips-payment-exact {
    margin: 16px 0;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 14px;
    color: #92400e;
    background: #fffbeb;
    font-size: 18px;
    font-weight: 900;
}

.optatips-payment-copy {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    color: #ffffff;
    background: #102033;
    font-weight: 800;
    cursor: pointer;
}

.optatips-payment-success {
    margin: 18px 0 0;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 14px;
    color: #065f46;
    background: #f0fdf4;
    font-weight: 800;
}

.optatips-payment-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 16px;
    color: #ffffff;
    background: #0f766e;
    font-weight: 800;
    text-decoration: none;
}

.optatips-payment-button--secondary {
    background: #102033;
}

.optatips-my-account {
    display: grid;
    gap: 22px;
}

.optatips-my-account__header p,
.optatips-my-account__panel p {
    color: #4b5563;
}

.optatips-my-account__panel {
    border: 1px solid #dbe7df;
    border-radius: 8px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.optatips-my-account__panel h3 {
    margin-top: 0;
}

.optatips-my-account__stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.optatips-my-account__stats div {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px;
    background: #f8fafc;
}

.optatips-my-account__stats span {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.optatips-my-account__stats strong {
    color: #102033;
    overflow-wrap: anywhere;
}

.optatips-my-account__table-wrap {
    overflow-x: auto;
}

.optatips-my-account__table {
    width: 100%;
    border-collapse: collapse;
}

.optatips-my-account__table th,
.optatips-my-account__table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 8px;
    text-align: left;
    vertical-align: top;
}

.optatips-my-account__table th {
    color: #102033;
    font-size: 12px;
    text-transform: uppercase;
}

.optatips-my-account__table code {
    white-space: normal;
    overflow-wrap: anywhere;
}

.optatips-tipster-follow {
    border: 1px solid rgba(120, 255, 180, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 18px;
    background: linear-gradient(135deg, rgba(7, 52, 48, 0.82), rgba(9, 40, 48, 0.74));
    margin-top: 18px;
}

.optatips-tipster-follow h2 {
    color: #ffffff;
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: 0;
}

.optatips-tipster-follow p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 10px;
}

.optatips-tipster-follow .optatips-tipster-follow__count {
    color: #9fe870;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.optatips-tipster-follow__form {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.optatips-tipster-follow__button {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    gap: 6px;
    justify-content: center;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.optatips-tipster-follow .site-header__cta,
.optatips-tipster-follow__button:not(.optatips-tipster-follow__button--followed) {
    border: 1px solid rgba(159, 232, 112, 0.46);
    box-shadow: 0 10px 24px rgba(20, 184, 126, 0.22);
    min-height: 42px;
    border-radius: 8px;
    padding: 0 18px;
    color: #073430;
    background: linear-gradient(135deg, #9fe870, #28d9a2);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.optatips-tipster-follow .site-header__cta:hover,
.optatips-tipster-follow .site-header__cta:focus,
.optatips-tipster-follow__button:not(.optatips-tipster-follow__button--followed):hover,
.optatips-tipster-follow__button:not(.optatips-tipster-follow__button--followed):focus {
    color: #052622;
    background: linear-gradient(135deg, #b7ff8a, #45efbd);
    box-shadow: 0 12px 30px rgba(69, 239, 189, 0.28);
}

.optatips-tipster-follow__button--followed {
    align-items: center;
    background: rgba(10, 67, 59, 0.92);
    border: 1px solid rgba(159, 232, 112, 0.42);
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #9fe870;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    min-height: 42px;
    padding: 0 16px;
    text-align: center;
}

.optatips-tipster-follow__label {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
}

.optatips-tipster-follow__label--unfollow {
    display: none;
}

.optatips-tipster-follow__button--followed:hover {
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.96), rgba(8, 145, 120, 0.94));
    border-color: rgba(159, 232, 112, 0.5);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 184, 126, 0.2);
}

.optatips-tipster-follow__button--followed:hover .optatips-tipster-follow__label--followed {
    display: none;
}

.optatips-tipster-follow__button--followed:hover .optatips-tipster-follow__label--unfollow {
    display: inline;
}

.optatips-button-secondary {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #102033;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    line-height: 1;
    padding: 11px 14px;
    text-decoration: none;
}

@media (max-width: 760px) {
    .optatips-tipster-follow {
        padding: 16px;
    }

    .optatips-tipster-follow__form {
        align-items: stretch;
    }

    .optatips-tipster-follow .site-header__cta,
    .optatips-tipster-follow__button {
        justify-content: center;
        width: 100%;
    }
}

.optatips-followed-tipster {
    align-items: center;
    display: flex;
    gap: 10px;
}

.optatips-followed-tipster .optatips-tipster-avatar {
    flex: 0 0 auto;
    height: 42px;
    width: 42px;
}

@media (max-width: 760px) {
    .optatips-blacklist-archive__head {
        grid-template-columns: 1fr;
    }

    .optatips-blacklist-archive__count {
        min-width: 0;
    }

    .optatips-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .optatips-tips-list {
        grid-template-columns: 1fr;
    }

    .optatips-tipster-grid {
        grid-template-columns: 1fr;
    }

    .optatips-blacklist-form,
    .optatips-blacklist-grid,
    .optatips-auth-form,
    .optatips-pricing-grid {
        grid-template-columns: 1fr;
    }

    .optatips-payment-details,
    .optatips-payment-wallet {
        grid-template-columns: 1fr;
    }

    .optatips-my-account__stats {
        grid-template-columns: 1fr;
    }

    .optatips-auth-form__actions,
    .optatips-auth-form__primary-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .optatips-auth-form__secondary-link--right {
        margin-left: 0;
        text-align: left;
    }

    .optatips-auth-form__account-note {
        margin-left: 0;
        text-align: left;
    }
}
