/*
 * TempMail stylesheet editing guide (read before changes):
 *  - Header/mobile menu styles: `.hero__nav`, `.hero__menu`, `.hero__menu-toggle`
 *    are paired with markup in `partials/site-header.php` and JS in
 *    `assets/js/script.js`. Keep class names in sync across all three files.
 *  - Floating action buttons: `.share-widget` (right) + `.feedback-fab` (left)
 *    rely on shared spacing rules in the mobile breakpoints below. Update both
 *    together to avoid overlap on phones/tablets.
 *  - Breakpoints already defined (1200/992/900/768/640/480). Prefer dropping new
 *    overrides inside the nearest existing media query so cascade stays
 *    predictable.
 *  - Page-specific tweaks: many blocks scope to `body.page-*` (home, blog, etc.).
 *    Test changes on those pages too so nothing regresses silently.
 */

/* System Fonts Stack - Replaces Google Fonts */
:root {
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
}

body {
  font-family: var(--font-family-sans);
}

body.has-sticky-ad .footer {
    padding-bottom: clamp(260px, 30vh, 360px);
}

@media (max-width: 768px) {
    .hero__nav {
        width: min(100%, 92vw);
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        position: relative;
        flex-wrap: wrap;
        z-index: 40;
    }

    .hero__nav.has-open-menu {
        padding-bottom: clamp(10rem, 38vw, 13rem);
    }

    .hero__nav.has-open-menu::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: rgba(12, 7, 32, 0.92);
        backdrop-filter: blur(20px);
        z-index: 0;
        pointer-events: none;
    }

    .hero__nav.has-open-menu > * {
        position: relative;
        z-index: 1;
    }

    .hero__menu-toggle {
        display: inline-flex;
    }

    .hero__menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(19, 9, 46, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 20px 40px rgba(12, 6, 30, 0.35);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 12;
    }

    .hero__menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero__menu a {
        width: 100%;
        justify-content: flex-start;
        font-size: 1rem;
    }
}

.share-widget {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1.5rem, 6vh, 3rem);
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.8rem;
    z-index: 1200;
}

