:root {
    --primary-color: #5d9b5d;
    /* Soft Green */
    --secondary-color: #5c9ead;
    /* Soft Blue */
    --accent-color: #dcbfa2;
    /* Soft Beige */
    --text-color: #333333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --on-primary-color: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --container-width: 1100px;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--card-bg);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
}

.site-branding {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 0;
}

.logo {
    color: inherit;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    display: block;
    max-height: 45px;
    max-width: 58px;
    width: auto;
    object-fit: contain;
}

.site-title {
    overflow-wrap: anywhere;
    white-space: nowrap;
}

.logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.82;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu {
    flex: 0 0 auto;
}

.header-content form {
    flex: 0 0 200px;
    margin: 0 !important;
}

#theme-toggle {
    flex: 0 0 auto;
    margin-right: 0 !important;
}

.nav-menu a {
    color: #555;
    font-weight: 500;
}

.dropdown-toggle {
    background: transparent;
    border: 0;
    color: #555;
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    min-height: 40px;
    padding: 0;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    flex-wrap: nowrap;
}

.auth-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    background: var(--primary-color);
    color: var(--on-primary-color);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    line-height: 1.2;
    min-height: 38px;
    white-space: nowrap;
}

.auth-buttons a.login-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Forms */
.form-container {
    max-width: 400px;
    margin: 50px auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--on-primary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.btn:hover {
    background: #4a8a4a;
}

.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   ADS SIDEBARS - Anúncios Laterais
   ============================================ */

/* Wrapper principal com sidebars */
.page-wrapper-with-ads {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    padding: 0 20px;
}

/* Sidebars de ADS */
.sidebar-ad {
    position: sticky;
    top: 80px;
    height: fit-content;
    flex-shrink: 0;
    z-index: 10;
}

.sidebar-ad-left {
    order: -1;
}

.sidebar-ad-right {
    order: 1;
}

/* Conteúdo do AD */
.sidebar-ad-content {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dimensões 160x600 */
.sidebar-ad.size-160x600 .sidebar-ad-content {
    width: 160px;
    min-height: 600px;
}

/* Dimensões 300x600 */
.sidebar-ad.size-300x600 .sidebar-ad-content {
    width: 300px;
    min-height: 600px;
}

/* Container central */
.main-content-wrapper {
    flex: 1;
    max-width: var(--container-width);
    min-width: 0;
}

/* Label de debug (remover em produção) */
.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    color: #999;
    font-size: 0.8rem;
    text-align: center;
    padding: 20px;
}

/* Responsividade para sidebars */
@media (max-width: 1599px) {
    .sidebar-ad-left {
        display: none;
    }
}

@media (max-width: 1399px) {
    .sidebar-ad {
        display: none;
    }

    .page-wrapper-with-ads {
        padding: 0;
    }

    .main-content-wrapper {
        width: 100%;
    }
}

/* Dark Mode para sidebars */
body.dark-mode .sidebar-ad-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .ad-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ADS POSITIONED - Header, Footer & In-Feed
   ============================================ */

.ad-header-wrapper,
.ad-footer-wrapper,
.ad-infeed-wrapper {
    display: inline-block;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.ad-label {
    display: block;
    font-size: 0.65rem;
    color: #999;
    text-align: center;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tamanhos fixos para evitar layout shift */
.ad-header-wrapper.size-728x90,
.ad-footer-wrapper.size-728x90 {
    min-width: 728px;
    min-height: 90px;
}

.ad-header-wrapper.size-970x90,
.ad-footer-wrapper.size-970x90 {
    min-width: 970px;
    min-height: 90px;
}

.ad-header-wrapper.size-970x250 {
    min-width: 970px;
    min-height: 250px;
}

.ad-infeed-wrapper.size-300x250 {
    min-width: 300px;
    min-height: 250px;
}

.ad-infeed-wrapper.size-336x280 {
    min-width: 336px;
    min-height: 280px;
}

/* Responsividade */
@media (max-width: 991px) {

    .ad-header-wrapper.size-970x90,
    .ad-header-wrapper.size-970x250 {
        width: 100%;
        min-width: auto;
        height: auto;
    }
}

@media (max-width: 767px) {

    .ad-header-wrapper.size-728x90,
    .ad-footer-wrapper.size-728x90 {
        width: 100%;
        min-width: auto;
        height: auto;
    }

    /* Centralizar conteúdo overflow se for iframe fixo */
    .ad-header-wrapper iframe,
    .ad-footer-wrapper iframe {
        max-width: 100%;
    }
}

/* ============================================
   POST CONTENT STYLES - Correção de Formatação
   ============================================ */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 1em;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1em 0;
}

/* Margins for floated images */
.post-content img[style*="float: left"],
.post-content img[align="left"] {
    margin-right: 20px !important;
    margin-bottom: 10px;
}

.post-content img[style*="float: right"],
.post-content img[align="right"] {
    margin-left: 20px !important;
    margin-bottom: 10px;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin: 1.5em 0;
    font-style: italic;
    color: #666;
    background: #f9f9f9;
    padding: 10px 15px;
}

.post-slideshow {
    margin: 28px 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow);
}

.post-slideshow-main {
    margin: 0;
    background: #111;
    position: relative;
    overflow: hidden;
}

.post-slideshow-main img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.post-slideshow-main .post-slideshow-transition-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    max-height: none;
    pointer-events: none;
}

