@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Lght.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Medi.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Semi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Supr.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Bold_Bold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Blck.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.hero-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(192, 217, 252, 0) 5.65%, rgb(192 217 252 / 43%) 27.04%);
    z-index: 1;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Thin_Italic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Lght_Italic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Medi_Italic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Semi_Italic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Supr_Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Bold_Bold_Italic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Obviously';
    src: url('fonts/fonnts.com-Obviously_Narw_Blck_Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

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

body {
    font-family: Obviously, Arial, sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    min-height: 100vh;
}

body:not(.index-page) .hero-btn {
    margin-top: 30px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: transparent;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0066cc;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.7rem 2rem 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: Obviously;
    font-weight: 800;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: linear-gradient(0deg, #FFFFFF 0%, #DCECFC 100%);
    color: #333;
    border: 1px solid #e0e8f0;
}

.btn-register {
    background: linear-gradient(180deg, #007BFF 2.4%, #019EFF 100%);
    color: white;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.separator {
    height: 2px;
    background: #5c9bf2;
    width: 100%;
}

.navigation {
    background: #d9e8ff;
    padding: 16px 8px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #4A5878;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #0066cc;
}

.heart-icon {
    color: #0066cc;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-image: url('img/Image.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
    background-color: #c1d8fc;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-desktop {
    display: flex;
    min-height: 75vh;
    width: 100%;
    background-image: url('img/Bg1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-desktop-container {
    margin: 0 auto;
    display: flex;
    width: 100%;
    min-height: 60vh;
    position: relative;
    z-index: 2;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-image: url('img/herobg.webp');
    background-size: 50%;
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}

.hero-desktop-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #6faadf 0%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffffdb;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgb(235 235 235 / 40%);
    padding: 30px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 20px;
}

.hero-content .hero-btn {
    margin-top: auto;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 40px;
    color: #69afed;
    line-height: 1.2;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 300;
}

.hero-btn {
    background: linear-gradient(180deg, #FFCDCD -112.52%, #EE0053 208.16%),
                radial-gradient(90.93% 100% at 50% 0%, #FFCCCC 0%, rgba(254, 143, 171, 0) 100%);
    color: white;
    padding: 0.6rem 2rem 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: Obviously;
    font-weight: 800;
    font-style: normal;
    font-size: 33px;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 0, 83, 0.4);
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 0, 83, 0.4);
}

.content-section {
    padding: 4rem 1rem;
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #524E72;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 300;
}

h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #524E72;
}

h2 {
    font-size: 30px;
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-section-reverse {
    padding: 4rem 1rem;
    background: #f8f9fa;
}

.content-container-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-direction: row-reverse;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 2rem 1rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.mobile-menu-links {
    margin-top: 3rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .header {
        padding: 0.8rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 14px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 45px;
        line-height: 50px;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .hero-desktop {
        display: none;
    }

    .hero {
        display: flex;
    }

    .content-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .content-container-reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .content-text h2 {
        font-size: 30px;
    }

    .content-text p {
        font-size: 1rem;
    }
    
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-menu-column h4 {
        font-size: 1rem;
    }
    
    .footer-menu-column a {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .hero {
        display: none;
    }

    .hero-desktop {
        display: flex;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        gap: 0.3rem;
    }

    .btn {
        padding: 0.5rem 1rem 0.8rem 1rem;
        font-size: 17px;
        font-weight: 800;
    }

    .nav-links {
        gap: 1.3rem;
    }

    .nav-link {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 10px;
    }

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

    .hero-btn {
        padding: 0.3rem 1.5rem 1rem 1.5rem;
    }

    .content-text h2 {
        font-size: 1.8rem;
    }

    .content-text p {
        font-size: 0.9rem;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer {
    background: #C0D9FC;
    padding: 3rem 1rem 2rem;
    color: #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-menu-column h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-column li {
    margin-bottom: 0.5rem;
}

.footer-menu-column a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu-column a:hover {
    color: #333;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.age-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 0.4;
    color: #333;
}

.verification-icon {
    width: 55px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.verification-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.warning-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black;
    font-size: 0.8rem;
}

.licenses-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
}

.licenses-link:hover {
    text-decoration: underline;
}

.chevron-down {
    font-size: 0.8rem;
}

.footer-disclaimer {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-disclaimer p {
    margin-bottom: 0.5rem;
}

.footer-disclaimer strong {
    color: #333;
}

.review-section {
    padding: 0rem 1rem;
    background: white;
}

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

.review-header {
    text-align: center;
    margin-bottom: 3rem;
}

.review-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 1px;
}

.review-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overview-table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.overview-table tr:last-child {
    border-bottom: none;
}

.overview-table tr:hover {
    background-color: #f8f9fa;
}

.overview-label {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    background: linear-gradient(135deg, #69AFED 0%, #95B4D4 100%);
    color: white;
    width: 30%;
}

.overview-value {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bonus-table th {
    background: #69AFED;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.bonus-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.bonus-table tr:hover {
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    h2, .section-title {
        font-size: 30px !important;
    }
}

.content-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #69AFED 0%, #95B4D4 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pros, .cons {
    padding: 2rem;
    border-radius: 12px;
}

.pros {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
}

.cons {
    background: #ffe8e8;
    border-left: 4px solid #dc3545;
}

.pros h3, .cons h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pros h3 {
    color: #28a745;
}

.cons h3 {
    color: #dc3545;
}

.pros ul,
.cons ul {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.pros li,
.cons li {
    margin-bottom: 0.75rem;
}

.faq-section {
    background: #f8f9fa;
    padding: 3rem 1rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #69AFED;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.bonus-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/Bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1b88eb33;
    z-index: 1;
}

.bonus-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.bonus-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.bonus-content {
    padding: 4rem 1rem;
    background: white;
}

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

.bonus-section {
    margin-bottom: 4rem;
}

.bonus-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.bonus-steps {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: linear-gradient(135deg, #69AFED 0%, #95B4D4 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vip-table th {
    background: linear-gradient(135deg, #69AFED 0%, #95B4D4 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.vip-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.5;
}

.vip-table tr:last-child td {
    border-bottom: none;
}

.vip-table tr:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .bonus-hero h1 {
        font-size: 2rem;
    }
    
    .bonus-hero p {
        font-size: 1rem;
    }
    
    .bonus-section h2 {
        font-size: 1.8rem;
    }
    
    .bonus-section p {
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .vip-table {
        font-size: 0.9rem;
    }
    
    .vip-table th,
    .vip-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-hero h1 {
        font-size: 1.5rem;
    }
    
    .bonus-section h2 {
        font-size: 1.5rem;
    }
    
    .bonus-steps {
        padding: 1.5rem;
    }
    
    .vip-table {
        font-size: 0.8rem;
    }
    
    .vip-table th,
    .vip-table td {
        padding: 0.8rem;
    }
}

.about-hero,
.responsible-hero,
.privacy-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/Bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.about-hero::before,
.responsible-hero::before,
.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1b88eb33;
    z-index: 1;
}

.about-hero-content,
.responsible-hero-content,
.privacy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1,
.responsible-hero h1,
.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.about-hero p,
.responsible-hero p,
.privacy-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.about-content,
.responsible-content,
.privacy-content {
    padding: 4rem 1rem;
    background: white;
}

.about-container,
.responsible-container,
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section,
.responsible-section,
.privacy-section {
    margin-bottom: 4rem;
}

.about-section h2,
.responsible-section h2,
.privacy-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p,
.responsible-section p,
.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.warning-signs,
.policy-list,
.usage-list,
.security-measures {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.warning-signs li,
.policy-list li,
.usage-list li,
.security-measures li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.warning-signs li:before,
.policy-list li:before,
.usage-list li:before,
.security-measures li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #69AFED;
    font-weight: bold;
    font-size: 1.2rem;
}

.responsible-tools,
.help-organizations,
.info-types,
.disclosure-reasons,
.user-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tool-item,
.help-item,
.info-type,
.disclosure-reason,
.right-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #69AFED;
}

.tool-item h3,
.help-item h3,
.info-type h3,
.disclosure-reason h3,
.right-item h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-item p,
.help-item p,
.info-type p,
.disclosure-reason p,
.right-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-type ul,
.disclosure-reason ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.info-type li,
.disclosure-reason li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    color: #666;
}

.info-type li:before,
.disclosure-reason li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #69AFED;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #666;
}

.regulatory-links {
    text-align: center;
    margin-bottom: 2rem;
}

.regulatory-links h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.regulatory-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.regulatory-link {
    background: white;
    border: 2px solid #69AFED;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: #69AFED;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.regulatory-link:hover {
    background: #69AFED;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(105, 175, 237, 0.3);
}

@media (max-width: 768px) {
    .about-hero h1,
    .responsible-hero h1,
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p,
    .responsible-hero p,
    .privacy-hero p {
        font-size: 1rem;
    }
    
    .about-section h2,
    .responsible-section h2,
    .privacy-section h2 {
        font-size: 1.8rem;
    }
    
    .about-section p,
    .responsible-section p,
    .privacy-section p {
        font-size: 1rem;
    }
    
    .responsible-tools,
    .help-organizations,
    .info-types,
    .disclosure-reasons,
    .user-rights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .regulatory-icons {
        gap: 1rem;
    }
    
    .regulatory-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .responsible-hero h1,
    .privacy-hero h1 {
        font-size: 1.5rem;
    }
    
    .about-section h2,
    .responsible-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .tool-item,
    .help-item,
    .info-type,
    .disclosure-reason,
    .right-item {
        padding: 1.5rem;
    }
    
    .regulatory-icons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .regulatory-link {
        width: 100%;
        text-align: center;
    }
}

.login-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/Bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1b88eb33;
    z-index: 1;
}

.login-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.login-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.login-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.login-content {
    padding: 4rem 1rem;
    background: white;
}

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

.login-section {
    margin-bottom: 4rem;
}

.login-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.registration-steps {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.reg-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reg-step:last-child {
    margin-bottom: 0;
}

.reg-step-number {
    background: linear-gradient(135deg, #69AFED 0%, #95B4D4 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reg-step p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.login-faq-section {
    background: #f8f9fa;
    padding: 3rem 1rem;
    border-radius: 12px;
}

.login-faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-faq-item:last-child {
    margin-bottom: 0;
}

.login-faq-question {
    background: #69AFED;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.login-faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .login-hero h1 {
        font-size: 2rem;
    }
    
    .login-hero p {
        font-size: 1rem;
    }
    
    .login-section h2 {
        font-size: 1.8rem;
    }
    
    .login-section p {
        font-size: 1rem;
    }
    
    .reg-step {
        flex-direction: column;
        text-align: center;
    }
    
    .registration-steps {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .login-hero h1 {
        font-size: 1.5rem;
    }
    
    .login-section h2 {
        font-size: 1.5rem;
    }
    
    .login-faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .login-faq-answer {
        padding: 1rem;
    }
}

.table-container {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
}

.payment-table th {
    background: #524E72;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid #3a3654;
}

.payment-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

.payment-table tr:hover {
    background-color: #f8f9fa;
}

.payment-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.payment-table tr:nth-child(even):hover {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .payment-table {
        font-size: 0.9rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .table-container {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .payment-table {
        font-size: 0.85rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.5rem 0.25rem;
    }
}

.casino-info {
    padding: 3rem 0;
    background: #f8f9fa;
}

.casino-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.casino-info h2 {
    font-family: 'Obviously', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #524E72;
    text-align: center;
    margin-bottom: 2rem;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.casino-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.casino-table td:first-child {
    font-weight: 600;
    background-color: #f8f9fa;
    color: #524E72;
}

.casino-table tr:last-child td {
    border-bottom: none;
}

.casino-table tr:hover {
    background-color: #f8f9fa;
}

.casino-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.casino-table tr:nth-child(even):hover {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .casino-info {
        padding: 2rem 0;
    }
    
    .casino-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .casino-table {
        font-size: 0.9rem;
    }
    
    .casino-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .casino-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .casino-table {
        font-size: 0.85rem;
    }
    
    .casino-table td {
        padding: 0.5rem 0.25rem;
    }
}

.bonus-offers {
    padding: 3rem 0;
    background: white;
}

.bonus-offers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-offers h2 {
    font-family: 'Obviously', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #524E72;
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-offers p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-offers h3 {
    font-family: 'Obviously', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #524E72;
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.4;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.bonus-table th {
    background: #524E72;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid #3a3654;
}

.bonus-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.bonus-table tr:last-child td {
    border-bottom: none;
}

.bonus-table tr:hover {
    background-color: #f8f9fa;
}

.bonus-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.bonus-table tr:nth-child(even):hover {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .bonus-offers {
        padding: 2rem 0;
    }
    
    .bonus-offers h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-offers h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .bonus-offers p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .bonus-table {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .bonus-offers h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .bonus-offers h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .bonus-offers p {
        font-size: 0.9rem;
    }
    
    .bonus-table {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.5rem 0.25rem;
    }
}

.other-offers {
    padding: 3rem 0;
    background: #f8f9fa;
}

.other-offers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.other-offers h3 {
    font-family: 'Obviously', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #524E72;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.other-offers p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offers-list {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 2rem auto;
    max-width: 800px;
    padding-left: 2rem;
}

.offers-list li {
    margin-bottom: 1.5rem;
    text-align: left;
}

.offers-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .other-offers {
        padding: 2rem 0;
    }
    
    .other-offers h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .other-offers p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .offers-list {
        font-size: 0.95rem;
        margin: 1.5rem auto;
        padding-left: 1.5rem;
    }
    
    .offers-list li {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .other-offers h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .other-offers p {
        font-size: 0.9rem;
    }
    
    .offers-list {
        font-size: 0.9rem;
        margin: 1rem auto;
        padding-left: 1rem;
    }
    
    .offers-list li {
        margin-bottom: 0.75rem;
    }
}

.vip-program {
    padding: 3rem 0;
    background: white;
}

.vip-program .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vip-program h2 {
    font-family: 'Obviously', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #524E72;
    text-align: center;
    margin-bottom: 2rem;
}

.vip-program p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip-list {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 2rem auto;
    max-width: 800px;
    padding-left: 2rem;
}

.vip-list li {
    margin-bottom: 1.5rem;
    text-align: left;
}

.vip-list li:last-child {
    margin-bottom: 0;
}

.vip-list strong {
    color: #524E72;
    font-weight: 600;
}

@media (max-width: 768px) {
    .vip-program {
        padding: 2rem 0;
    }
    
    .vip-program h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .vip-program p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .vip-list {
        font-size: 0.95rem;
        margin: 1.5rem auto;
        padding-left: 1.5rem;
    }
    
    .vip-list li {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .vip-program h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .vip-program p {
        font-size: 0.9rem;
    }
    
    .vip-list {
        font-size: 0.9rem;
        margin: 1rem auto;
        padding-left: 1rem;
    }
    
    .vip-list li {
        margin-bottom: 0.75rem;
    }
}

.expert-opinion,
.registration-guide,
.game-offerings,
.payments,
.security,
.mobile-gaming,
.support,
.pros-cons,
.faq {
    padding: 3rem 0;
}

.expert-opinion {
    background: #f8f9fa;
}

.registration-guide {
    background: white;
}

.game-offerings {
    background: #f8f9fa;
}

.payments {
    background: white;
}

.security {
    background: #f8f9fa;
}

.mobile-gaming {
    background: white;
}

.support {
    background: #f8f9fa;
}

.pros-cons {
    background: white;
}

.faq {
    background: #f8f9fa;
}

.expert-opinion .container,
.registration-guide .container,
.game-offerings .container,
.payments .container,
.security .container,
.mobile-gaming .container,
.support .container,
.pros-cons .container,
.faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.expert-opinion h2,
.registration-guide h2,
.game-offerings h2,
.payments h2,
.security h2,
.mobile-gaming h2,
.support h2,
.pros-cons h2,
.faq h2 {
    font-family: 'Obviously', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #524E72;
    margin-bottom: 2rem;
}

.expert-opinion p,
.registration-guide p,
.game-offerings p,
.payments p,
.security p,
.mobile-gaming p,
.support p,
.pros-cons p,
.faq p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.registration-steps,
.verification-list,
.login-steps,
.games-list,
.popular-slots,
.payment-methods,
.support-methods {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 2rem auto;
    max-width: 1200px;
    padding-left: 2rem;
}

.registration-steps li,
.verification-list li,
.login-steps li,
.games-list li,
.popular-slots li,
.payment-methods li,
.support-methods li {
    margin-bottom: 1.5rem;
    text-align: left;
}

.registration-steps li:last-child,
.verification-list li:last-child,
.login-steps li:last-child,
.games-list li:last-child,
.popular-slots li:last-child,
.payment-methods li:last-child,
.support-methods li:last-child {
    margin-bottom: 0;
}

.games-list strong,
.payment-methods strong,
.support-methods strong {
    color: #524E72;
    font-weight: 600;
}

.registration-guide h3,
.game-offerings h3 {
    font-family: 'Obviously', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #524E72;
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.4;
}

.pros-cons-content {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.pros,
.cons {
    flex: 1;
    padding: 0 2rem;
}

.pros h3,
.cons h3 {
    font-family: 'Obviously', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #524E72;
    margin-bottom: 1.5rem;
}

.faq-item {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-family: 'Obviously', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #524E72;
    margin-bottom: 1rem;
    text-align: left;
}

.faq-item p {
    text-align: left;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .expert-opinion,
    .registration-guide,
    .game-offerings,
    .payments,
    .security,
    .mobile-gaming,
    .support,
    .pros-cons,
    .faq {
        padding: 2rem 0;
    }
    
    .expert-opinion h2,
    .registration-guide h2,
    .game-offerings h2,
    .payments h2,
    .security h2,
    .mobile-gaming h2,
    .support h2,
    .pros-cons h2,
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .registration-guide h3,
    .game-offerings h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .expert-opinion p,
    .registration-guide p,
    .game-offerings p,
    .payments p,
    .security p,
    .mobile-gaming p,
    .support p,
    .pros-cons p,
    .faq p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .registration-steps,
    .verification-list,
    .login-steps,
    .games-list,
    .popular-slots,
    .payment-methods,
    .support-methods {
        font-size: 0.95rem;
        margin: 1.5rem auto;
        padding-left: 1.5rem;
    }
    
    .registration-steps li,
    .verification-list li,
    .login-steps li,
    .games-list li,
    .popular-slots li,
    .payment-methods li,
    .support-methods li {
        margin-bottom: 1rem;
    }
    
    .pros-cons-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .expert-opinion h2,
    .registration-guide h2,
    .game-offerings h2,
    .payments h2,
    .security h2,
    .mobile-gaming h2,
    .support h2,
    .pros-cons h2,
    .faq h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .registration-guide h3,
    .game-offerings h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .expert-opinion p,
    .registration-guide p,
    .game-offerings p,
    .payments p,
    .security p,
    .mobile-gaming p,
    .support p,
    .pros-cons p,
    .faq p {
        font-size: 0.9rem;
    }
    
    .registration-steps,
    .verification-list,
    .login-steps,
    .games-list,
    .popular-slots,
    .payment-methods,
    .support-methods {
        font-size: 0.9rem;
        margin: 1rem auto;
        padding-left: 1rem;
    }
    
    .registration-steps li,
    .verification-list li,
    .login-steps li,
    .games-list li,
    .popular-slots li,
    .payment-methods li,
    .support-methods li {
        margin-bottom: 0.75rem;
    }
    
    .faq-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
} 