.share-widget__toggle,
.share-widget__option {
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 32px -12px rgba(244, 67, 54, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}

.share-widget__toggle {
    background: linear-gradient(135deg, #f97316 0%, #f43f5e 45%, #ef4444 100%);
    font-size: 1.6rem;
    font-weight: 600;
}

.share-widget__toggle:hover,
.share-widget__option:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(18, 16, 62, 0.28);
}

.share-widget__toggle:active,
.share-widget__option:active {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(18, 16, 62, 0.22);
}

.share-widget__options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.94);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.share-widget.is-open .share-widget__options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.share-widget.is-open .share-widget__toggle {
    background: linear-gradient(135deg, #be123c 0%, #f43f5e 60%, #f97316 100%);
}

.share-widget__option {
    font-size: 1.25rem;
    line-height: 1;
}

.share-widget__option--twitter { background: #1d9bf0; }
.share-widget__option--facebook { background: #1778f2; }
.share-widget__option--linkedin { background: #0a66c2; }
.share-widget__option--whatsapp { background: #25d366; color: #ffffff; }
.share-widget__option--copy { background: linear-gradient(135deg, #12163e 0%, #343975 100%); font-size: 1.1rem; }

.share-widget__toggle:focus-visible,
.share-widget__option:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.share-widget__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.share-widget__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.share-widget__icon svg {
    width: 60%;
    height: 60%;
}

.share-widget__option--whatsapp .share-widget__icon svg {
    width: 66%;
    height: 66%;
    transform: translate(-1px, -0.5px);
}

.share-widget__toggle-icon--close {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
}

.share-widget__toggle-icon[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .share-widget {
        right: 1rem;
        bottom: 2.75rem;
    }

    .share-widget__toggle,
    .share-widget__option {
        width: 48px;
        height: 48px;
    }

    .feedback-fab {
        left: 1rem;
        bottom: 2.75rem;
        width: 48px;
        height: 48px;
    }

    body.page-index.has-sticky-ad .share-widget,
    body.page-index.has-sticky-ad .feedback-fab {
        bottom: 2.75rem;
    }
}

@media (max-width: 480px) {
    .share-widget {
        right: 0.75rem;
        bottom: 2.5rem;
    }

    .share-widget__toggle,
    .share-widget__option {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .feedback-fab {
        left: 0.75rem;
        bottom: 2.5rem;
        width: 46px;
        height: 46px;
    }

    body.page-index.has-sticky-ad .share-widget,
    body.page-index.has-sticky-ad .feedback-fab {
        bottom: 2.5rem;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-top: 2px solid #5f3bff;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-consent__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-consent__text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.cookie-consent__text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-consent__actions .btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent__actions .btn--primary {
    background: #5f3bff;
    color: white;
}

.cookie-consent__actions .btn--primary:hover {
    background: #4a2fcc;
    transform: translateY(-1px);
}

.cookie-consent__actions .btn--secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__actions .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent__actions .btn--outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent__actions .btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cookie-modal__content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
}

.cookie-modal__header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal__close:hover {
    background: #f8f9fa;
    color: #495057;
}

.cookie-modal__body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fafbfc;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-category__info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-category__info p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Toggle Switch Styles */
.toggle {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 1.5rem;
}

.toggle__slider:before {
    position: absolute;
    content: "";
    height: 1.1rem;
    width: 1.1rem;
    left: 0.2rem;
    bottom: 0.2rem;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle input:checked + .toggle__slider {
    background-color: #5f3bff;
}

.toggle input:disabled + .toggle__slider {
    background-color: #28a745;
    cursor: not-allowed;
}

.toggle input:checked + .toggle__slider:before {
    transform: translateX(1.5rem);
}

.cookie-modal__footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.cookie-modal__footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal__footer .btn--primary {
    background: #5f3bff;
    color: white;
}

.cookie-modal__footer .btn--primary:hover {
    background: #4a2fcc;
    transform: translateY(-1px);
}

.cookie-modal__footer .btn--outline {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.cookie-modal__footer .btn--outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .cookie-consent__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal__content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .cookie-category__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .cookie-modal__footer {
        flex-direction: column;
    }
    
    .cookie-modal__footer .btn {
        width: 100%;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.badge--pro {
    background: #17151f;
    color: #ffb43a;
    min-width: 1.3rem;
    min-height: 1.3rem;
}

/* About Content Styles */
.about-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-left: 4px solid #5f3bff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 992px) {
    .about-content .container {
        padding-left: 1.5rem;
        padding-right: 4.5rem;
    }
}

.about-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.about-content p:empty {
    display: none;
}

/* Alert styles for contact form */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert p {
    margin: 0;
}

.badge--pro::before {
    content: '\1F451'; /* crown symbol */
}

.pill--pro {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

body.has-sticky-ad .footer nav {
    margin-top: 1.5rem;
}
:root {
    --clr-hero-start: #4c13ff;
    --clr-hero-end: #8928ff;
    --clr-deep-purple: #4010d7;
    --clr-bg: #f5f6fb;
    --clr-surface: #ffffff;
    --clr-muted: #7a7c95;
    --clr-text: #141632;
    --clr-border: #e6e7f2;
    --clr-pill: rgba(255, 255, 255, 0.22);
    --clr-orange: linear-gradient(135deg, #ffc951, #ff912e);
    --shadow-card: 0 18px 40px rgba(24, 16, 55, 0.12);
    --shadow-soft: 0 12px 30px rgba(24, 16, 55, 0.08);
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
}

body.page-index {
    overflow-x: hidden;
}

body.page-blog {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-blog main {
    flex: 1 0 auto;
}

body.page-static {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-static main {
    flex: 1 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: min(1200px, 94vw);
    margin: 0 auto;
}

body.page-index .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 2.5rem 0 6.5rem;
    background: linear-gradient(135deg, var(--clr-hero-start), var(--clr-hero-end));
    color: var(--clr-surface);
    overflow: hidden;
}

.hero--flat {
    padding: 2.5rem 0 2.5rem;
    background: linear-gradient(135deg, var(--clr-hero-start), var(--clr-hero-end));
    color: var(--clr-surface);
}

.hero--flat .hero__content,
.hero--flat .hero-mailbox,
.hero--flat .hero__stats,
.hero--flat .hero__ads--sides,
.hero--flat .hero-mailbox__note {
    display: none;
}

.page-hero-ad {
    margin-top: 14px;
    padding: 0 0 1.25rem;
}

.page-hero-ad .container {
    display: flex;
    justify-content: center;
}

.hero__stars {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.25;
}

.hero__nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    margin-left: auto;
    margin-right: auto;
    padding: 0.9rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    margin-bottom: 2rem;
}

.hero__menu {
    display: inline-flex;
    gap: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-left: auto;
}

.hero__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border-radius: 999px;
    border: 1px solid rgba(20, 8, 58, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: #1a0f4a;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(10, 0, 35, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hero__menu-toggle:hover,
.hero__menu-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(20, 8, 58, 0.55);
    box-shadow: 0 18px 32px rgba(12, 0, 45, 0.32);
    color: #120934;
}

.hero__menu-toggle:active {
    transform: scale(0.95);
}

.hero__menu-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.hero__menu-toggle__box {
    position: relative;
    width: 20px;
    height: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.hero__menu-toggle__line {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.hero__menu-toggle.is-active .hero__menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hero__menu-toggle.is-active .hero__menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.hero__menu-toggle.is-active .hero__menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 769px) {
    .hero__menu-toggle {
        display: none;
    }
}

.hero__actions {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.hero__menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.hero__menu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.hero__menu a[aria-current="page"] {
    opacity: 1;
    color: #120a2b;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.95);
}

.blog-header {
    background: #08021c;
    color: var(--clr-surface);
    padding: 1.25rem 0 0;
    box-shadow: 0 12px 20px rgba(12, 6, 30, 0.25);
}

.blog-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.brandmark {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.brandmark__text {
    font-weight: 700;
}

.brandmark__icon {
    font-size: 1.95rem;
}

 .brandmark__logo {
     width: 34px;
     height: 34px;
     object-fit: contain;
     display: inline-block;
 }

.btn {
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--pill {
    padding: 0.75rem 1.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--clr-orange);
    color: #2f1a00;
    box-shadow: 0 12px 25px rgba(255, 145, 46, 0.4);
    border: none;
}

.btn--pill:hover {
    transform: translateY(-2px);
}

.btn--premium {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn--premium-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.9rem;
    background: linear-gradient(120deg, #ffd25f, #ff9f1c);
    box-shadow: 0 12px 30px rgba(255, 159, 28, 0.45);
    color: #2b1800;
}

.btn--outline {
    background: transparent;
    color: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn--outline:hover {
    transform: translateY(-2px);
    border-color: var(--clr-surface);
}

body.modal-open {
    overflow: hidden;
}

.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.review-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.review-modal__content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f7f7ff 100%);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    outline: none;
}

.review-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.25rem 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.review-modal__header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

.review-modal__close {
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    color: #6c757d;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.review-modal__close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #2c3e50;
}

.review-modal__body {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.review-modal__subtitle {
    margin: 0 0 1rem 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.4;
}

.review-stars {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.review-star {
    appearance: none;
    border: 1px solid rgba(95, 59, 255, 0.25);
    background: #fff;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.2rem;
    cursor: pointer;
    color: rgba(255, 193, 7, 0.6);
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.review-star.is-active {
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(255, 193, 7, 0.08);
}

.review-star:hover {
    transform: translateY(-1px);
}

.review-star:focus-visible {
    outline: 2px solid rgba(95, 59, 255, 0.35);
    outline-offset: 2px;
}

.review-field {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(95, 59, 255, 0.15);
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.review-field:focus {
    outline: none;
    border-color: rgba(95, 59, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(95, 59, 255, 0.12);
}

.review-form__status {
    margin: 0.5rem 0 0.75rem 0;
    min-height: 1.25rem;
    color: #6c757d;
}

.review-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.review-modal__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

 .review-modal .review-modal__actions .pill {
     padding: 0.675rem 2rem;
     min-width: 160px;
}

.review-modal .review-modal__actions .pill--outline {
    background: #22c55e;
    border-color: rgba(0, 0, 0, 0.15);
    color: #0b1f12;
}

.feedback-fab {
    position: fixed;
    left: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1.5rem, 6vh, 3rem);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1200;
    background: linear-gradient(135deg, #f97316 0%, #f43f5e 45%, #ef4444 100%);
    color: #fff;
    box-shadow: 0 18px 32px -12px rgba(244, 67, 54, 0.4);
    animation: feedbackFabPulse 1.8s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}

.feedback-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(18, 16, 62, 0.28);
}

.feedback-fab:active {
    transform: translateY(0);
    box-shadow: 0 10px 18px rgba(18, 16, 62, 0.22);
}

.feedback-fab:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.feedback-fab__icon {
    width: 42px;
    height: 42px;
    display: block;
    pointer-events: none;
    filter: drop-shadow(-4px 8px 12px rgba(0, 0, 0, 0.18));
}

body.has-sticky-ad .feedback-fab,
body.has-sticky-ad .share-widget {
    bottom: clamp(5.5rem, 11vh, 6.5rem);
}

body.page-index.has-sticky-ad .share-widget,
body.page-index.has-sticky-ad .feedback-fab {
    bottom: clamp(1.5rem, 6vh, 3rem);
}

@keyframes feedbackFabPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1px) scale(1.04);
    }
}

.premium-modal[hidden] {
    display: none !important;
}

.premium-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.premium-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 2, 20, 0.75);
    backdrop-filter: blur(6px);
}

.premium-modal__dialog {
    position: relative;
    width: min(420px, 90vw);
    background: #08021c;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(7, 3, 20, 0.55);
    color: #fff;
    z-index: 1;
}

.premium-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.premium-modal__eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
}

.premium-modal__header h2 {
    font-size: 2.75rem;
    margin: 0;
    line-height: 1;
}

.premium-modal__header h2 span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 0.3rem;
}

.premium-modal__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
}

.premium-modal__billing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.billing-chip {
    padding: 0.75rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--clr-surface);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-chip small {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: #ffd25f;
}

.billing-chip--active {
    background: #1effac;
    color: #051622;
    border-color: #1effac;
}

.billing-chip--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.billing-chip:not(.billing-chip--active):hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.premium-modal__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.premium-modal__features li {
    position: relative;
    padding-left: 1.7rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.premium-modal__features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #1affb4;
    font-weight: 700;
}

.premium-modal__input {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.premium-modal__input input {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-surface);
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-size: 0.95rem;
}

.premium-modal__input input::placeholder {
color: rgba(255, 255, 255, 0.5);
}

.premium-modal__footnote {
font-size: 0.85rem;
text-align: center;
color: rgba(255, 255, 255, 0.7);
margin: 1.25rem 0 0.35rem;
}

.premium-modal__auth {
display: flex;
flex-direction: column;
gap: 0.6rem;
}

.premium-modal__legal {
text-align: center;
font-size: 0.78rem;
color: rgba(255, 255, 255, 0.5);
}

.premium-modal__legal a {
color: rgba(255, 255, 255, 0.85);
}

/* Popup ad */
.popup-ad[hidden] {
display: none !important;
}

.popup-ad {
position: fixed;
inset: 0;
z-index: 1100;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
}

.popup-ad__overlay {
position: absolute;
inset: 0;
background: rgba(9, 6, 21, 0.65);
backdrop-filter: blur(4px);
}

.popup-ad__dialog {
position: relative;
width: min(575px, 96vw);
min-height: 352px;
background: #fff;
border-radius: 24px;
box-shadow: 0 35px 85px rgba(9, 6, 21, 0.4);
padding: clamp(1.5rem, 3vw, 2.25rem);
z-index: 1;
}

.popup-ad__close {
position: absolute;
top: 0.8rem;
right: 0.8rem;
background: rgba(15, 23, 42, 0.12);
border: 1px solid rgba(15, 23, 42, 0.18);
border-radius: 999px;
width: 42px;
height: 42px;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.35rem;
font-weight: 700;
line-height: 1;
color: #0f172a;
box-shadow: 0 12px 24px rgba(9, 6, 21, 0.18);
}

.popup-ad__close:hover,
.popup-ad__close:focus-visible {
background: rgba(15, 23, 42, 0.18);
border-color: rgba(15, 23, 42, 0.28);
box-shadow: 0 14px 28px rgba(9, 6, 21, 0.22);
}

@media (max-width: 480px) {
    .popup-ad {
        padding: 1rem;
    }

    .popup-ad__dialog {
        width: min(575px, 98vw);
        border-radius: 20px;
        padding: 1.25rem;
    }

    .popup-ad__close {
        top: 0.65rem;
        right: 0.65rem;
        width: 44px;
        height: 44px;
    }
}

.popup-ad__body {
min-height: 260px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #0f172a;
}

.popup-ad__placeholder {
border: 1px dashed #c7c9d8;
border-radius: 16px;
padding: 1.5rem;
font-size: 0.95rem;
color: #525471;
width: 100%;
}

.sample-ad {
display: grid;
grid-template-columns: 150px 1fr;
gap: 1.2rem;
align-items: center;
text-align: left;
}

.sample-ad img {
width: 150px;
height: 150px;
border-radius: 18px;
object-fit: cover;
}

.sample-ad__eyebrow {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.24em;
color: #ff6a3a;
margin-bottom: 0.3rem;
}

.sample-ad__cta {
display: inline-flex;
align-items: center;
gap: 0.35rem;
color: #5f3bff;
font-weight: 600;
margin-top: 0.75rem;
}

.auth {
padding: 8rem 0 9rem;
}

.auth__grid {
    display: grid;
    gap: 2.5rem;
}

.auth__intro h1 {
    margin-top: 0.65rem;
    font-size: 2.2rem;
}

.auth__intro {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
}

.auth__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.auth__perks {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.5rem;
    color: var(--clr-muted);
}

.auth__perks li {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.auth__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

@media (max-width: 960px) {
    .auth__panel {
        grid-template-columns: 1fr;
    }
}

.auth__stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.auth__stats strong {
    font-size: 1.8rem;
    display: block;
}

.auth__stats span {
    color: var(--clr-muted);
    font-size: 0.9rem;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
}

.auth-card--ghost {
    background: #faf8ff;
}

.auth-card--glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.auth-card header {
    margin-bottom: 0.85rem;
}

.auth-card header small {
    color: var(--clr-muted);
}

.auth-form {
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
}

.auth-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    color: #392857;
}

.auth-form input {
    border-radius: 12px;
    border: 1px solid var(--clr-border);
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
}

.auth-form select {
    border-radius: 12px;
    border: 1px solid var(--clr-border);
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    background: #fff;
}

.auth__link {
    text-align: right;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.35rem;
    color: #6a54d7;
}

.dashboard {
    padding: 7rem 0 5rem;
    background: #faf9ff;
}

.dashboard__layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
}

.dashboard__sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.dashboard__upgrade-note {
    font-size: 0.8rem;
    color: var(--clr-muted);
    margin-top: 0.6rem;
}

.dashboard__logout {
    background: #fff;
    color: #4a2fd6;
    border: 1px solid rgba(74, 47, 214, 0.2);
    text-align: center;
    margin-top: 0.5rem;
}

.dashboard__welcome {
    font-weight: 600;
}

.dashboard__upgrade {
    margin-top: auto;
    display: grid;
    gap: 0.6rem;
}

.dashboard-nav {
    display: grid;
    gap: 0.6rem;
}

.dashboard-nav a {
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    font-weight: 500;
    color: #4a3b75;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-nav a.is-active {
    background: rgba(108, 86, 215, 0.12);
    border-color: rgba(108, 86, 215, 0.35);
    color: #3a24c7;
}

.dashboard__content {
    display: grid;
    gap: 1.5rem;
}

.dashboard__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat-tile {
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
    display: grid;
    gap: 0.35rem;
}

.stat-tile__icon {
    font-size: 1.4rem;
    opacity: 0.7;
}

.dashboard__panels {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.25rem;
}

.panel {
    background: #fff;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
}

.panel header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.fake-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    height: 180px;
}

.fake-chart span {
    flex: 1;
    display: block;
    background: linear-gradient(180deg, #7f6cff, #d5ccff);
    border-radius: 999px 999px 4px 4px;
}

.chart__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.inbox-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inbox-preview__title {
    font-size: 1rem;
    margin: 0;
}

.inbox-preview__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.inbox-preview__list li {
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--clr-border);
    background: #faf9ff;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inbox-preview__list li strong {
    font-size: 0.95rem;
}

.inbox-preview__list li span {
    font-size: 0.8rem;
    color: var(--clr-muted);
}

.inbox-preview__back {
    margin-top: 0.5rem;
}

.panel--history ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.panel--history li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.panel--history strong {
    display: block;
    font-size: 0.95rem;
}

.panel--history span {
    font-size: 0.85rem;
    color: var(--clr-muted);
}

.dashboard .pill {
    border-radius: 15px;
    border: 1px solid var(--clr-border);
    padding: 0.35rem 0.95rem;
    font-size: 0.85rem;
    background: rgba(106, 84, 215, 0.08);
    color: #4a2fd6;
    font-weight: 600;
}

.history__address-domain.is-blurred {
    filter: blur(3px);
    opacity: 0.4;
}

.history__next {
    margin-top: 1rem;
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 2.6rem;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3.6vw, 2.5rem);
    line-height: 1.15;
}

 body.page-index .hero h1 {
     font-size: clamp(1.47rem, 3.528vw, 2.45rem);
 }

.hero__subtitle {
    margin: 0;
    font-size: 1.15rem;
    opacity: 0.92;
}

.hero-mailbox {
    width: min(640px, 92vw);
    margin: 0 auto 2rem;
    padding: 1.5rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 1;
}

.hero-mailbox__address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.35);
    gap: 1rem;
}

 body.page-index .hero-mailbox__address span {
     font-size: 1.12em;
 }

 body.page-index .hero-mailbox .btn-copy,
 body.page-index .hero-mailbox__actions .pill {
     font-size: 0.90em;
 }

.btn-copy {
    border: none;
    border-radius: 14px;
    padding: 0.65rem 1.45rem;
    background: var(--clr-orange);
    color: #2f1a00;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(255, 145, 46, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    transform: translateY(0);
}

.btn-copy:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(255, 145, 46, 0.5);
    background: linear-gradient(135deg, #ffc951, #ff912e);
}

.btn-copy:active {
    transform: translateY(0);
    box-shadow: 0 12px 25px rgba(255, 145, 46, 0.4);
}

.hero-mailbox__actions {
    margin: 1.2rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: var(--clr-pill);
    color: var(--clr-surface);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.pill--outline {
    background: transparent;
}

.pill--blog-cta {
    background: linear-gradient(135deg, var(--clr-hero-start), var(--clr-hero-end));
    border-color: rgba(64, 16, 215, 0.55);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(95, 59, 255, 0.35);
}

.pill--blog-cta:hover {
    background: linear-gradient(135deg, #be123c 0%, #f43f5e 60%, #f97316 100%);
    border-color: rgba(190, 18, 60, 0.55);
    box-shadow: 0 18px 32px -12px rgba(244, 67, 54, 0.45);
}

.pill--blog-cta:focus-visible {
    outline: 3px solid rgba(95, 59, 255, 0.35);
    outline-offset: 3px;
}

.pill--success {
    background: #22c55e;
    border-color: rgba(0, 0, 0, 0.15);
    color: #0b1f12;
}

.pill--success:focus-visible {
    outline: 2px solid rgba(34, 197, 94, 0.45);
    outline-offset: 2px;
}

.pill--success:disabled,
.pill--success[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-mailbox__note {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
}

.hero__stats {
    width: min(680px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero__stats li {
    background: rgba(64, 16, 215, 0.95);
    border-radius: 18px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat__value {
    display: block;
    font-weight: 700;
    font-size: 1.55rem;
}

.stat__label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.85;
}

.hero__ads {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem auto 0;
}

.hero__ads--sides {
    position: absolute;
    top: auto;
    bottom: 260px;
    left: 180px;
    right: 180px;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.hero__ads--sides {
    justify-content: space-between;
    padding: 0;
}

.hero__ads--sides .ad-slot {
    pointer-events: auto;
    border: none;
    background: transparent;
    color: transparent;
}

.ad-slot {
    border-radius: 18px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
}

.ad-slot--vertical {
    width: 160px;
    height: 600px;
}

.ad-slot--banner {
    width: 100%;
    max-width: 970px;
    height: 120px;
    border: none;
    background: transparent;
    color: transparent;
    overflow: hidden;
}

.hero__ads--banner .ad-slot {
    border: none;
    background: transparent;
    color: transparent;
}

.sticky-ad {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 728px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    z-index: 100;
    pointer-events: none;
    overflow: visible;
}

.sticky-ad__toggle {
    pointer-events: auto;
    border: none;
    background: var(--clr-surface);
    color: var(--clr-deep-purple);
    width: 46px;
    height: 28px;
    border-radius: 999px 999px 0 0;
    box-shadow: 0 -4px 18px rgba(20, 10, 60, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transform: translateY(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-ad__toggle .toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.sticky-ad__content {
    pointer-events: auto;
    width: 100%;
    background: var(--clr-surface);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 40px rgba(20, 10, 60, 0.25);
    padding: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, max-height 0.35s ease, padding 0.35s ease;
    max-height: 220px;
    overflow: hidden;
    margin: 0;
}

.ad-slot--sticky {
    width: 100%;
    height: 120px;
    border: none;
    color: transparent;
    background: transparent;
    margin-right: 5px;
}

.sticky-ad[data-hidden="true"] .sticky-ad__content {
    transform: translateY(36px);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    padding: 0;
}

.sticky-ad[data-hidden="true"] .sticky-ad__toggle {
    transform: translateY(0);
    box-shadow: 0 -4px 12px rgba(20, 10, 60, 0.2);
}

.sticky-ad[data-hidden="true"] .sticky-ad__toggle .toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .hero__ads--sides {
        display: none;
    }

    .hero {
        padding: 2rem 0 5rem;
    }

    .hero__content {
        padding: 0 1rem;
    }

    .hero-mailbox {
        width: min(540px, 94vw);
    }

    .hero__ads--banner .ad-slot {
        height: 100px;
        width: min(728px, 92vw);
    }

    .mailbox__canvas {
        width: min(1100px, 95vw);
        padding: 2.2rem 2rem;
    }
}

/* Sections */
main {
    margin-top: 0;
}

section {
    padding: 4rem 0;
}

.mailbox {
    position: relative;
    padding-bottom: 0;
}

.mailbox__glow {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(1200px, 95vw);
    height: 320px;
    background: radial-gradient(circle at 30% 20%, rgba(140, 110, 255, 0.25), transparent 55%),
        radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.9), transparent 60%);
    filter: blur(60px);
    opacity: 0.6;
}

.mailbox__canvas {
    position: relative;
    z-index: 1;
    background: var(--clr-surface);
    border-radius: 34px;
    width: min(1240px, 96vw);
    margin: 0 auto;
    padding: 2.5rem;
    box-shadow: 0 35px 60px rgba(30, 25, 60, 0.15);
}

.mailbox__ad {
    padding: 1rem 0 4rem;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 96vw;
    margin: 0 auto;
    overflow: hidden;
}

.mailbox__ad .ad-slot {
    border: none;
    background: transparent;
    color: transparent;
    width: 100%;
    height: 120px;
    box-shadow: none;
}

.mailbox h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.section-subtitle {
    color: var(--clr-muted);
    margin-bottom: 2rem;
}

.mailbox__wrap {
    display: grid;
    grid-template-columns: minmax(320px, 40%) 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.mailbox__list {
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(244,240,255,0.95));
    border: 1px solid rgba(133, 96, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(32, 9, 88, 0.08);
    height: 100%;
    backdrop-filter: blur(14px);
}

.mailbox__header {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr auto;
    padding: 1rem 1.4rem;
    background: linear-gradient(130deg, #7c49ff, #5c2dff);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    align-items: center;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.mailbox__refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.6rem;
    margin-top: 5px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.mailbox__refresh-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.mailbox__refresh-btn:active {
    transform: translateY(0);
}

.mailbox__refresh-btn svg {
    transition: transform 0.3s ease;
}

.mailbox__refresh-btn:hover svg {
    transform: rotate(180deg);
}

.refresh-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.3rem;
    transition: all 0.3s ease;
}

.refresh-countdown.warning {
    background: rgba(255, 152, 0, 0.3);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* QR Modal */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.qr-modal__content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.qr-modal__content h3 {
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.qr-code img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.qr-modal__close {
    background: var(--clr-hero-start);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.qr-modal__close:hover {
    background: var(--clr-hero-end);
}

/* Light hover effects for pills */
.pill {
    transition: all 0.2s ease;
    transform: translateY(0);
}

.pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(140, 21, 255, 0.2);
}

.pill--success:hover {
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.32);
}

.pill:active {
    transform: translateY(0);
}

.mailbox__items {
    max-height: 420px;
    overflow-y: auto;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    scrollbar-width: thin;
    scrollbar-color: #bfa7ff transparent;
}

.mailbox__items::-webkit-scrollbar {
    width: 6px;
}

.mailbox__items::-webkit-scrollbar-thumb {
    background: rgba(127, 90, 255, 0.5);
    border-radius: 999px;
}

.mail-item {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(116, 92, 255, 0.08);
    background: white;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.mail-item:hover,
.mail-item.is-active {
    border-color: rgba(95, 59, 255, 0.5);
    box-shadow: 0 12px 28px rgba(51, 23, 116, 0.12);
    transform: translateY(-2px);
}

.mail-item__sender,
.mail-item__subject,
.mail-item__time {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mail-item__sender {
    font-weight: 600;
    color: #2f225c;
    min-width: 0; /* Allow text to shrink */
    font-size: 0.9rem; /* Slightly smaller font for longer text */
}

.mail-item__subject {
    font-weight: 500;
    color: #6b5ea6;
}

.mail-item__time {
    justify-self: flex-end;
    font-size: 0.82rem;
    color: #8f84b7;
}

.mailbox__viewer {
    border: 1px solid rgba(133, 96, 255, 0.15);
    border-radius: 30px;
    padding: 2rem 2.25rem;
    background: linear-gradient(180deg, #ffffff, #f7f5ff);
    box-shadow: 0 25px 70px rgba(38, 14, 102, 0.09);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.mailbox__viewer header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}
.mailbox__refresh-orb {
    position: absolute;
    bottom: 5px;
    right: 26px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: linear-gradient(160deg, #fff, #f3edff);
    box-shadow: 0 18px 35px rgba(45, 10, 94, 0.18);
    border: 1px solid rgba(109, 80, 255, 0.2);
    z-index: 1;
}

.mailbox__list {
    position: relative;
    padding-bottom: 2.2rem;
}

.refresh-orb__btn {
    border: none;
    background: linear-gradient(120deg, #6b3dff, #a054ff);
    color: #fff;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.44rem 1.05rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(64, 21, 148, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.refresh-orb__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(64, 21, 148, 0.32);
}

.refresh-orb__btn svg {
    stroke: currentColor;
}

.refresh-orb__progress {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fbf9ff;
    border: 1px solid rgba(119, 82, 255, 0.25);
    box-shadow: inset 0 4px 10px rgba(76, 31, 155, 0.15), 0 8px 14px rgba(37, 12, 78, 0.12);
}

.refresh-orb__progress svg {
    position: absolute;
    inset: 4px;
    transform: rotate(-90deg);
}

.refresh-orb__track {
    fill: none;
    stroke: rgba(180, 170, 231, 0.4);
    stroke-width: 3px;
}

.refresh-orb__ring {
    fill: none;
    stroke: #7a4dff;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-dasharray: 151;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.2s linear;
}

.refresh-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    transform: translate(-63%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    color: #4a2a8a;
    border-radius: 50%;
    transition: box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.refresh-countdown.warning {
    background: rgba(255, 173, 51, 0.25);
    box-shadow: 0 0 12px rgba(255, 173, 51, 0.6);
    color: #a14a00;
}

.viewer__label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--clr-muted);
}

.viewer__meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--clr-muted);
    font-weight: 500;
}

.viewer__from-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    color: #a29ac5;
    display: block;
    margin-bottom: 0.2rem;
}

.viewer__from-name {
    font-size: 1rem;
    color: #30195c;
    margin-right: 0.4rem;
}

.viewer__from-email {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #7a6bb4;
    display: inline-block;
}

.viewer__actions {
    display: flex;
    justify-content: flex-end;
}

.viewer-action {
    border-radius: 999px;
    border: none;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    background: linear-gradient(120deg, #8152ff, #a162ff);
    color: #fff;
    box-shadow: 0 12px 25px rgba(123, 66, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.viewer-action--primary {
    background: linear-gradient(120deg, #8152ff, #a162ff);
    color: #fff;
}

.viewer-action--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(123, 66, 255, 0.4);
}

.viewer-action--primary:active {
    transform: translateY(0);
}

.viewer__body {
    background: #f7f3ff;
    border-radius: 18px;
    min-height: 240px;
    padding: 1.35rem;
    overflow: auto;
    line-height: 1.6;
    color: #3b2d60;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.viewer__body img,
.viewer__body svg,
.viewer__body video,
.viewer__body iframe {
    max-width: 100% !important;
    height: auto !important;
}

.viewer__body table {
    display: block;
    max-width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.viewer__body td,
.viewer__body th {
    word-break: break-word;
}

.viewer__body pre,
.viewer__body code {
    white-space: pre-wrap;
    word-break: break-word;
}

.viewer__from-email {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Ensure buttons inside viewer maintain their styles */
.viewer__body button,
.mailbox__viewer button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.viewer__body .viewer-action,
.mailbox__viewer .viewer-action {
    border-radius: 999px;
    border: none;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    background: linear-gradient(120deg, #8152ff, #a162ff);
    color: #fff;
    box-shadow: 0 12px 25px rgba(123, 66, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.viewer__body .viewer-action--primary,
.mailbox__viewer .viewer-action--primary {
    background: linear-gradient(120deg, #8152ff, #a162ff);
    color: #fff;
}

.viewer__body .viewer-action--primary:hover,
.mailbox__viewer .viewer-action--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(123, 66, 255, 0.4);
}

.viewer__body .viewer-action--primary:active,
.mailbox__viewer .viewer-action--primary:active {
    transform: translateY(0);
}

.viewer__attachments {
    margin-top: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--clr-border);
}

.viewer__attachments-title {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 0.6rem;
}

.attachment-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.attachment-chip {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(86, 52, 255, 0.3);
    background: #f5f1ff;
    color: var(--clr-deep-purple);
    font-weight: 600;
}

.viewer__attachments.is-hidden {
    display: none;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--clr-muted);
}

.mailbox__skeleton {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mail-skeleton {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    gap: 1rem;
}

.skeleton {
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ecebff, #f9f7ff, #ecebff);
    background-size: 200% 100%;
    animation: skeleton 1.3s ease-in-out infinite;
}

.skeleton--lg { width: 70%; }
.skeleton--md { width: 50%; }
.skeleton--sm { width: 40%; }

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Why section */
.section-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--clr-surface);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(87, 55, 255, 0.15);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--clr-deep-purple);
    margin-bottom: 1rem;
}

/* FAQ + blog */
.faq {
    background: var(--clr-surface);
}

.faq__items details {
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 1rem;
    background: #fafaff;
    font-weight: 500;
}

.faq summary {
    cursor: pointer;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::-webkit-details-marker.ribbon {
    background: var(--clr-hero-start);
    color: var(--clr-surface);
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.ribbon--blog {
    background: #140f33;
}

.blog {
    background: var(--clr-surface);
}

.blog--page {
    margin-top: 3rem;
    padding-top: 4rem;
}

.blog--page .section-heading {
    max-width: min(100%, 960px);
    margin-left: auto;
    margin-right: auto;
}

.blog-post-hero {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: clamp(220px, 40vw, 420px);
    background: rgba(95, 59, 255, 0.14);
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 46px rgba(9, 6, 21, 0.12);
}

.blog-post-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 6, 30, 0.35), rgba(12, 6, 30, 0.12));
    pointer-events: none;
    z-index: 1;
}

.blog-post-first-image {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 22px 46px rgba(9, 6, 21, 0.12);
}

.blog-post-first-image img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-post-breadcrumb {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #0c061e;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: calc(100% - 28px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-post-last-updated {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #0c061e;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: calc(100% - 28px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-post-last-updated--standalone {
    position: static !important;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.blog-post-breadcrumb--standalone {
    position: static !important;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    display: inline-flex;
}

.blog-post-breadcrumb a {
    color: rgba(255, 255, 255, 0.96);
    text-decoration: none;
}

.blog-post-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-breadcrumb__sep {
    opacity: 0.65;
}

body.page-blog .page-hero-ad {
    padding-bottom: 0.5rem;
}

body.page-blog .page-hero-ad + main .blog--page {
    margin-top: 1.25rem;
    padding-top: 1.75rem;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}

 .blog__grid.reviews__grid {
     grid-template-columns: repeat(3, minmax(0, 1fr));
 }

 .reviews .reviews__viewall:not(.pill--blog-cta) {
     background: #22c55e;
     border-color: rgba(0, 0, 0, 0.12);
     color: #0b1f12;
     border-radius: 6px;
     padding: 0.54rem 1.3rem;
     font-weight: 700;
     font-size: 1.0em;
 }

 .reviews .reviews__viewall:not(.pill--blog-cta):hover {
     background: #16a34a;
     border-color: rgba(0, 0, 0, 0.18);
     color: #07130b;
 }

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2.5rem;
}

.blog-main {
    min-width: 0;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 1.5rem;
    align-self: start;
}

.sidebar-card {
    background: var(--clr-surface);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(95, 59, 255, 0.12);
    box-shadow: 0 14px 30px rgba(9, 6, 21, 0.08);
    overflow: hidden;
}

.sidebar-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.sidebar-card p {
    margin: 0 0 0.9rem;
    color: var(--clr-muted);
    line-height: 1.55;
}

.sidebar-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.sidebar-post {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.sidebar-post__thumb {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    flex: none;
    background: linear-gradient(135deg, rgba(95, 59, 255, 0.92), rgba(255, 145, 46, 0.82));
    box-shadow: 0 12px 20px rgba(95, 59, 255, 0.18);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sidebar-post__content {
    min-width: 0;
}

.sidebar-post__title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #120a2b;
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.sidebar-post__title:hover {
    text-decoration: underline;
}

.sidebar-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--clr-muted);
}

.sidebar-post__tag {
    background: rgba(95, 59, 255, 0.1);
    border: 1px solid rgba(95, 59, 255, 0.18);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    color: rgba(19, 9, 54, 0.88);
}

.sidebar-post__time {
    font-weight: 600;
}

.subscribe-form {
    display: grid;
    gap: 0.75rem;
}

.sidebar-card--subscribe input {
    margin: 0;
}

.sidebar-card--subscribe button {
    width: 100%;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.sidebar-list li p {
    margin: 0 0 0.25rem;
    font-weight: 600;
}

.sidebar-list li small {
    color: var(--clr-muted);
}

.sidebar-card--search label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-muted);
}

.search-field {
    margin-top: 0.6rem;
    display: flex;
    align-items: stretch;
}

.search-field input {
    flex: 1;
    border: 1px solid var(--clr-border);
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}

.search-field button,
.sidebar-card--subscribe button {
    border: none;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    background: var(--clr-orange);
    color: #2f1a00;
    font-weight: 600;
    cursor: pointer;
}

.search-field button {
    border-radius: 0 12px 12px 0;
    width: 110px;
    border: 1px solid var(--clr-border);
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.4rem;
}

.sidebar-card--subscribe input {
    width: 100%;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 0.7rem 0.95rem;
    margin: 0;
}

.blog-card {
    background: var(--clr-surface);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.blog-card__image {
    height: 250px;
    background: linear-gradient(135deg, #f857a6, #ff5858);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

 .blog-card__image img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
 }

.blog-card__body {
    padding: 1rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__tag {
    margin: 0 0 0.5rem;
}

.blog-card__body h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog .blog-card__body > p:not(.blog-card__tag) {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.55em * 4);
}

.reviews .blog-card__body > p {
    display: block;
    overflow: visible;
    min-height: 0;
}

.reviews .blog-card__body > p:last-child {
    margin-top: auto;
}

.blog-card__meta {
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.95rem;
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-top: auto;
}

.blog-card__meta span {
    color: var(--clr-muted);
    font-weight: 600;
    white-space: nowrap;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316 0%, #f43f5e 45%, #ef4444 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 24px -12px rgba(244, 67, 54, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
    white-space: nowrap;
}

.blog-card__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px -12px rgba(244, 67, 54, 0.45);
    background: linear-gradient(135deg, #be123c 0%, #f43f5e 60%, #f97316 100%);
}

.blog-card__link:focus-visible {
    outline: 3px solid rgba(244, 67, 54, 0.35);
    outline-offset: 3px;
    border-radius: 8px;
}

.pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.pagination__list {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    color: var(--clr-text);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination__link:hover {
    border-color: rgba(95, 59, 255, 0.45);
    color: var(--clr-deep-purple);
}

.pagination__link.is-active {
    background: var(--clr-deep-purple);
    border-color: var(--clr-deep-purple);
    color: #fff;
    cursor: default;
}

.pagination__link.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.about {
    background: var(--clr-surface);
}

.about__hero {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.about__hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 0.75rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.stat-card {
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    padding: 1.4rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--clr-deep-purple);
}

.stat-card span {
    color: var(--clr-muted);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-card {
    border-radius: 24px;
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.about-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--clr-muted);
    line-height: 1.6;
}

.about__timeline {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--clr-border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item strong {
    color: var(--clr-deep-purple);
    font-size: 1.1rem;
}

.timeline-item p {
    margin: 0;
    color: var(--clr-muted);
}

.about__cta {
    text-align: center;
    margin-top: 3rem;
}

.about__cta .btn--pill {
    margin-top: 1rem;
}

.legal {
    background: var(--clr-surface);
}

.legal__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.legal__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    color: var(--clr-muted);
    font-weight: 500;
}

.legal__section {
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--clr-border);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

.legal__section h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.legal__section p {
    color: var(--clr-muted);
    line-height: 1.6;
}

.legal__list {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
    color: var(--clr-muted);
}

.legal__list li {
    margin-bottom: 0.5rem;
}

.legal__cta {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--clr-muted);
}

.faq-page .faq__items {
    max-width: 860px;
    margin: 0 auto;
}

.faq-page details {
    background: #fffefc;
}

.contact {
    background: var(--clr-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.contact-card,
.contact-form {
    background: #fff;
    border-radius: 22px;
    border: 1px solid var(--clr-border);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.contact-card p {
    margin: 0;
    color: var(--clr-muted);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: inline-block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-form__submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.footer {
    text-align: center;
    padding: 4.2rem 0;
    background: #05050f;
    color: rgba(255, 255, 255, 0.75);
    transition: padding-bottom 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.footer nav {
    margin-top: 1rem;
    display: inline-flex;
    gap: 1.5rem;
    font-weight: 600;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

body:not(.has-sticky-ad) .sticky-ad[data-hidden="true"] + .footer {
    margin-top: -50px;
}

body.has-sticky-ad .footer {
    padding-bottom: clamp(190px, 20vh, 290px);
}

body.has-sticky-ad .footer nav {
    margin-top: 1.5rem;
}

body.has-sticky-ad .footer .container {
    transform: translateY(-40px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .blog-sidebar {
        position: static;
        top: auto;
        align-self: stretch;
    }

    .blog--page {
        margin-top: 1.5rem;
        padding-top: 2.75rem;
    }

    .sidebar-card {
        padding: 1.25rem;
    }

    .search-field {
        flex-direction: column;
    }

    .search-field input {
        border-right: 1px solid var(--clr-border);
        border-radius: 12px;
    }

    .search-field button {
        width: 100%;
        border-radius: 12px;
        border-left: 1px solid var(--clr-border);
        margin-top: 0.6rem;
        justify-content: center;
        padding-left: 1rem;
    }

    .hero__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

    .hero-mailbox__address {
        flex-direction: column;
    }

    .hero__stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        width: 100%;
        margin-top: 1.5rem;
    }

    .hero-mailbox {
        width: 100%;
    }

    .mailbox__canvas {
        padding: 2rem 1.5rem;
    }

    .hero__ads--banner {
        margin-top: 1rem;
    }
}

@media (max-width: 900px) {
    .mailbox__wrap {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .blog--page {
        margin-top: 1.5rem;
        padding-top: 2.75rem;
    }

    .sidebar-card {
        padding: 1.25rem;
    }

    .search-field {
        flex-direction: column;
    }

    .search-field input {
        border-right: 1px solid var(--clr-border);
        border-radius: 12px;
    }

    .search-field button {
        width: 100%;
        border-radius: 12px;
        border-left: 1px solid var(--clr-border);
        margin-top: 0.6rem;
        justify-content: center;
        padding-left: 1rem;
    }

    .hero__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

    .hero-mailbox__address {
        flex-direction: column;
    }

    .hero__stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        width: 100%;
        margin-top: 1.5rem;
    }

    .hero-mailbox {
        width: 100%;
    }

    .mailbox__canvas {
        padding: 2rem 1.5rem;
    }

    .hero__ads--banner {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .hero__nav {
        flex-direction: row;
        align-items: center;
    }

    .brandmark {
        justify-content: flex-start;
    }

    .hero__menu {
        width: 100%;
    }

    .hero-mailbox {
        width: 100%;
        padding: 1.25rem;
    }

    .hero-mailbox__address {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-mailbox__address span {
        width: 100%;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .btn-copy {
        width: 100%;
    }

    .mailbox {
        width: 100%;
    }

    .mailbox__canvas {
        padding: 1.75rem 1.2rem;
        border-radius: 28px;
    }

    .pill {
        flex: 1 1 48%;
        text-align: center;
    }

    .mailbox__header,
    .mail-item,
    .mail-skeleton {
        grid-template-columns: 1fr auto;
    }

    .mailbox__header > :nth-child(2) {
        display: none;
    }

    .mail-item {
        grid-template-rows: auto auto;
    }

    .mail-item__sender {
        grid-column: 1;
        grid-row: 1;
    }

    .mail-item__time {
        grid-column: 2;
        grid-row: 1;
    }

    .mail-item__subject {
        grid-column: 1 / -1;
        grid-row: 2;
        white-space: normal;
    }

    .mailbox__refresh-btn {
        display: none;
    }

    .hero__ads--banner .ad-slot {
        height: 90px;
        width: 100%;
        font-size: 0.75rem;
    }

    .viewer__actions {
        justify-content: flex-start;
    }

    .mailbox__viewer {
        padding: 1.6rem 1.5rem;
    }

    .footer {
        padding: 3.25rem 0;
    }

    .footer nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        text-align: center;
        line-height: 1.35;
    }

    .footer nav a {
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 1rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

     .reviews .reviews__grid {
         grid-template-columns: 1fr;
     }

    .hero-mailbox__address {
        font-size: 0.95rem;
    }

    .hero-mailbox__actions {
        gap: 0.4rem;
    }

    .pill {
        flex: 1 1 100%;
    }

    .hero__stats li {
        padding: 1rem;
    }

    .mailbox__canvas {
        padding: 1.5rem 1rem;
    }

    .mailbox__viewer header {
        flex-direction: column;
    }

    .viewer__body {
        min-height: 180px;
    }

    .hero__ads--banner .ad-slot {
        height: 70px;
    }

    .footer nav {
        gap: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

body.page-index .why,
body.page-index .faq,
body.page-index .blog,
body.page-index .reviews,
body.page-index .about-content {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.temp-mail-content p {
    margin-bottom: 22px;
    line-height: 1.75;
    font-size: 16px;
    color: #222;
}

@media (max-width: 768px) {
    .temp-mail-content p {
        margin-bottom: 18px;
        line-height: 1.7;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .temp-mail-content p {
        margin-bottom: 16px;
        line-height: 1.65;
        font-size: 14.5px;
    }
}

.internal-links-box {
    margin-top: 40px;
    padding: 24px;
    background: #f8f9ff;
    border-left: 4px solid #5b4dff;
    border-radius: 12px;
}

.internal-links-box h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: #222;
}

.internal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-links-list li {
    margin-bottom: 14px;
}

.internal-links-list a {
    font-weight: 600;
    color: #5b4dff;
    text-decoration: none;
}

.internal-links-list a:hover {
    text-decoration: underline;
}

.internal-links-list span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}

/* Blog Sidebar Ads */
.blog-sidebar-ads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-ad-slot {
    width: 300px;
    height: 250px;
    border: 1px dashed rgba(91, 77, 255, 0.3);
    background: rgba(91, 77, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(91, 77, 255, 0.6);
    text-align: center;
    overflow: hidden;
}

.blog-ad-slot ins,
.blog-ad-slot iframe,
.blog-ad-slot img {
    max-width: 100%;
    max-height: 100%;
}

.blog-ad-instructions {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(91, 77, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid #5b4dff;
}

.blog-ad-instructions ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
}

.blog-ad-instructions li {
    margin-bottom: 0.25rem;
}

.blog-ad-instructions small {
    line-height: 1.4;
}

/* Homepage 300x250 Horizontal Ads */
.homepage-ads {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(91, 77, 255, 0.03) 0%, rgba(91, 77, 255, 0.06) 100%);
}

.homepage-ads__grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop: 4 columns × 1 row (ads 1-4 on first row) */
@media (min-width: 1025px) {
    .homepage-ads__grid {
        grid-template-columns: repeat(4, 300px);
        grid-template-rows: 1fr;
    }
}

/* Tablet: 2 columns × 2 rows */
@media (min-width: 768px) and (max-width: 1024px) {
    .homepage-ads__grid {
        grid-template-columns: repeat(2, 300px);
        grid-template-rows: repeat(2, 250px);
        gap: 1.5rem;
    }
}

/* Mobile: 1 column × 4 rows */
@media (max-width: 767px) {
    .homepage-ads__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
        gap: 1rem;
    }
    
    .homepage-ad-slot {
        width: 100%;
        max-width: 300px;
        height: 250px;
        margin: 0 auto;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .homepage-ads {
        padding: 2rem 0;
    }
    
    .homepage-ads__grid {
        gap: 1rem;
    }
    
    .homepage-ad-slot {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
}

.homepage-ad-slot {
    width: 300px;
    height: 250px;
    border: 1px dashed rgba(91, 77, 255, 0.3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(91, 77, 255, 0.6);
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(91, 77, 255, 0.1);
    transition: all 0.3s ease;
}

.homepage-ad-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 77, 255, 0.15);
}

.homepage-ad-slot ins,
.homepage-ad-slot iframe,
.homepage-ad-slot img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.homepage-ad-instructions {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border-left: 4px solid #5b4dff;
    box-shadow: 0 2px 8px rgba(91, 77, 255, 0.1);
}

.homepage-ad-instructions ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
}

.homepage-ad-instructions li {
    margin-bottom: 0.25rem;
}

.homepage-ad-instructions small {
    line-height: 1.4;
}

/* Responsive for Homepage Ads */
@media (max-width: 768px) {
    .homepage-ads__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .homepage-ad-slot {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .homepage-ads {
        padding: 2rem 0;
    }
    
    .homepage-ad-slot {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
}

