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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    padding-top: 80px; /* Space for fixed header */
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

.navigation a {
    color: #ff464a;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation a.active {
    color: #ffffff;
}

.navigation a:hover {
    color: #ffffff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: transparent;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 10px;
    padding: 5px 0;
}

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

.dropdown-item {
    display: block;
    padding: 6px 20px;
    color: #ff464a;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item-white {
    color: #ffffff;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dropdown-item-white:hover {
    color: #ffffff;
}

.dropdown-item.active {
    color: #ffffff;
}

.bonus-btn {
    background-color: #ff464a;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.bonus-btn:hover {
    background-color: #cc383b;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: calc(100vh - 200px);
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.headline {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.headline .highlight {
    color: #ff464a;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #ffffff;
}

.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.login-btn {
    background-color: #26bc4d;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #1e963d;
}

.download-btn {
    background-color: #ff464a;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #cc383b;
}

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

.games-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
}

.about-green {
    color: #26bc4d;
}

.about-red {
    color: #ff464a;
}

.about-content {
    margin-bottom: 40px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why 91 Club Section */
.why-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.why-container {
    max-width: 900px;
    margin: 0 auto;
}

.why-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.why-green {
    color: #26bc4d;
}

.why-red {
    color: #ff464a;
}

.why-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 35px;
}

.why-list {
    text-align: left;
    max-width: 850px;
    margin: 0 auto 35px;
    padding-left: 25px;
    list-style-position: outside;
}

.why-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
    padding-left: 10px;
}

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

.why-item-title {
    color: #ff464a;
    font-weight: bold;
    font-size: 18px;
}

.why-conclusion {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
}

.why-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Section */
.games-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

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

.games-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.games-green {
    color: #26bc4d;
}

.games-red {
    color: #ff464a;
}

.games-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.games-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    border: 2px solid #26bc4d;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 170, 0, 0.3);
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: visible;
    background-color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15px;
}

.card-image {
    max-width: calc(100% - 4px);
    max-height: calc(100% - 19px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: inline-block;
    border: 2px solid #26bc4d;
    border-radius: 4px;
}

.image-overlay-text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #ffaa00;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.8), 0 0 20px rgba(255, 170, 0, 0.6);
    letter-spacing: 2px;
    text-align: center;
    z-index: 1;
}

.game-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.game-icon {
    font-size: 24px;
}

.game-icon-color {
    color: #ff69b4;
}

.game-icon-slot {
    color: #c0c0c0;
}

.game-icon-casino {
    color: #9370db;
}

.game-icon-lottery {
    color: #ff69b4;
}

.game-icon-mini {
    color: #ffaa00;
}

.game-icon-sports {
    color: #ff464a;
}

.game-description {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

.game-btn {
    background-color: #26bc4d;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: auto;
}

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

/* Login Guide Section */
.login-guide-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.login-guide-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 1.3;
}

.login-guide-green {
    color: #26bc4d;
}

.login-guide-red {
    color: #ff464a;
}

