* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-body: #0b0d12;
    --bg-shell: linear-gradient(180deg, #0f1216 0%, #0b0d12 100%);
    --bg-core: #0b0d12;
    --bg-card: #141821;
    --bg-card-alt: #1a1f2b;
    --stroke-soft: #242a36;
    --stroke-strong: #353c4a;
    --text-primary: #f2f5f9;
    --text-secondary: #a8b2c3;
    --text-muted: #6c7687;
    --accent-start: #f59f0b;
    --accent-end: #ff7a1f;
    --accent-highlight: #ffd18a;
    --radius-xl: 34px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    --shadow-hero: 0 36px 90px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    background: var(--bg-body);
}

body {
    font-family: 'Manrope', 'Inter', 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: radial-gradient(108% 120% at 100% 0%, rgba(245, 159, 11, 0.12) 0%, rgba(11, 13, 18, 0) 60%),
        radial-gradient(108% 140% at 0% 0%, rgba(255, 122, 31, 0.12) 0%, rgba(11, 13, 18, 0) 62%),
        linear-gradient(180deg, #0b0d12 0%, #0d1117 60%, #0b0d12 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

.main-wrapper {
    min-height: 100vh;
    position: relative;
    background: var(--bg-core);
}

.content-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(45, 24, 16, 0.92) 0%, rgba(31, 18, 8, 0.88) 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 36px;
    background: rgba(15, 18, 22, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(36, 42, 54, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    min-height: 100px;
}

.site-header-start {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.logo-link {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 160px;
}

.logo-icon {
    width: 85px;
    height: auto;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
}

.logo-text {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.site-header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
    background: linear-gradient(94deg, var(--accent-start) 0%, var(--accent-end) 100%);
    color: #fff7f0;
    box-shadow: 0 18px 38px rgba(255, 118, 80, 0.32);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(255, 118, 80, 0.42);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
}

.btn--ghost:hover {
    color: var(--accent-start);
    background: rgba(245, 159, 11, 0.08);
}

.btn--outline {
    background: transparent;
    color: var(--accent-start);
    border: 1px solid rgba(245, 159, 11, 0.3);
}

.btn--outline:hover {
    background: rgba(245, 159, 11, 0.1);
    border-color: rgba(245, 159, 11, 0.45);
}

.text-link {
    background: transparent;
    color: var(--accent-start);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 13px;
}

.text-link::after {
    content: ' →';
}

.chip-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid var(--stroke-soft);
    transition: border 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.chip-btn:hover {
    color: var(--text-primary);
    border-color: rgba(75, 107, 255, 0.4);
    box-shadow: 0 12px 24px rgba(110, 133, 255, 0.18);
}

.main-content {
    flex: 1;
    padding: 0 40px 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 380px);
    gap: 32px;
    background: linear-gradient(114deg, rgba(45, 24, 16, 0.7) 0%, rgba(61, 36, 24, 0.7) 42%, rgba(77, 48, 32, 0.7) 100%);
    box-shadow: var(--shadow-hero);
    border: 1px solid rgba(255, 138, 31, 0.3);
    align-items: center;
    min-height: 240px;
    aspect-ratio: 3/1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-text {
    position: relative;
    background: rgba(8, 10, 14, 0.85);
    border-radius: 24px;
    padding: 20px 24px;
    border: 1px solid rgba(245, 159, 11, 0.4);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 360px;
}

.hero-text::after {
    content: '';
    position: absolute;
    right: -28px;
    bottom: 48px;
    width: 46px;
    height: 46px;
    background: rgba(15, 18, 22, 0.45);
    border: 1px solid rgba(245, 159, 11, 0.28);
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    border-top-right-radius: 18px;
    box-shadow: 18px 18px 32px rgba(0, 0, 0, 0.25);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 138, 31, 0.2);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-start);
    font-size: 11px;
    margin-bottom: 16px;
}

.hero-title-desktop {
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-description-desktop {
    color: rgba(242, 245, 249, 0.9);
    max-width: 300px;
    line-height: 1.4;
    font-size: 12px;
    margin-bottom: 18px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../media/corsaza-hero/main-avatar-slider-IuCoBeBY.webp');
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 1;
}


.hero-image {
    display: none;
}

.hero-title-mobile,
.hero-description-mobile {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.feature-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 26px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}

.feature-item:nth-child(1)::before { background-image: url('../media/corsaza-hero-grid/315125_more_than-img-right-1.webp'); }
.feature-item:nth-child(2)::before { background-image: url('../media/corsaza-hero-grid/jackpot-left-C29W54Hh.webp'); }
.feature-item:nth-child(3)::before { background-image: url('../media/corsaza-hero-grid/jackpot-right-CvdFDI_W.webp'); }

.feature-item > * {
    position: relative;
    z-index: 1;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(129, 150, 255, 0.2);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(75, 107, 255, 0.12) 0%, rgba(255, 138, 31, 0.18) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-icon--treasure::before { content: '🏴‍☠️'; }
.feature-icon--fleet::before { content: '⛵'; }
.feature-icon--compass::before { content: '🧭'; }

.feature-name {
    font-size: 18px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.games-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.section-header > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.games-section h2 {
    font-size: 28px;
}

.games-section p {
    color: var(--text-secondary);
    font-size: 15px;
}

.games-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.games-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.games-grid--hot {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.games-grid--instant {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.game-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--stroke-soft);
    background: var(--bg-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.game-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 148, 96, 0.24) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(245, 159, 11, 0.35);
}

.game-item:hover::after {
    opacity: 1;
}

.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-banner {
    display: flex;
    justify-content: center;
}

.jackpot-content {
    padding: 22px 46px;
    border-radius: 999px;
    background: linear-gradient(98deg, rgba(245, 159, 11, 0.2) 0%, rgba(255, 122, 31, 0.2) 100%);
    border: 1px solid rgba(53, 60, 74, 0.8);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.jackpot-label {
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.jackpot-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
}

.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.benefit-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.benefit-item > * {
    position: relative;
    z-index: 1;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(129, 150, 255, 0.24);
}

.benefit-item--primary::before { background-image: url('https://casinocorsaza.gr/media/corsaza-hero-grid/315124_more_than-img-left-1.webp'); }
.benefit-item--secure::before { background-image: url('../media/corsaza-hero-grid/331896-cr_tournaments-619x352@1.webp'); }
.benefit-item--shield::before { background-image: url('../media/corsaza-hero-grid/live-casino-sub-banner-DYPy3tcb.webp'); }
.benefit-item--vip::before { background-image: url('../media/corsaza-hero-grid/jackpot-right-CvdFDI_W.webp'); }

.benefit-badge {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(75, 107, 255, 0.12);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--accent-highlight);
}

.benefit-name {
    font-size: 20px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.live-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.live-game {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--stroke-soft);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-game span {
    padding: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.live-game:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(129, 150, 255, 0.22);
}

.providers-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.provider-item {
    padding: 24px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(129, 150, 255, 0.2);
}

.provider-name {
    font-weight: 700;
    font-size: 18px;
}

.provider-count {
    color: var(--text-secondary);
    font-size: 14px;
}

.game-item.is-focused,
.feature-item.is-focused,
.provider-item.is-focused,
.benefit-item.is-focused,
.live-game.is-focused {
    outline: 2px solid var(--accent-end);
    outline-offset: 4px;
}

.site-footer {
    margin-top: auto;
    background: var(--bg-card);
    border-top: 1px solid var(--stroke-soft);
    padding: 32px 40px 46px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.footer-brand .logo-link {
    width: 140px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.content-article {
    padding: 60px 0;
    background: var(--bg-core);
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-body h1 {
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.article-body h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.25;
    color: var(--text-primary);
    margin: 34px 0 16px;
    position: relative;
}

.article-body h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(96deg, var(--accent-start) 0%, var(--accent-end) 100%);
}

.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: var(--text-primary);
    margin: 26px 0 12px;
}

.article-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin: 14px 0;
}

.article-body a {
    color: var(--accent-start);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-body a:hover {
    color: var(--accent-end);
}

.article-body ul,
.article-body ol {
    margin: 14px 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-body ul li,
.article-body ol li {
    position: relative;
    padding-left: 22px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 8px 0;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(96deg, var(--accent-start) 0%, var(--accent-end) 100%);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    margin: 22px 0;
}

.article-body th,
.article-body td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--stroke-soft);
    text-align: left;
    color: var(--text-secondary);
}

.article-body th {
    background: linear-gradient(96deg, rgba(245, 159, 11, 0.12) 0%, rgba(255, 122, 31, 0.12) 100%);
    color: var(--text-primary);
    font-weight: 700;
}

.article-body tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1280px) {
    .main-content {
        padding: 0 28px 70px;
    }

    .site-header {
        padding: 20px 28px;
    }

    .hero-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-content {
        justify-content: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-background {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (max-width: 1100px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .logo-container {
        display: inline-flex;
    }

    .main-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .logo-link {
        width: 140px;
    }

    .logo-text {
        width: 140px;
    }

    .logo-icon {
        width: 64px;
    }
}

@media (max-width: 820px) {
    .site-header {
        gap: 16px;
    }

    .logo-container {
        position: static;
        left: auto;
        transform: none;
    }

    .site-header-cta {
        flex: 0 0 auto;
        gap: 14px;
    }

    .site-header-cta .btn {
        width: auto;
        padding: 10px 18px;
    }

    .main-content {
        gap: 44px;
    }

    .hero-wrapper {
        padding: 16px 20px;
        border-radius: 28px;
        min-height: 220px;
        aspect-ratio: auto;
        max-height: none;
    }

    .hero-text::after {
        content: none;
    }

    .hero-text {
        width: 100%;
        background: rgba(8, 10, 14, 0.8);
        border: 1px solid rgba(245, 159, 11, 0.35);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 4px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        min-height: 42px;
        font-size: 13px;
    }

    .hero-background {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chip-btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 16px 18px;
        gap: 14px;
    }

    .site-header-start {
        gap: 12px;
    }

    .logo-link {
        width: 120px;
    }

    .logo-text {
        width: 120px;
    }

    .logo-icon {
        width: 56px;
    }

    .site-header-cta {
        display: inline-flex;
        gap: 12px;
    }

    .site-header-cta .btn {
        padding: 9px 16px;
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    .main-content {
        padding: 0 20px 60px;
    }

    .hero-wrapper {
        padding: 0;
        border-radius: 24px;
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 200px;
        aspect-ratio: auto;
        max-height: none;
    }

    .hero-content {
        padding: 20px 16px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }

    .hero-text {
        padding: 24px 20px;
        border-radius: 20px;
        background: rgba(6, 8, 12, 0.9);
        border: 1px solid rgba(245, 159, 11, 0.45);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .hero-image {
        display: none;
    }

    .hero-title-desktop,
    .hero-description-desktop {
        display: none;
    }

    .hero-title-mobile,
    .hero-description-mobile {
        display: block;
    }

    .hero-title-mobile {
        font-size: clamp(16px, 4.5vw, 20px);
        line-height: 1.2;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 10px;
    }

    .hero-description-mobile {
        font-size: 11px;
        color: rgba(242, 245, 249, 0.85);
        max-width: 250px;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-background {
        display: block;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .games-grid--wide,
    .games-grid--hot,
    .games-grid--instant {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .jackpot-content {
        flex-direction: column;
        text-align: center;
        padding: 18px 26px;
    }

    .site-footer {
        padding: 28px 20px 40px;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 12px 16px;
    }

    .logo-link {
        width: 100px;
    }

    .logo-text {
        width: 100px;
    }

    .logo-icon {
        width: 48px;
    }

    .main-content {
        padding: 0 16px 50px;
    }

    .hero-wrapper {
        border-radius: 20px;
        min-height: 180px;
        aspect-ratio: auto;
        max-height: none;
    }

    .hero-content {
        padding: 18px 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }

    .hero-text {
        padding: 20px 16px;
        font-size: 13px;
        background: rgba(5, 7, 10, 0.92);
        border: 1px solid rgba(245, 159, 11, 0.5);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 18px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-title-mobile {
        font-size: clamp(15px, 5.5vw, 19px);
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-description-mobile {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 12px;
        min-height: 40px;
    }

    .feature-item,
    .benefit-item {
        padding: 22px;
    }

    .content-article {
        padding: 30px 0;
    }

    .article-container {
        padding: 0 16px;
    }

    .article-body p {
        font-size: 14px;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
    .hero-wrapper {
        min-height: 160px;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 18px;
    }

    .hero-content {
        padding: 16px 12px;
    }

    .hero-text {
        padding: 18px 14px;
        border-radius: 16px;
        max-width: 260px;
    }

    .hero-title-mobile {
        font-size: clamp(14px, 4.8vw, 17px);
        margin-bottom: 6px;
    }

    .hero-description-mobile {
        font-size: 11px;
        margin-bottom: 14px;
        line-height: 1.3;
    }

    .hero-badge {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 9px 14px;
        font-size: 11px;
        min-height: 36px;
    }
}
