/* 1Win Aviator Site Styles - ver 1.7 */

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

:root {
    --header-bg: #141b2e;
    --btn-login: #1f2841;
    --btn-signup: #19ac5a;
    --body-bg: #090f1e;
    --text-light: #e8e8e8;
    --text-gray: #b4b4b4;
    --accent-gold: #ffd700;
    --card-bg: #1a2235;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #141b2e 0%, #1a2338 100%);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.logo-container img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

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

.header-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--accent-gold);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.online-counter {
    background: rgba(25, 172, 90, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--btn-signup);
    border: 1px solid var(--btn-signup);
}

.online-counter .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--btn-signup);
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

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

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: var(--btn-login);
    color: var(--text-light);
}

.btn-login:hover {
    background: #2a3554;
    box-shadow: 0 4px 12px rgba(31, 40, 65, 0.4);
}

.btn-signup {
    background: var(--btn-signup);
    color: #fff;
}

.btn-signup:hover {
    background: #1ec268;
    box-shadow: 0 4px 12px rgba(25, 172, 90, 0.4);
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: center;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2338 0%, #2d3a5c 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-btn {
    padding: 18px 45px;
    font-size: 18px;
    background: var(--btn-signup);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(25, 172, 90, 0.3);
}

.hero-btn:hover {
    background: #1ec268;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 172, 90, 0.5);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs span {
    color: var(--text-gray);
    margin: 0 8px;
}

/* Content Sections */
.content-section {
    margin: 40px 0;
}

.section-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

/* Promo Code Block */
.promo-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #243147 100%);
    border: 2px solid var(--btn-signup);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25,172,90,0.1) 0%, transparent 70%);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promo-label {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.promo-code-display {
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed var(--accent-gold);
    padding: 20px;
    border-radius: 10px;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.promo-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.btn-copy, .btn-activate {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-copy {
    background: var(--btn-login);
    color: var(--text-light);
}

.btn-copy:hover {
    background: #2a3554;
}

.btn-activate {
    background: var(--btn-signup);
    color: #fff;
}

.btn-activate:hover {
    background: #1ec268;
    transform: scale(1.05);
}

.promo-status {
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(25, 172, 90, 0.2);
    border-radius: 20px;
    display: inline-block;
    color: var(--btn-signup);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    border-color: var(--btn-signup);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(25, 172, 90, 0.3);
}

.game-logo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.game-btn {
    background: var(--btn-signup);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.game-btn:hover {
    background: #1ec268;
}

/* Demo Game Section */
.demo-game-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.demo-game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.review-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--btn-signup);
}

.review-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Review Form */
.review-form {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 35px;
    margin-top: 40px;
}

.review-form h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #fff;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 2px solid #2a3554;
    background: #0f1623;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--btn-signup);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--btn-signup);
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #1ec268;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #141b2e 0%, #0d1220 100%);
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 3px solid var(--btn-signup);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-methods img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.providers-list img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.providers-list img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

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

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-gold);
}

/* Fixed Widget */
.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--btn-signup) 0%, #1ec268 100%);
    padding: 18px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    z-index: 999;
    animation: slide-up 0.5s ease;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.widget-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.widget-text .bonus-amount {
    font-size: 24px;
    color: var(--accent-gold);
}

.widget-btn {
    background: #fff;
    color: var(--btn-signup);
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Content Area Styling */
.text-content {
    color: var(--text-light);
    line-height: 1.8;
}

.text-content h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #fff;
    font-weight: 700;
}

.text-content h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #fff;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 18px;
    color: var(--text-gray);
}

.text-content ul,
.text-content ol {
    margin: 20px 0 20px 30px;
}

.text-content li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.text-content table {
    width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.text-content th,
.text-content td {
    padding: 15px;
    text-align: left;
    border: 1px solid #2a3554;
}

.text-content th {
    background: var(--btn-login);
    color: #fff;
    font-weight: 600;
}

.text-content td {
    color: var(--text-gray);
}

.text-content a {
    color: var(--btn-signup);
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-content a:hover {
    color: #1ec268;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        grid-template-columns: 1fr auto auto;
    }
    
    .header-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--header-bg);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .header-actions {
        flex-direction: row;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .widget-content {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-game-container iframe {
        height: 400px;
    }
    
    .promo-actions {
        flex-direction: column;
    }
}

/* Unused Styles for Uniqueness */
.wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.elementor-widget-container {
    padding: 15px;
}

.yoast-breadcrumb {
    font-size: 14px;
}

.wp-caption {
    max-width: 100%;
}

.sticky-post {
    position: relative;
}

.entry-meta {
    color: var(--text-gray);
}

.widget-area {
    margin-top: 20px;
}

.site-branding {
    padding: 10px;
}


.section-l4r{
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(26,34,53,.95), rgba(20,27,46,.92));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 10px 35px rgba(0,0,0,.45);
    position: relative;
    overflow: hidden;
}

.section-l4r::before{
    content:'';
    position:absolute;
    inset:-40%;
    background: radial-gradient(circle, rgba(25,172,90,.18) 0%, transparent 55%);
    transform: rotate(18deg);
    pointer-events:none;
}

.section-title-b8n{
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: .2px;
}

.section-l4r > p{
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.demo-game-wrapper-u6m{
    position: relative;
    z-index: 1;
    margin-top: 22px;
    background: rgba(9,15,30,.55);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 18px;
}

.demo-game-wrapper-u6m::after{
    content:'';
    position:absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events:none;
    box-shadow: inset 0 0 0 1px rgba(25,172,90,.14);
}

.demo-iframe-x2c{
    width: 100%;
    height: 620px;
    border: 0;
    display: block;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 10px 28px rgba(0,0,0,.5);
}

.btn-x9f2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    will-change: transform;
}

.btn-signup-z2m{
    background: #19ac5a;
    color: #fff;
    box-shadow: 0 10px 22px rgba(25,172,90,.25);
}

.btn-signup-z2m:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(25,172,90,.35);
    filter: brightness(1.05);
}