.login-guide-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.login-steps {
    flex: 1;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.steps-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.steps-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.login-conclusion {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

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

.promo-image {
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

.login-guide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Download App Section */
.download-app-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.download-app-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 1.3;
}

.download-app-green {
    color: #26bc4d;
}

.download-app-red {
    color: #ff464a;
}

.download-app-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.download-app-content {
    flex: 1;
}

.download-app-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.download-app-content p:last-child {
    margin-bottom: 0;
}

.download-app-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image {
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

.download-app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Payments Section */
.payments-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.payments-container {
    max-width: 900px;
    margin: 0 auto;
}

.payments-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.payments-green {
    color: #26bc4d;
}

.payments-red {
    color: #ff464a;
}

.payments-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: left;
}

.payments-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.payments-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.payments-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.payments-highlight {
    color: #ff464a;
    font-weight: bold;
}

.payments-conclusion {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.payments-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Recharge and Withdraw Section */
.recharge-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.recharge-container {
    max-width: 900px;
    margin: 0 auto;
}

.recharge-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.recharge-icon {
    font-size: 40px;
}

.recharge-green {
    color: #26bc4d;
}

.recharge-red {
    color: #ff464a;
}

.recharge-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.recharge-subsection {
    margin-bottom: 40px;
    text-align: left;
}

.recharge-subheading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recharge-icon-red {
    font-size: 20px;
    color: #ff464a;
}

.recharge-icon-blue {
    font-size: 20px;
    color: #4169e1;
}

.recharge-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.recharge-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.recharge-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.recharge-note {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 15px;
}

.recharge-key-heading {
    font-size: 24px;
    font-weight: bold;
    color: #26bc4d;
    margin-bottom: 20px;
}

.recharge-conclusion {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.recharge-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Safety and Security Section */
.safety-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.safety-container {
    max-width: 900px;
    margin: 0 auto;
}

.safety-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.safety-green {
    color: #26bc4d;
}

.safety-red {
    color: #ff464a;
}

.safety-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.safety-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.safety-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.safety-conclusion {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.safety-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Compare Section */
.compare-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.compare-container {
    max-width: 900px;
    margin: 0 auto;
}

.compare-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.compare-green {
    color: #26bc4d;
}

.compare-red {
    color: #ff464a;
}

.compare-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.compare-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.compare-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #26bc4d;
    font-size: 20px;
    font-weight: bold;
}

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

.compare-feature {
    color: #ff464a;
    font-weight: bold;
}

.compare-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Customer Support Section */
.support-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.support-container {
    max-width: 900px;
    margin: 0 auto;
}

.support-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.support-red {
    color: #ff464a;
}

.support-green {
    color: #26bc4d;
}

.support-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: left;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQs Section */
.faqs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faqs-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 1.3;
}

.faqs-red {
    color: #ff464a;
}

.faqs-green {
    color: #26bc4d;
}

.faqs-content {
    text-align: left;
}

.faq-item {
    margin-bottom: 40px;
}

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

.faq-question {
    font-size: 22px;
    font-weight: bold;
    color: #ff464a;
    background-color: #ffffff;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: inline-block;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

.faqs-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Footer */
.site-footer {
    width: 100%;
    background-color: #2a2a2a;
    padding: 30px 20px;
    text-align: center;
    margin: 0;
    position: relative;
    left: 0;
    right: 0;
}

.footer-text {
    color: #26bc4d;
    font-size: 18px;
    margin: 0;
}

/* About Us Page Section */
.about-us-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.about-us-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-us-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-us-white {
    color: #ffffff;
}

.about-us-green {
    color: #26bc4d;
}

.about-us-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #ff464a;
    margin-bottom: 25px;
}

.about-us-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
}

.about-us-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Roulette 101 Page Section */
.roulette-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.roulette-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.roulette-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
}

.roulette-white {
    color: #ffffff;
}

.roulette-green {
    color: #26bc4d;
}

.roulette-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.roulette-content:last-of-type {
    margin-bottom: 40px;
}

.roulette-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* What Is Roulette Section */
.what-is-roulette-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.what-is-roulette-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.what-is-roulette-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
}

.what-is-roulette-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.what-is-roulette-transition {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
}

.what-is-roulette-subheading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.roulette-basics-heading {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 30px;
}

.roulette-topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.roulette-topics-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.roulette-topics-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
}

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

.stay-tuned-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 25px;
}

.stay-tuned-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.stay-tuned-content:last-child {
    margin-bottom: 0;
}

.stay-tuned-bold {
    font-weight: bold;
}

.stay-tuned-link {
    color: #26bc4d;
    text-decoration: underline;
}

.stay-tuned-link:hover {
    color: #1e963d;
}

/* Login Page Section */
.login-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.login-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.login-page-content {
    flex: 1;
    text-align: left;
}

.login-page-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.login-page-white {
    color: #ffffff;
}

.login-page-red {
    color: #ff464a;
}

.login-page-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.login-page-text:last-of-type {
    margin-bottom: 40px;
}

.login-page-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.login-page-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.play-now-image {
    max-width: 60%;
    height: auto;
    object-fit: contain;
}

.large-login-btn {
    background-color: #ff464a;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 70, 74, 0.3);
}

.large-login-btn:hover {
    background-color: #cc383b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 70, 74, 0.4);
}

