:root {
    --bg-primary: #1D1D1D;
    --bg-secondary: #292929;
    --bg-header: #0B0B0B;
    --bg-footer: #111111;
    --bg-hero: #0F2E1F;
    --green-primary: #14805E;
    --green-hover: #1A9E72;
    --green-dark: #0E5C43;
    --yellow-accent: #FFDF1A;
    --yellow-hover: #FFE94D;
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --text-muted: #666666;
    --border-color: #333333;
    --card-bg: #292929;
    --card-hover: #323232;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --container: 1200px;
    --header-h: 64px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding-top: var(--header-h);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-hover);
}

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

ul, ol {
    list-style: none;
}

h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

p {
    margin-bottom: 12px;
}

/* ===== Container ===== */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== Header ===== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: var(--bg-header);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.header-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ===== Buttons ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

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

.btn-green:hover {
    background: var(--green-hover);
    color: var(--text-primary);
}

.btn-yellow {
    background: var(--yellow-accent);
    color: #1D1D1D;
}

.btn-yellow:hover {
    background: var(--yellow-hover);
    color: #1D1D1D;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* ===== Hero ===== */

.hero {
    background: linear-gradient(135deg, #0A3D2A 0%, #0B0B0B 50%, #1D1D1D 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 128, 94, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 223, 26, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--green-primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 560px;
}

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

/* ===== Section ===== */

.section {
    padding: 48px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.section-image {
    margin: 24px auto 32px;
    max-width: 750px;
    border-radius: 12px;
    overflow: hidden;
}
.section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 768px) {
    .section-image {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===== Slots Grid ===== */

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.slot-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.slot-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-primary);
    box-shadow: 0 8px 30px rgba(20, 128, 94, 0.15);
}

.slot-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    overflow: hidden;
}

.slot-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slot-card-img::after {
    content: attr(data-provider);
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-secondary);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.slot-card-body {
    padding: 16px;
}

.slot-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.slot-card-provider {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.slot-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--text-secondary);
}

.slot-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.slot-card .btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}

/* ===== Info Blocks ===== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: border-color var(--transition);
}

.info-card:hover {
    border-color: var(--green-primary);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Reviews ===== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color var(--transition);
}

.review-card:hover {
    border-color: var(--green-primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    color: var(--yellow-accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== FAQ ===== */

.content-block .faq-section-title {
    border-bottom: none;
    margin-bottom: 4px;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--green-primary);
}

.faq-question-heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 18px;
    color: var(--green-primary);
    background: rgba(20, 128, 94, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}

.faq-item.open .faq-question::after {
    content: '−';
    background: var(--green-primary);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-block .faq-answer-inner p {
    margin-bottom: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ===== Slot Detail Page ===== */

.slot-detail-header {
    padding: 40px 0;
    background: linear-gradient(135deg, #0A3D2A 0%, var(--bg-primary) 100%);
}

.slot-detail-image {
    margin: 24px auto;
    width: fit-content;
    max-width: 100%;
}

.slot-detail-image img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-md);
}

.slot-detail-image-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    min-height: 240px;
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

.slot-detail-image-placeholder span:first-child {
    font-size: 48px;
}

.slot-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.slot-info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.slot-info-box-label {
    font-size: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.slot-info-box-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.content-block {}

.content-toc {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-toc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.content-toc-toggle::after {
    content: '+';
    font-size: 20px;
    color: var(--green-primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.content-toc.open .content-toc-toggle::after {
    content: '−';
}

.content-toc-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.content-toc-list {
    list-style: decimal;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin: 0;
    padding: 0 20px 0 44px;
}

.content-toc.open .content-toc-list {
    max-height: 500px;
    padding-bottom: 16px;
}

.content-toc-list li {
    margin-bottom: 6px;
    padding-left: 4px;
}

.content-toc-list a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.content-toc-list a:hover {
    color: var(--green-primary);
}

.content-block h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 28px 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.content-block .content-toc + h2,
.content-block h2:first-child {
    margin-top: 0;
}

.content-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block h3 {
    font-size: 20px;
    font-weight: 600;
}

.content-block ul:not(.content-toc-list),
.content-block ol:not(.content-toc-list) {
    margin: 0 0 16px;
    padding-left: 24px;
}

.content-block ul {
    list-style: disc;
}

.content-block ol {
    list-style: decimal;
}

.content-block li:not(.content-toc-list li) {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-block li:not(.content-toc-list li):last-child {
    margin-bottom: 0;
}

/* ===== Table Wrap ===== */

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: var(--radius-md);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.table-wrap th,
.table-wrap td {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    text-align: left;
}

.table-wrap th {
    background: var(--card-bg);
    font-weight: 600;
    color: var(--text-primary);
}

.table-wrap td {
    color: var(--text-secondary);
}

.table-wrap tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

/* ===== Breadcrumbs ===== */

.breadcrumbs {
    padding: 16px 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.breadcrumb-item {
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item a:hover {
    color: var(--green-primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin-right: 8px;
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

/* ===== Page Header ===== */

.page-header {
    padding: 48px 0 32px;
    background: linear-gradient(135deg, #0A3D2A 0%, var(--bg-primary) 100%);
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ===== Login Form ===== */

.login-form-wrapper {
    max-width: 440px;
    margin: 0 auto;
    padding: 48px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--green-primary);
}

/* ===== App Page ===== */

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.app-feature {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
}

.app-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.app-download-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

/* ===== Bonus Cards ===== */

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bonus-card {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--card-bg) 100%);
    border: 1px solid var(--green-primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(20, 128, 94, 0.2);
    border-radius: 50%;
}

.bonus-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.bonus-card .bonus-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--yellow-accent);
    margin-bottom: 12px;
    position: relative;
}

.bonus-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    margin-bottom: 20px;
}

/* ===== Legal Pages ===== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 0;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== Footer ===== */

.footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 48px;
    width: auto;
    display: block;
}

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

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--green-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-disclaimer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slot-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 56px;
    }

    .header-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-header);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .header-nav.open {
        transform: translateX(0);
    }

    .header-nav a {
        font-size: 16px;
        padding: 14px 16px;
    }

    .burger-menu {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .hero {
        padding: 48px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 32px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

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

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

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

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

    .app-download-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 19px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .slot-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-block h2 {
        font-size: 22px;
    }

}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 21px;
    }

    h3 {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .slot-info-grid {
        grid-template-columns: 1fr;
    }
}