.post-slideshow-main figcaption {
    padding: 10px 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 0.9rem;
    line-height: 1.4;
}

.post-slideshow[data-slideshow-captions="0"] .post-slideshow-main figcaption {
    display: none;
}

.post-slideshow-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.04);
}

.post-slideshow-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(128, 128, 128, 0.16);
}

.post-slideshow-autoplay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 0.88rem;
    cursor: pointer;
    user-select: none;
}

.post-slideshow-autoplay input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.post-slideshow-thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 64px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    opacity: 0.72;
}

.post-slideshow-thumb.active,
.post-slideshow-thumb:hover {
    border-color: var(--primary-color);
    opacity: 1;
}

.post-slideshow-thumb img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

/* Ajustes para modo escuro via classe body */
body.dark-mode .post-content blockquote {
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
}

/* Blog feed: posts completos em sequencia */
.home-intro-text {
    max-width: 860px;
    margin: 0 auto 34px;
    padding: 0 20px 28px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.22);
    color: var(--text-color);
    font-size: 1.08rem;
    line-height: 1.85;
}

.feed-section-title {
    max-width: 860px;
    margin: 0 auto 30px;
    padding: 0 20px 10px;
    font-size: 1.5rem;
    line-height: 1.25;
}

.feed-section-title::after {
    content: "";
    display: block;
    width: 190px;
    max-width: 100%;
    border-bottom: 3px solid var(--primary-color);
    margin-top: 12px;
}

.blog-feed {
    max-width: 860px;
    margin: 0 auto 50px;
}

.feed-post {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.22);
}

.feed-post:last-child {
    margin-bottom: 0;
}

.feed-post-image {
    width: 100%;
    min-height: 240px;
    max-height: 480px;
    margin-bottom: 22px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.feed-post-image img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: 480px;
    object-fit: cover;
}

.post-youtube-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.post-youtube-card img {
    width: 100%;
    height: 100% !important;
    max-height: none;
    object-fit: cover;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.post-youtube-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.16);
    transition: background 0.25s ease;
}

.post-youtube-card:hover img {
    transform: scale(1.02);
    opacity: 0.92;
}

.post-youtube-card:hover::after {
    background: rgba(0, 0, 0, 0.28);
}