/* Register Page Section */
.register-page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.register-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.register-page-content {
    flex: 1;
    text-align: left;
}

.register-page-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.3;
}

.register-page-white {
    color: #ffffff;
}

.register-page-red {
    color: #ff464a;
}

.register-page-subheading {
    font-size: 28px;
    font-weight: bold;
    color: #26bc4d;
    margin-bottom: 25px;
}

.register-page-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
}

.register-page-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.register-page-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.register-play-now-image {
    max-width: 60%;
    height: auto;
    object-fit: contain;
}

.register-now-btn {
    background-color: #ff464a;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 70, 74, 0.3);
}

.register-now-btn:hover {
    background-color: #cc383b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 70, 74, 0.4);
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contact-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-heading-white {
    color: #ffffff;
}

.contact-heading-green {
    color: #26bc4d;
}

.contact-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.contact-text:last-of-type {
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Get in Touch Section */
.get-in-touch-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.get-in-touch-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.get-in-touch-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.get-in-touch-icon {
    font-size: 32px;
}

.get-in-touch-text {
    color: #26bc4d;
}

.get-in-touch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.get-in-touch-item {
    margin-bottom: 25px;
    line-height: 1.8;
}

.get-in-touch-label {
    color: #ff464a;
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.get-in-touch-description {
    color: #ffffff;
    font-size: 18px;
    display: block;
}

/* Available In Your Language Section */
.language-support-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.language-support-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.language-support-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.language-support-icon {
    font-size: 32px;
}

.language-support-text {
    color: #ff464a;
}

.language-support-content {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.language-support-content:last-of-type {
    margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 40px;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-intro-text {
    color: #26bc4d;
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #ff464a;
    font-size: 16px;
    font-weight: 500;
}

.required {
    color: #ff464a;
}

.form-input,
.form-textarea {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 16px;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(38, 188, 77, 0.3);
}

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

.form-error {
    color: #ff464a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.error-icon {
    font-weight: bold;
}

.form-submit-btn {
    background-color: #ff464a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: auto;
    align-self: center;
}

.form-submit-btn:hover {
    background-color: #cc383b;
}

/* Terms and Conditions Section */
.terms-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.terms-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.terms-heading-white {
    color: #ffffff;
}

.terms-heading-green {
    color: #26bc4d;
}

.terms-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.terms-content {
    margin-top: 40px;
}

.terms-section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 30px;
}

.terms-section-heading:first-of-type {
    margin-top: 0;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.terms-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.terms-list li:before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Privacy Policy Section */
.privacy-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.privacy-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.privacy-heading-white {
    color: #ffffff;
}

.privacy-heading-green {
    color: #26bc4d;
}

.privacy-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.privacy-link {
    color: #ffffff;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #26bc4d;
}

.privacy-content {
    margin-top: 40px;
}

.privacy-section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 30px;
}

.privacy-section-heading:first-of-type {
    margin-top: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.privacy-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.privacy-list li:before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-list li strong {
    font-weight: bold;
}

/* Disclaimer Section */
.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    min-height: calc(100vh - 160px);
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.disclaimer-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.3;
}

.disclaimer-heading-white {
    color: #ffffff;
}

.disclaimer-heading-green {
    color: #26bc4d;
}

.disclaimer-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.disclaimer-content {
    margin-top: 40px;
}

.disclaimer-section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 30px;
}

.disclaimer-section-heading:first-of-type {
    margin-top: 0;
}

/* Login Additional Info Section */
.login-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.login-info-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.login-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.login-info-text:last-of-type {
    margin-bottom: 40px;
}

.login-info-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How to Log In Section */
.how-to-login-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.how-to-login-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.how-to-login-heading {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.how-to-login-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.how-to-login-steps {
    list-style: decimal;
    padding-left: 30px;
    margin: 0 0 40px 0;
}

.how-to-login-steps li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
}

.how-to-login-steps li:last-child {
    margin-bottom: 0;
}

.login-link {
    color: #26bc4d;
    text-decoration: underline;
}

.login-link:hover {
    color: #1e963d;
}

.how-to-login-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Using the App Section */
.app-login-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.app-login-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.app-login-heading {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
}

.app-login-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

/* Troubleshooting Section */
.troubleshooting-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.troubleshooting-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.troubleshooting-heading {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.troubleshooting-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.troubleshooting-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.troubleshooting-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.troubleshooting-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.troubleshooting-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Registration Section */
.registration-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 80px;
}

.registration-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.registration-heading {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
}

.register-btn {
    background-color: #ffffff;
    color: #ff464a;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.register-btn:hover {
    background-color: #f0f0f0;
    color: #cc383b;
}

/* Our Mission Section */
.mission-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.mission-container {
    max-width: 900px;
    margin: 0 auto;
}

.mission-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mission-icon {
    font-size: 40px;
}

.mission-red {
    color: #ff464a;
}

.mission-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}

.mission-content:last-child {
    margin-bottom: 0;
}

/* Who We Are Section */
.who-we-are-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.who-we-are-container {
    max-width: 900px;
    margin: 0 auto;
}

.who-we-are-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.who-we-are-icon {
    font-size: 40px;
}

.who-we-are-green {
    color: #26bc4d;
}

.who-we-are-content {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}

.who-we-are-content:last-child {
    margin-bottom: 0;
}

/* What Makes Us Different Section */
.different-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.different-container {
    max-width: 900px;
    margin: 0 auto;
}

.different-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.different-icon {
    font-size: 40px;
}

.different-red {
    color: #ff464a;
}

.different-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.different-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.different-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.different-feature {
    color: #ffffff;
    font-weight: bold;
}

/* Our Commitment Section */
.commitment-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.commitment-container {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.commitment-icon {
    font-size: 40px;
}

.commitment-white {
    color: #ffffff;
}

.commitment-red {
    color: #ff464a;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.commitment-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.commitment-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

/* Join the 91 Club Family Section */
.join-family-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.join-family-container {
    max-width: 900px;
    margin: 0 auto;
}

.join-family-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.join-family-icon {
    font-size: 40px;
}

.join-family-red {
    color: #ff464a;
}

.join-family-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.join-family-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.join-family-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

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

.join-family-button {
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .games-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 930px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .text-content {
        max-width: 100%;
    }

    .headline {
        font-size: 32px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 15px;
    }

    .navigation {
        gap: 15px;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .navigation a {
        font-size: 14px;
    }

    .logo-image {
        height: 40px;
    }

    .bonus-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .games-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-heading,
    .why-heading,
    .games-heading,
    .login-guide-heading,
    .download-app-heading,
    .payments-heading,
    .recharge-heading,
    .safety-heading,
    .compare-heading,
    .support-heading,
    .faqs-heading {
        font-size: 32px;
    }

    .about-content p,
    .why-intro,
    .why-list li,
    .games-intro,
    .description {
        font-size: 16px;
    }

    .action-buttons,
    .about-buttons,
    .why-buttons,
    .login-guide-buttons,
    .download-app-buttons,
    .payments-buttons,
    .recharge-buttons,
    .safety-buttons,
    .compare-buttons,
    .support-buttons,
    .faqs-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .login-btn,
    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .dropdown-menu {
        left: auto;
        right: 0;
    }

    /* Login Page Responsive */
    .login-page-container {
        flex-direction: column;
        gap: 30px;
    }

    .login-page-content {
        width: 100%;
    }

    .login-page-heading {
        font-size: 32px;
    }

    .login-page-text {
        font-size: 16px;
    }

    .login-page-image {
        width: 100%;
    }

    .play-now-image {
        max-width: 70%;
    }

    .large-login-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    /* Register Page Responsive */
    .register-page-container {
        flex-direction: column;
        gap: 30px;
    }

    .register-page-content {
        width: 100%;
    }

    .register-page-heading {
        font-size: 32px;
    }

    .register-page-subheading {
        font-size: 24px;
    }

    .register-page-text {
        font-size: 16px;
    }

    .register-play-now-image {
        max-width: 70%;
    }

    .register-now-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    /* Contact Page Responsive */
    .contact-heading {
        font-size: 32px;
    }

    .contact-text {
        font-size: 16px;
    }

    .get-in-touch-heading,
    .language-support-heading {
        font-size: 28px;
    }

    .get-in-touch-label,
    .get-in-touch-description,
    .language-support-content {
        font-size: 16px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    /* Terms, Privacy, Disclaimer Responsive */
    .terms-heading,
    .privacy-heading,
    .disclaimer-heading {
        font-size: 32px;
    }

    .terms-intro,
    .privacy-intro,
    .disclaimer-intro {
        font-size: 16px;
    }

    .terms-section-heading,
    .privacy-section-heading,
    .disclaimer-section-heading {
        font-size: 20px;
    }

    .terms-list li,
    .privacy-list li {
        font-size: 16px;
    }

    /* About Page Responsive */
    .about-us-heading {
        font-size: 32px;
    }

    .about-us-content {
        font-size: 16px;
    }

    .mission-heading,
    .who-we-are-heading,
    .different-heading,
    .commitment-heading,
    .join-family-heading {
        font-size: 28px;
    }

    .mission-content,
    .who-we-are-content,
    .different-list li,
    .commitment-list li,
    .join-family-list li {
        font-size: 16px;
    }

    /* Roulette Page Responsive */
    .roulette-heading {
        font-size: 32px;
    }

    .roulette-content {
        font-size: 16px;
    }

    .what-is-roulette-heading,
    .what-is-roulette-subheading,
    .stay-tuned-heading {
        font-size: 20px;
    }

    .what-is-roulette-content,
    .stay-tuned-content {
        font-size: 16px;
    }

    .roulette-basics-heading {
        font-size: 18px;
    }

    .roulette-topics-list li {
        font-size: 15px;
    }

    /* All sections padding */
    .main-content,
    .about-section,
    .why-section,
    .games-section,
    .login-guide-section,
    .download-app-section,
    .payments-section,
    .recharge-section,
    .safety-section,
    .compare-section,
    .support-section,
    .faqs-section,
    .about-us-section,
    .mission-section,
    .who-we-are-section,
    .different-section,
    .commitment-section,
    .join-family-section,
    .roulette-section,
    .what-is-roulette-section,
    .login-page-section,
    .register-page-section,
    .contact-section,
    .get-in-touch-section,
    .language-support-section,
    .contact-form-section,
    .terms-section,
    .privacy-section,
    .disclaimer-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Images responsive */
    .games-image,
    .promo-image,
    .app-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .headline {
        font-size: 32px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .navigation {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .navigation {
        gap: 15px;
        font-size: 14px;
    }

    .navigation a {
        font-size: 14px;
    }

    .bonus-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .login-btn,
    .download-btn {
        width: 100%;
    }

    .about-heading {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-buttons .login-btn,
    .about-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .why-heading {
        font-size: 36px;
    }

    .why-intro,
    .why-list li,
    .why-item-title,
    .why-conclusion {
        font-size: 16px;
    }

    .why-list {
        padding-left: 20px;
    }

    .why-list li {
        margin-bottom: 20px;
    }

    .why-buttons {
        flex-direction: column;
        align-items: center;
    }

    .why-buttons .login-btn,
    .why-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .games-heading {
        font-size: 36px;
    }

    .games-intro {
        font-size: 16px;
    }

    .games-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .game-image {
        height: 180px;
    }

    .image-overlay-text {
        font-size: 18px;
    }

    .game-title {
        font-size: 22px;
    }

    .game-description {
        font-size: 15px;
    }

    .login-guide-heading {
        font-size: 36px;
    }

    .login-guide-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .login-steps {
        width: 100%;
    }

    .login-graphic {
        width: 100%;
    }

    .steps-list li,
    .login-conclusion {
        font-size: 16px;
    }

    .login-guide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .login-guide-buttons .login-btn,
    .login-guide-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .download-app-heading {
        font-size: 36px;
    }

    .download-app-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .download-app-content {
        width: 100%;
    }

    .download-app-content p {
        font-size: 16px;
    }

    .download-app-graphic {
        width: 100%;
    }

    .app-image {
        max-width: 60%;
    }

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

    .download-app-buttons .login-btn,
    .download-app-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .payments-heading {
        font-size: 36px;
    }

    .payments-intro,
    .payments-list li,
    .payments-conclusion {
        font-size: 16px;
    }

    .payments-buttons {
        flex-direction: column;
        align-items: center;
    }

    .payments-buttons .login-btn,
    .payments-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .recharge-heading {
        font-size: 36px;
    }

    .recharge-icon {
        font-size: 32px;
    }

    .recharge-intro,
    .recharge-list li,
    .recharge-note,
    .recharge-conclusion {
        font-size: 16px;
    }

    .recharge-subheading,
    .recharge-key-heading {
        font-size: 22px;
    }

    .recharge-buttons {
        flex-direction: column;
        align-items: center;
    }

    .recharge-buttons .login-btn,
    .recharge-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .safety-heading,
    .compare-heading {
        font-size: 36px;
    }

    .safety-intro,
    .safety-list li,
    .safety-conclusion,
    .compare-intro,
    .compare-list li {
        font-size: 16px;
    }

    .safety-buttons,
    .compare-buttons {
        flex-direction: column;
        align-items: center;
    }

    .safety-buttons .login-btn,
    .safety-buttons .download-btn,
    .compare-buttons .login-btn,
    .compare-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .support-heading {
        font-size: 36px;
    }

    .support-content {
        font-size: 16px;
    }

    .support-buttons {
        flex-direction: column;
        align-items: center;
    }

    .support-buttons .login-btn,
    .support-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .faqs-heading {
        font-size: 36px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .faqs-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faqs-buttons .login-btn,
    .faqs-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-heading {
        font-size: 36px;
    }

    .contact-text {
        font-size: 16px;
    }

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

    .contact-buttons .login-btn,
    .contact-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .get-in-touch-heading {
        font-size: 28px;
    }

    .get-in-touch-icon {
        font-size: 24px;
    }

    .get-in-touch-label {
        font-size: 16px;
    }

    .get-in-touch-description {
        font-size: 16px;
    }

    .language-support-heading {
        font-size: 28px;
    }

    .language-support-icon {
        font-size: 24px;
    }

    .language-support-content {
        font-size: 16px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-intro-text {
        font-size: 16px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .form-error {
        font-size: 12px;
    }

    .form-submit-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .logo-image {
        height: 35px;
    }

    .navigation {
        gap: 10px;
        font-size: 12px;
    }

    .navigation a {
        font-size: 12px;
    }

    .bonus-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .headline {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .about-heading,
    .why-heading,
    .games-heading,
    .login-guide-heading,
    .download-app-heading,
    .payments-heading,
    .recharge-heading,
    .safety-heading,
    .compare-heading,
    .support-heading,
    .faqs-heading,
    .about-us-heading,
    .roulette-heading,
    .login-page-heading,
    .register-page-heading,
    .contact-heading,
    .terms-heading,
    .privacy-heading,
    .disclaimer-heading {
        font-size: 24px;
    }

    .about-content p,
    .why-intro,
    .why-list li,
    .games-intro,
    .roulette-content,
    .login-page-text,
    .register-page-text,
    .contact-text,
    .terms-intro,
    .privacy-intro,
    .disclaimer-intro {
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 180px;
        right: 0;
        left: auto;
    }

    .dropdown-item {
        padding: 8px 15px;
        font-size: 14px;
    }

    .game-title {
        font-size: 18px;
    }

    .game-description {
        font-size: 14px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .main-content,
    .about-section,
    .why-section,
    .games-section,
    .login-guide-section,
    .download-app-section,
    .payments-section,
    .recharge-section,
    .safety-section,
    .compare-section,
    .support-section,
    .faqs-section {
        padding: 60px 10px 40px;
    }

    .about-us-section,
    .mission-section,
    .who-we-are-section,
    .different-section,
    .commitment-section,
    .join-family-section,
    .roulette-section,
    .what-is-roulette-section,
    .login-page-section,
    .register-page-section,
    .contact-section,
    .get-in-touch-section,
    .language-support-section,
    .contact-form-section,
    .terms-section,
    .privacy-section,
    .disclaimer-section {
        padding: 80px 10px 60px;
    }

    .terms-heading {
        font-size: 32px;
    }

    .terms-intro {
        font-size: 16px;
    }

    .terms-section-heading {
        font-size: 20px;
    }

    .terms-list li {
        font-size: 16px;
    }

    .privacy-heading {
        font-size: 32px;
    }

    .privacy-intro {
        font-size: 16px;
    }

    .privacy-section-heading {
        font-size: 20px;
    }

    .privacy-list li {
        font-size: 16px;
    }

    .disclaimer-heading {
        font-size: 32px;
    }

    .disclaimer-intro {
        font-size: 16px;
    }

    .disclaimer-section-heading {
        font-size: 20px;
    }

    .about-us-heading {
        font-size: 36px;
    }

    .about-us-subtitle {
        font-size: 24px;
    }

    .about-us-content {
        font-size: 16px;
    }

    .about-us-buttons {
        flex-direction: column;
    }

    .about-us-buttons .login-btn,
    .about-us-buttons .download-btn {
        width: 100%;
    }

    .roulette-heading {
        font-size: 36px;
    }

    .roulette-content {
        font-size: 16px;
    }

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

    .roulette-buttons .login-btn,
    .roulette-buttons .download-btn {
        width: 100%;
    }

    .what-is-roulette-heading {
        font-size: 20px;
    }

    .what-is-roulette-content,
    .what-is-roulette-transition {
        font-size: 16px;
    }

    .what-is-roulette-subheading {
        font-size: 20px;
    }

    .roulette-basics-heading {
        font-size: 18px;
    }

    .roulette-topics-list li {
        font-size: 16px;
    }

    .stay-tuned-heading {
        font-size: 24px;
    }

    .stay-tuned-content {
        font-size: 16px;
    }

    .login-page-container {
        flex-direction: column;
        gap: 40px;
    }

    .login-page-content {
        width: 100%;
    }

    .login-page-heading {
        font-size: 36px;
    }

    .login-page-text {
        font-size: 16px;
    }

    .login-page-buttons {
        flex-direction: column;
    }

    .login-page-buttons .login-btn,
    .login-page-buttons .download-btn {
        width: 100%;
    }

    .login-page-image {
        width: 100%;
    }

    .play-now-image {
        max-width: 70%;
    }

    .large-login-btn {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 250px;
    }

    .register-page-container {
        flex-direction: column;
        gap: 40px;
    }

    .register-page-content {
        width: 100%;
    }

    .register-page-heading {
        font-size: 36px;
    }

    .register-page-subheading {
        font-size: 24px;
    }

    .register-page-text {
        font-size: 16px;
    }

    .register-page-buttons {
        flex-direction: column;
    }

    .register-page-buttons .login-btn,
    .register-page-buttons .download-btn {
        width: 100%;
    }

    .register-page-image {
        width: 100%;
    }

    .register-play-now-image {
        max-width: 70%;
    }

    .register-now-btn {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 250px;
    }

    .login-info-text {
        font-size: 16px;
    }

    .login-info-buttons {
        flex-direction: column;
        align-items: center;
    }

    .login-info-buttons .login-btn,
    .login-info-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .how-to-login-heading,
    .app-login-heading,
    .troubleshooting-heading {
        font-size: 28px;
    }

    .how-to-login-intro,
    .how-to-login-steps li,
    .app-login-content,
    .troubleshooting-intro,
    .troubleshooting-list li,
    .registration-text {
        font-size: 16px;
    }

    .how-to-login-buttons,
    .troubleshooting-buttons {
        flex-direction: column;
        align-items: center;
    }

    .how-to-login-buttons .login-btn,
    .how-to-login-buttons .download-btn,
    .troubleshooting-buttons .login-btn,
    .troubleshooting-buttons .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .registration-heading {
        font-size: 16px;
    }

    .register-btn {
        width: 100%;
        max-width: 300px;
    }

    .mission-heading,
    .who-we-are-heading {
        font-size: 36px;
    }

    .mission-icon,
    .who-we-are-icon {
        font-size: 32px;
    }

    .mission-content,
    .who-we-are-content {
        font-size: 16px;
    }

    .different-heading,
    .commitment-heading,
    .join-family-heading {
        font-size: 36px;
    }

    .different-icon,
    .commitment-icon,
    .join-family-icon {
        font-size: 32px;
    }

    .different-list li,
    .commitment-list li,
    .join-family-list li {
        font-size: 16px;
    }
}