@media (max-width: 992px){
    .section-l4r{
        padding: 26px;
    }
    .section-title-b8n{
        font-size: 28px;
    }
    .demo-iframe-x2c{
        height: 520px;
    }
}

@media (max-width: 768px){
    .section-l4r{
        padding: 18px 14px;
        border-radius: 14px;
    }
    .section-title-b8n{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .demo-game-wrapper-u6m{
        padding: 12px;
        border-radius: 12px;
    }
    .demo-iframe-x2c{
        height: 420px;
        border-radius: 10px;
    }
    #section-card p{
        font-size: 15px !important;
        margin-bottom: 18px !important;
    }
    #section-card .btn-x9f2.btn-signup-z2m{
        width: 100%;
        max-width: 520px;
        padding: 14px 18px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 420px){
    .demo-iframe-x2c{
        height: 360px;
    }
}

.container.ob{
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 20px;
    background: rgba(20,27,46,.7);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.container.ob p{
    margin: 0 0 14px 0;
    color: rgba(228,228,228,.85);
    font-size: 16px;
    line-height: 1.85;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.container.ob h1{
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #fff;
    letter-spacing: .2px;
    text-align: center;
}

.container.ob h2{
    font-size: 24px;
    line-height: 1.25;
    margin: 26px 0 12px 0;
    color: var(--accent-gold, #ffd700);
    scroll-margin-top: 90px;
}

.container.ob h3{
    font-size: 18px;
    line-height: 1.3;
    margin: 18px 0 10px 0;
    color: #fff;
    scroll-margin-top: 90px;
}

.container.ob a{
    color: var(--btn-signup, #19ac5a);
    text-decoration: none;
    border-bottom: 1px dashed rgba(25,172,90,.35);
    transition: .2s ease;
}

.container.ob a:hover{
    border-bottom-color: rgba(25,172,90,.85);
    filter: brightness(1.05);
}

.container.ob ul,
.container.ob ol{
    margin: 14px 0 18px 0;
    padding-left: 18px;
    color: rgba(228,228,228,.85);
}

.container.ob li{
    margin: 8px 0;
    line-height: 1.7;
}

.container.ob ul li::marker{
    color: rgba(25,172,90,.95);
}

.container.ob table{
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

.container.ob th,
.container.ob td{
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
}

.container.ob th{
    color: #fff;
    background: rgba(31,40,65,.9);
}

.container.ob td{
    color: rgba(228,228,228,.85);
    background: rgba(20,27,46,.6);
}

.container.ob hr{
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 22px 0;
}

.container.ob img{
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 14px 0;
}

.container.ob :where(h2, h3) + p{
    margin-top: 0;
}

@media (max-width: 992px){
    .container.ob{
        max-width: 860px;
        padding: 24px 18px;
    }
    .container.ob h1{
        font-size: 30px;
    }
    .container.ob h2{
        font-size: 22px;
    }
}

@media (max-width: 768px){
    .container.ob{
        padding: 18px 14px;
        border-radius: 12px;
    }
    .container.ob p{
        font-size: 15px;
        line-height: 1.8;
    }
    .container.ob h1{
        font-size: 26px;
        margin-bottom: 12px;
    }
    .container.ob h2{
        font-size: 20px;
        margin-top: 22px;
    }
    .container.ob h3{
        font-size: 17px;
    }
    .container.ob table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 420px){
    .container.ob{
        padding: 16px 12px;
    }
    .container.ob h1{
        font-size: 24px;
    }
    .container.ob h2{
        font-size: 19px;
    }
}

@supports (padding: max(0px)){
    .container.ob{
        padding-bottom: calc(18px + env(safe-area-inset-bottom));
    }
}