.post-youtube-play,
.related-youtube-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(93, 155, 93, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.post-youtube-play::before,
.related-youtube-play::before {
    content: "";
    position: absolute;
    left: 29px;
    top: 22px;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.post-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.post-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.single-post-media {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.post-video-tabs {
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.post-video-tab-list {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 12px;
    background: transparent;
    border-radius: 0;
}

.post-video-tab {
    display: inline-flex;
    align-items: center;
    color: rgba(51, 51, 51, 0.72);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-video-tab:not(:first-child)::before {
    content: "|";
    color: rgba(51, 51, 51, 0.32);
    font-weight: 400;
    margin: 0 10px;
}

.post-video-tab:hover,
.post-video-tab.active {
    color: var(--primary-color);
}

body.dark-mode .post-video-tab {
    color: rgba(255, 255, 255, 0.72);
}

body.dark-mode .post-video-tab:not(:first-child)::before {
    color: rgba(255, 255, 255, 0.32);
}

body.dark-mode .post-video-tab:hover,
body.dark-mode .post-video-tab.active {
    color: var(--primary-color);
}

.post-video-panel {
    display: none;
}

.post-video-panel.active {
    display: block;
}

.post-video-description {
    margin: 0;
    padding: 14px 16px 16px;
    color: var(--text-color);
    background: var(--card-bg);
    line-height: 1.6;
    border-radius: 0 0 12px 12px;
}

.post-video-panel .post-youtube-card,
.post-video-panel .post-video-frame {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.related-youtube-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.related-youtube-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.related-youtube-play {
    width: 44px;
    height: 44px;
}

.related-youtube-play::before {
    left: 18px;
    top: 13px;
    border-left-width: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
}

.feed-post h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 16px 0 10px;
}

.feed-post-body {
    margin-top: 22px;
    position: relative;
    max-height: calc(1.85em * 10);
    overflow: hidden;
}

.feed-post-body.is-clamped::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3.5em;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--bg-color));
}

.feed-read-more {
    display: none;
    width: fit-content;
    margin-top: 14px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.feed-read-more.visible {
    display: inline-flex;
}

.feed-read-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.feed-post .post-meta {
    margin-top: 22px;
}

.ad-infeed-entry {
    text-align: center;
    padding: 24px 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.22);
}

@media (max-width: 768px) {
    .blog-feed {
        max-width: 100%;
    }

    .feed-post {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .feed-post h3 {
        font-size: 1.55rem;
    }

    .feed-post-image {
        min-height: 180px;
        margin-bottom: 18px;
    }
}

/* ============================================
   RESPONSIVE - Mobile First Adjustments
   ============================================ */

/* Large Tablets and below (991px) */
@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-content form {
        flex-basis: 180px;
        margin: 0 !important;
    }

    .auth-buttons {
        flex-wrap: nowrap;
        justify-content: center;
    }

    /* Featured posts - 2 columns still works */
    .featured-posts-grid {
        gap: 20px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {

    /* Header adjustments */
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
    }

    .nav-menu ul {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    /* Search form smaller */
    .header-content form input[type="text"] {
        width: 150px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* Auth buttons smaller */
    .auth-buttons a {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin-left: 0;
        min-height: 34px;
    }

    /* Footer - 2 columns on tablet */
    footer .container>div:first-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    /* Hero carousel adjustments */
    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {

    /* Container padding */
    .container {
        padding: 0 12px;
    }

    /* Header stacked layout */
    .header-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .site-branding {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 1.3rem;
        justify-content: center;
    }

    .logo img {
        max-height: 40px !important;
    }

    /* Navigation horizontal scroll */
    .nav-menu {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu ul {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 5px 0;
    }

    .nav-menu a {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Search form full width and centered */
    .header-content form {
        grid-column: 1 / -1;
        grid-row: 3;
        flex: 0 1 auto;
        width: 100%;
        margin: 5px 0 !important;
        display: flex;
        justify-content: center;
    }

    .header-content form input[type="text"] {
        width: 100% !important;
        max-width: 280px;
        padding: 8px 13px;
        font-size: 0.9rem;
    }

    /* Auth buttons centered */
    .auth-buttons {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .auth-buttons a {
        margin-left: 0;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    /* Theme toggle */
    #theme-toggle {
        grid-column: 2;
        grid-row: 2;
        position: static;
        align-self: center;
        justify-self: end;
    }

    /* Dropdown menu adjustments */
    .dropdown {
        text-align: center;
    }

    .dropdown.open {
        flex-basis: 100%;
    }

    .dropdown-toggle {
        font-size: 0.85rem;
        min-height: 34px;
    }

    .dropdown-menu {
        position: static !important;
        display: none;
        width: min(88vw, 320px);
        max-width: 100%;
        margin: 6px auto 0;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        text-align: left;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        transform: none !important;
    }

    /* Footer - single column on mobile */
    footer .container>div:first-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    footer .container>div:first-child ul {
        display: inline-block;
    }

    /* Centralizar logo do footer no mobile */
    footer .container>div:first-child h4 img {
        margin: 0 auto 5px auto !important;
    }

    /* Hero carousel */
    .hero-content {
        padding: 20px !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Post cards */
    .post-content {
        padding: 15px !important;
    }

    .post-content h3 {
        font-size: 1.1rem !important;
    }

    /* Pagination */
    nav[style*="justify-content: center"] {
        flex-wrap: wrap;
    }

    nav[style*="justify-content: center"] a,
    nav[style*="justify-content: center"] span {
        padding: 8px 12px !important;
        font-size: 0.85rem;
    }

    /* Forms */
    .form-container {
        margin: 20px 10px;
        padding: 20px;
    }

    .form-group input {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }

    /* Cookie banner */
    .cookie-banner {
        padding: 15px !important;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small devices (375px and below) */
@media (max-width: 375px) {
    .site-branding {
        font-size: 1.1rem;
    }

    .nav-menu ul {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .auth-buttons a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.3rem !important;
    }

    .hero-content p {
        font-size: 0.85rem !important;
    }
}
