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

body {
    font-family: Arial, sans-serif;
    background-color: #2d2d2d;
    color: white;
}

/* Keep plain text links red (including visited) instead of browser purple */
a:not([class]),
a:not([class]):visited {
    color: #c81011;
    font-weight: 600;
    text-decoration: underline;
}

a:not([class]):hover,
a:not([class]):focus {
    color: #ffffff;
}

.header {
    background-color: #c81011;
    width: 100%;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    height: 60px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.logo-icon-mobile {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: none;
    border-radius: 8px;
    visibility: hidden;
}

/* Show mobile logo on screens 500px and below */
@media (max-width: 500px) {
    .logo-icon {
        display: none !important;
        visibility: hidden !important;
    }
    
    .logo-icon-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .logo-section {
        display: flex !important;
        visibility: visible !important;
    }
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-item:hover .nav-text {
    text-decoration: underline;
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.nav-text {
    white-space: nowrap;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-login {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-login:hover {
    opacity: 0.9;
}

.btn-register {
    background-color: #27ff16;
    color: black;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-register:hover {
    opacity: 0.9;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: -7px;
}

.mobile-menu-toggle svg {
    display: block;
}

.mobile-menu-toggle svg rect {
    fill: black;
    transition: fill 0.3s;
}

body.menu-active .mobile-menu-toggle svg rect {
    fill: #ff0000;
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #2d2d2d;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    padding-top: 90px;
}

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

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 15px 20px;
    transition: background-color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.mobile-nav-text {
    white-space: nowrap;
}

/* Hero Section */
.hero-section {
    background-color: #2d2d2d; /* Dark grey background */
    width: 100%;
    padding: 30px 20px;
    min-height: 600px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.hero-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.hero-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
    margin: 10px 0;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.hero-btn:hover {
    opacity: 0.9;
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Contents Section */
.contents-section {
    padding: 30px 20px;
    background-color: #2d2d2d;
}

/* Contents Table Styles */
.contents-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid #c81011;
    border-radius: 8px;
    transition: all 0.3s ease-out;
}

.contents-toggle-header {
    background-color: #c81011;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    user-select: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contents-toggle-header:hover {
    background-color: #a00d0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contents-toggle-text {
    flex: 1;
}

.contents-toggle-icon {
    font-size: 18px;
    transition: transform 0.3s;
    margin-left: 15px;
}

.contents-table-wrapper.collapsed .contents-toggle-icon {
    transform: rotate(-90deg);
}

.contents-table-wrapper.collapsed {
    border: none;
}

.contents-table-wrapper.collapsed .contents-toggle-header {
    border-radius: 8px;
    border: 2px solid #c81011;
}

.contents-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1e1e1e;
    border-top: none;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 2000px;
    opacity: 1;
}

.contents-table-wrapper.collapsed .contents-table {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border: none;
    display: none;
}

.contents-table thead {
    display: table-header-group;
    transition: opacity 0.3s ease-out;
}

.contents-table-wrapper.collapsed .contents-table thead {
    display: none;
}

.contents-table-header {
    padding: 15px 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #c81011;
    background-color: #c81011;
}

.contents-table-row {
    cursor: pointer;
    display: table-row;
}

.contents-table-number {
    padding: 12px 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    width: 50px;
    text-align: center;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
    background-color: rgba(255, 255, 255, 0.05);
}

.contents-table-title {
    padding: 12px 20px;
    color: white;
    font-size: 16px;
    border-bottom: 1px solid #444;
}

.contents-table tbody tr:last-child .contents-table-number,
.contents-table tbody tr:last-child .contents-table-title {
    border-bottom: none;
}

/* 91 Club App Section */
.app-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
    min-height: calc(10vh - 20px);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 20px auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 20px;
}

.breadcrumb-home {
    color: #b0d4ff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-home:hover {
    opacity: 0.8;
}

.breadcrumb-arrow {
    color: white;
    font-size: 18px;
}

.breadcrumb-active {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.app-section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-section-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-section .app-section-content {
    gap: 10px;
}

.contact-page-section {
    min-height: auto;
    padding-bottom: 100px;
}

.contact-form-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px 60px;
}

.contact-form-container {
    max-width: 780px;
    margin: 0 auto;
}

.contact-form-card {
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #2cb45d;
    text-align: center;
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    text-align: center;
    margin-bottom: 18px;
}

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

.contact-form-label {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-top: 6px;
}

.contact-form-required {
    color: #d12b2b;
    font-weight: 700;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px;
    border: 2px solid #d8d8d8;
    background-color: #ffffff;
    color: #1a1a1a;
}

.contact-form-textarea {
    border-color: #2cb45d;
    resize: none;
    min-height: 120px;
}

.contact-form-error {
    color: #d12b2b;
    font-size: 14px;
    margin-top: 0;
}

.contact-form-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 14px;
}

.contact-form-send,
.contact-form-bonus {
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-form-send {
    background-color: #ff4b4b;
    color: #ffffff;
}

.contact-form-bonus {
    background-color: #2cb45d;
    color: #ffffff;
}

@media (max-width: 560px) {
    .contact-form-container {
        max-width: 100%;
    }

    .contact-form-actions {
        flex-direction: column;
        gap: 10px;
    }
}

.app-section-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.app-section-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.app-get-btn {
    background-color: white;
    color: #2d2d2d;
    border: 2px solid #808080;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
    margin: 10px 0;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.app-get-btn:hover {
    opacity: 0.9;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.app-stars {
    color: white;
    font-size: 20px;
    line-height: 1;
}

.app-rating-text {
    color: white;
    font-size: 16px;
}

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

.app-section-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* Content Section */
.content-section {
    max-width: 1400px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
}

.content-heading {
    text-align: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.content-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content-buttons-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.content-button {
    background-color: #2d2d2d;
    color: white;
    border: 2px solid #dc2626;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 150px;
    max-width: 220px;
    text-align: center;
}

.content-button:hover {
    background-color: white;
    color: #2d2d2d;
    border-color: #dc2626;
}

/* What Is the 91 Club App Section */
.what-is-app-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.what-is-app-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.what-is-app-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.what-is-app-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.what-is-app-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.what-is-app-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.what-is-app-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* APK Get Section */
.apk-get-section-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.apk-get-section-content {
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apk-get-section-heading {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.apk-get-section-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-heading {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.benefit-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.faq-centered-container {
    justify-content: center;
}

.faq-centered-content {
    max-width: 680px;
}

.faq-card {
    border: 2px solid #c81011;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.faq-card-title {
    border-bottom: 2px solid #c81011;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.faq-card-text {
    border-left: 3px solid #c81011;
    padding-left: 15px;
}

.colour-trading-link {
    color: #4a9eff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.colour-trading-link:hover {
    opacity: 0.8;
}

/* App Information Table Section */
.app-info-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

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

.app-info-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-align: left;
}

.app-info-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin-bottom: 25px;
    text-align: left;
}

.app-info-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: #3a3a3a;
    color: white;
    border: 1px solid #c81011;
    margin: 20px auto 0;
    display: table;
}

.app-info-table thead tr {
    background-color: #c81011;
}

.app-info-table thead th {
    padding: 12px;
    text-align: left;
    border: 1px solid #555;
    background-color: #c81011;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.app-info-table tbody tr {
    border-bottom: none;
}

.app-info-table tbody tr:nth-child(even) {
    background-color: #333;
}

.app-info-table tbody tr:last-child {
    border-bottom: none;
}

.app-info-label {
    padding: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    width: 40%;
    text-align: left;
    border: 1px solid #555;
    vertical-align: middle;
}

.app-info-value {
    padding: 12px;
    color: white;
    font-size: 18px;
    width: 60%;
    text-align: left;
    border: 1px solid #555;
    vertical-align: middle;
}

.invite-code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.invite-code-text {
    border: 2px dashed #c81011;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: rgba(200, 16, 17, 0.1);
}

.invite-code-copy-btn {
    background-color: #c81011;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.invite-code-copy-btn:hover {
    background-color: #a00d0e;
}

.main-sections-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.main-sections-list li {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
}

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

/* 91 Club Colour Trading App Section */
.colour-trading-app-section {
    background-color: #2d2d2d;
    width: 80%;
    padding: 30px 20px;
}

.colour-trading-app-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.colour-trading-app-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.colour-trading-app-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.colour-trading-app-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.colour-trading-app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.colour-trading-app-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* Logging into the 91 Club Mobile App Section */
.app-login-steps-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.app-login-steps-container {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.app-login-steps-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.app-login-steps-intro {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.app-login-steps-subheading {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.app-login-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.app-login-step-item {
    position: relative;
    margin-bottom: 0;
}

.app-login-step-header {
    background-color: #dc2626;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
}

.app-login-step-number {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.app-login-step-content {
    background-color: #1e1e1e;
    padding: 15px 20px;
    border: 2px solid #dc2626;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.app-login-step-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.app-login-step-text-wrapper {
    flex: 1;
}

.app-login-step-text {
    font-size: 16px;
    line-height: 1.5;
    color: white;
    margin: 0;
}

.app-login-step-text strong {
    font-weight: bold;
}

.app-login-step-image-wrapper {
    flex: 0 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-login-step-image {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.app-login-step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.app-login-connector-arrow {
    color: #dc2626;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.app-login-steps-conclusion {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 30px 0 0 0;
    text-align: left;
}

/* 91 Club App Features Section */
.app-features-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.app-features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.app-features-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.app-features-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.app-features-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.app-features-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.app-features-intro {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.app-features-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-feature-item {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.app-feature-item strong {
    font-weight: bold;
}

/* App Security FAQ Section */
.app-security-faq-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px 60px 20px;
}

.app-security-faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.app-security-faq-item {
    border: 2px solid #c81011;
    padding: 15px 20px;
    background-color: transparent;
    margin-bottom: 25px;
    border-radius: 5px;
}

.app-security-faq-question {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 0 0 10px 0;
}

.app-security-faq-item .app-security-faq-question {
    border: none;
    padding: 0;
}

.app-security-faq-answer {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    border: none;
    padding: 0;
}

/* Common Questions Section */
.common-questions-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.common-questions-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.common-questions-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-align: left;
    margin: 0;
}

.common-questions-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.common-questions-item {
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 20px 25px;
    background-color: #1e1e1e;
}

.common-questions-question {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 0 0 15px 0;
}

.common-questions-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 0 15px 0;
}

.common-questions-answer {
    font-size: 18px;
    line-height: 1.3;
    color: white;
    margin: 0;
}

/* Conclusion Section */
.app-conclusion-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px 60px 20px;
}

.app-conclusion-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.app-conclusion-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.app-conclusion-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-conclusion-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.app-conclusion-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* What Section */
.what-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.what-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.what-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.what-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.what-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.what-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.what-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.what-subheading {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 10px 0 8px 0;
}

.what-points {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.what-point {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.what-point strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.what-points li::marker {
    color: white;
    font-weight: bold;
}

/* Info Table Section */
.info-table-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.info-table-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.info-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: #3a3a3a;
    color: white;
    border: 1px solid #c81011;
}

.info-table thead tr {
    background-color: #c81011;
}

.info-table thead th {
    padding: 12px;
    text-align: left;
    border: 1px solid #555;
    background-color: #c81011;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.info-table tbody tr {
    border-bottom: none;
}

.info-table tbody tr:nth-child(even) {
    background-color: #333;
}

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

.table-category {
    padding: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    width: 40%;
    text-align: left;
    border: 1px solid #555;
    vertical-align: middle;
}

.table-wrapper-center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.table-wrapper-center > div {
    width: 100%;
    max-width: 800px;
}

.table-wrapper-center .what-subheading {
    text-align: center;
}

.table-wrapper-center .what-text {
    text-align: center;
    margin-top: 20px;
}

/* App vs Browser Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #3a3a3a;
    color: white;
    table-layout: fixed;
}

.comparison-table thead tr {
    background-color: #c81011;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #555;
    word-break: break-word;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #333;
}

@media (max-width: 600px) {
    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}

/* Interactive Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(200, 16, 17, 0.1) 0%, rgba(200, 16, 17, 0.05) 100%);
    border: 2px solid rgba(200, 16, 17, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #c81011;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-item:hover {
    border-color: #c81011;
    background: linear-gradient(135deg, rgba(200, 16, 17, 0.2) 0%, rgba(200, 16, 17, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(200, 16, 17, 0.2);
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c81011 0%, #a00d0e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(200, 16, 17, 0.4);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(200, 16, 17, 0.6);
}

.step-content {
    flex: 1;
    color: white;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #c81011;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-item:hover .step-title {
    color: #ff1a1c;
}

.step-description {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.step-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(200, 16, 17, 0.3));
}

.step-note {
    margin-top: 30px;
}

.step-section-heading {
    margin-top: 50px;
}

/* Responsive Styles for Steps */
@media (max-width: 768px) {
    .steps-container {
        gap: 15px;
        padding: 15px 0;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        max-width: 100%;
    }
    
    .step-item:hover {
        transform: translateY(-3px);
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .step-arrow {
        margin: 0;
    }
    
    .step-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .step-item {
        padding: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

.table-value {
    padding: 12px;
    color: white;
    font-size: 18px;
    width: 60%;
    text-align: left;
    border: 1px solid #555;
    vertical-align: middle;
}

.invite-code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invite-code {
    border: 2px dashed #c81011;
    padding: 8px 15px;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(200, 16, 17, 0.1);
}

.copy-btn {
    background-color: #c81011;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.copy-btn:hover {
    background-color: #a00d0e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(200, 16, 17, 0.4);
}

/* Colour Trading Section */
.colour-trading-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.colour-trading-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.colour-trading-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.colour-trading-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.colour-trading-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.games-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.game-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(200, 16, 17, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.game-card-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.game-card-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-title-link,
.game-card-title-link:visited {
    color: inherit;
    text-decoration: none;
}

.game-card-title-link:hover,
.game-card-title-link:focus {
    color: #c81011;
    text-decoration: underline;
}

.game-card-text {
    font-size: 15px;
    line-height: 1.5;
    color: #f1f1f1;
    margin: 0;
}

.colour-trading-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.colour-trading-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Screenshots Section */
.screenshots-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.screenshots-container {
    max-width: 1400px;
    margin: 0 auto;
}

.screenshots-heading {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.screenshots-text {
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.screenshots-grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-img {
    width: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Lottery Section */
.lottery-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.lottery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lottery-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.lottery-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lottery-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.lottery-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.lottery-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.lottery-text a,
.lottery-text a:visited {
    color: #c81011;
    font-weight: 600;
    text-decoration: underline;
}

.lottery-text a:hover,
.lottery-text a:focus {
    color: #ffffff;
}

.lottery-steps {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.lottery-step {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.lottery-advantages {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
    list-style-type: disc;
}

.lottery-advantage {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.lottery-steps li::marker,
.lottery-advantages li::marker {
    color: white;
    font-weight: bold;
}

/* Login and Registration Section */
.login-reg-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.login-reg-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.login-reg-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 0;
}

.login-reg-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.login-reg-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
    max-width: none;
    margin: 0;
}

.login-reg-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-align: center;
}

.login-reg-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.login-reg-text a,
.login-reg-text a:visited {
    color: #c81011;
    font-weight: 600;
    text-decoration: underline;
}

.login-reg-text a:hover,
.login-reg-text a:focus {
    color: #ffffff;
}

.login-reg-subheading {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 10px 0 8px 0;
}

/* Safety Section */
.safety-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.safety-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.safety-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.safety-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.safety-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.safety-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.safety-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.safety-text a,
.safety-text a:visited {
    color: #c81011;
    font-weight: 600;
    text-decoration: underline;
}

.safety-text a:hover,
.safety-text a:focus {
    color: #ffffff;
}

/* Trustworthiness Section */
.trustworthiness-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.trustworthiness-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trustworthiness-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 900px;
    margin: 0 auto;
}

.trustworthiness-heading {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    display: block;
    visibility: visible;
}

.trustworthiness-factors {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.trustworthiness-factor {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 8px;
}

.trustworthiness-factor strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0;
}

.trustworthiness-factors li::marker {
    color: white;
    font-weight: bold;
}

.trustworthiness-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 8px 0 0 0;
}

.invite-code-image-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invite-code-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* 91 Club Invite Code Section */
.invite-code-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.invite-code-container {
    max-width: 1400px;
    margin: 0 auto;
}

.invite-code-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.invite-code-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.invite-code-intro {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
    text-align: center;
}

.invite-code-display-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.invite-code-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 2px dashed #dc2626;
    border-radius: 8px;
    background-color: #2d2d2d;
}

.invite-code-display-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 15px;
}

.copy-btn-display {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.copy-btn-display:hover {
    opacity: 0.9;
}

.invite-steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
    position: relative;
}

.invite-step-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.invite-step-header {
    background-color: #dc2626;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
}

.invite-step-number {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.invite-step-content {
    background-color: #2d2d2d;
    padding: 15px 20px;
    border: 2px solid #dc2626;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.invite-step-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.invite-step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 10px 0;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: repeating-linear-gradient(
        to bottom,
        #dc2626 0px,
        #dc2626 5px,
        transparent 5px,
        transparent 10px
    );
    margin-bottom: 5px;
}

.connector-arrow {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.invite-steps-note {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 15px 0 0 0;
    text-align: center;
}

.choose-image-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* Winning Strategies Section */
.winning-strategies-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.winning-strategies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.winning-strategies-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.winning-strategies-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-align: center;
}

.winning-strategies-intro {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-align: left;
}

.strategies-table-wrapper {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.strategies-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: #3a3a3a;
    color: white;
    border: 1px solid #c81011;
}

.strategies-table thead tr {
    background-color: #c81011;
}

.strategy-header {
    padding: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    border: 1px solid #555;
}

.strategies-table tbody tr {
    border-bottom: none;
}

.strategies-table tbody tr:nth-child(even) {
    background-color: #333;
}

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

.strategy-cell {
    padding: 12px;
    color: white;
    font-size: 18px;
    text-align: left;
    border: 1px solid #555;
    vertical-align: middle;
}

.strategies-table tbody tr td:first-child {
    background-color: transparent;
    border-right: 1px solid #555;
    font-weight: 600;
}

.strategies-table tbody tr td:last-child {
    background-color: transparent;
}

.strategy-link {
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.strategy-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.strategy-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.strategy-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategy-detail-heading {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.strategy-detail-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.strategy-example-list {
    margin: 5px 0;
    padding-left: 30px;
    color: white;
}

.strategy-example-list li {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin-bottom: 4px;
}

.strategy-example-list li::marker {
    color: white;
    font-weight: bold;
}

/* 91 Club Tricks Section */
.tricks-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.tricks-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.tricks-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.tricks-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tricks-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.tricks-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.tricks-intro {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.tricks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.trick-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trick-heading {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.trick-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* 91 Club Gift Code Section */
.gift-code-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.gift-code-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.gift-code-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
    text-align: left;
}

.gift-code-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-align: left;
}

.gift-code-intro {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-align: left;
}

.gift-code-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.gift-code-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gift-code-steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 30px;
    width: 100%;
    max-width: 900px;
}

.gift-code-step-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.gift-code-step-header {
    background-color: #dc2626;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
}

.gift-code-step-number {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.gift-code-step-content {
    background-color: #2d2d2d;
    padding: 15px 20px;
    border: 2px solid #dc2626;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.gift-code-step-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.gift-code-step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 10px 0;
}

.gift-code-connector-line {
    width: 2px;
    height: 30px;
    background: repeating-linear-gradient(
        to bottom,
        #dc2626 0px,
        #dc2626 5px,
        transparent 5px,
        transparent 10px
    );
    margin-bottom: 5px;
}

.gift-code-connector-arrow {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.gift-code-steps-note {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 15px auto 0 auto;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

/* 91 Club Referral Program Section */
.referral-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.referral-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.referral-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
    text-align: left;
    max-width: none;
}

.referral-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-align: left;
}

.referral-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-align: left;
}

.referral-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: none;
}

.referral-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.referral-agent-container {
    max-width: 1100px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}

.referral-agent-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.referral-agent-heading {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0;
    text-align: left;
}

.referral-agent-steps {
    margin: 5px 0;
    padding-left: 30px;
    color: white;
}

.referral-agent-step {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin-bottom: 8px;
}

.referral-agent-step strong {
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.referral-agent-steps li::marker {
    color: white;
    font-weight: bold;
}

.referral-agent-note {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 5px 0 0 0;
    text-align: left;
}

/* 91 Club Mobile App Section */
.mobile-app-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.mobile-app-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-app-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.mobile-app-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.mobile-app-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.mobile-app-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.mobile-app-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.performance-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.performance-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(200, 16, 17, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.performance-card-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.performance-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #f1f1f1;
    margin: 0;
}

/* 91 Club App Login Section */
.app-login-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.app-login-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.app-login-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.app-login-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.app-login-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.app-login-subheading {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 10px 0 8px 0;
}

.app-login-steps {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.app-login-step {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 10px;
}

.app-login-steps li::marker {
    color: white;
    font-weight: bold;
}

.app-login-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.app-login-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* How to Win on 91 Club Section */
.how-to-win-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

.how-to-win-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 17, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.how-to-win-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.how-to-win-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.how-to-win-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
}

.how-to-win-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.how-to-win-intro {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.how-to-win-tips {
    margin: 10px 0;
    padding-left: 25px;
    color: white;
    list-style-type: disc;
}

.how-to-win-tip {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 15px;
}

.how-to-win-tip strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.how-to-win-tips li::marker {
    color: white;
    font-weight: bold;
}

/* Remember Responsible Gaming and Conclusion Section */
.conclusion-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 30px 20px;
}

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

.conclusion-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.responsible-gaming-item,
.conclusion-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.conclusion-heading {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 0 0 20px 0;
    text-align: left;
    display: block;
    visibility: visible;
}

.conclusion-text {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-align: left;
}

.faq-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 3px solid #dc2626;
    border-radius: 8px;
    padding: 15px 20px;
    background-color: #1e1e1e;
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 0 0 10px 0;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* Responsive Design */
/* Mobile Menu Styles for screens less than 1050px */
@media (max-width: 1050px) {
    .nav-items {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 1024px) {
    .nav-items {
        gap: 15px;
    }
    
    .nav-text {
        font-size: 14px;
    }

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

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .game-card-image img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-items {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .action-buttons {
        margin-left: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content {
        padding: 25px;
    }

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

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

    .contents-table-wrapper {
        padding: 0 10px;
    }
    
    .contents-toggle-header {
        padding: 12px 15px;
        font-size: 18px;
    }
    
    .contents-table-header {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .contents-table-number,
    .contents-table-title {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contents-table-header:first-child,
    .contents-table-number {
        width: 50px;
    }

    .content-btn {
        font-size: 14px;
        padding: 10px 14px;
        flex: 0 1 auto;
        min-width: 120px;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    .breadcrumb-container {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .breadcrumb-home,
    .breadcrumb-arrow,
    .breadcrumb-active {
        font-size: 16px;
    }

    .app-section-container {
        flex-direction: column;
        gap: 30px;
    }

    .app-section-heading {
        font-size: 28px;
    }

    .app-section-text {
        font-size: 16px;
    }

    .app-get-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .app-rating-text {
        font-size: 14px;
    }

    .content-section {
        margin-top: 20px;
        padding: 0 10px;
    }

    .content-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .content-buttons-row {
        flex-direction: column;
        gap: 12px;
    }

    .content-button {
        max-width: 100%;
        font-size: 13px;
        padding: 8px 15px;
    }

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

    .what-is-app-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .what-is-app-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .what-is-app-content {
        padding-top: 0;
    }

    .what-is-app-heading {
        font-size: 28px;
    }

    .what-is-app-text {
        font-size: 16px;
    }

    .colour-trading-app-container {
        flex-direction: column;
        gap: 30px;
    }

    .colour-trading-app-heading {
        font-size: 28px;
    }

    .colour-trading-app-text {
        font-size: 16px;
    }

    .app-login-steps-heading {
        font-size: 28px;
    }

    .app-login-steps-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }


    .app-login-step-header {
        padding: 10px 15px;
    }

    .app-login-step-number {
        font-size: 16px;
    }

    .app-login-step-content {
        padding: 12px 15px;
    }

    .app-login-step-inner {
        flex-direction: column;
        gap: 15px;
    }

    .app-login-step-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
    }

    .app-login-step-text {
        font-size: 14px;
    }

    .app-login-steps-conclusion {
        font-size: 16px;
        margin-top: 20px;
    }

    .app-info-container {
        padding: 0 10px;
    }

    .app-info-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .app-info-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .app-info-label,
    .app-info-value {
        padding: 12px;
        font-size: 16px;
    }

    .app-info-label {
        width: 40%;
    }

    .invite-code-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .invite-code-text {
        width: 100%;
        font-size: 12px;
    }

    .invite-code-copy-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .main-sections-list {
        padding-left: 18px;
    }

    .main-sections-list li {
        font-size: 14px;
    }

    .what-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .what-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .what-content {
        padding-top: 0;
    }

    .what-heading {
        font-size: 28px;
    }

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

    .table-category,
    .table-value {
        font-size: 16px;
        padding: 12px;
    }

    .invite-code-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .invite-code {
        font-size: 14px;
        padding: 6px 12px;
    }

    .copy-btn {
        font-size: 14px;
        padding: 6px 16px;
    }

    .colour-trading-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .colour-trading-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .colour-trading-content {
        padding-top: 0;
    }

    .colour-trading-heading {
        font-size: 28px;
    }

    .colour-trading-text {
        font-size: 16px;
    }

    .lottery-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .lottery-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .lottery-content {
        padding-top: 0;
    }

    .lottery-heading {
        font-size: 28px;
    }

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

    .lottery-step,
    .lottery-advantage {
        font-size: 16px;
    }

    .screenshots-heading {
        font-size: 28px;
    }

    .screenshots-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .screenshot-img {
        width: 120px;
    }

    .login-reg-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .login-reg-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .login-reg-content {
        padding-top: 0;
    }

    .login-reg-heading {
        font-size: 28px;
    }

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

    .login-reg-subheading {
        font-size: 20px;
    }

    .safety-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .safety-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .safety-content {
        padding-top: 0;
    }

    .safety-heading {
        font-size: 28px;
    }

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

    .trustworthiness-heading {
        font-size: 24px;
        display: block;
        visibility: visible;
    }

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

    .trustworthiness-factor {
        font-size: 16px;
    }

    .invite-code-heading {
        font-size: 28px;
    }

    .invite-code-intro {
        font-size: 16px;
    }

    .invite-code-display {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .invite-code-display-text {
        font-size: 16px;
        text-align: center;
    }

    .copy-btn-display {
        font-size: 14px;
        padding: 8px 16px;
    }

    .invite-step-text {
        font-size: 16px;
    }

    .invite-step-number {
        font-size: 16px;
    }

    .invite-steps-note {
        font-size: 16px;
        margin-top: 10px;
    }

    .choose-image-wrapper {
        margin-top: 20px;
    }

    .winning-strategies-heading {
        font-size: 28px;
    }

    .winning-strategies-intro {
        font-size: 16px;
    }

    .strategy-header,
    .strategy-cell {
        font-size: 16px;
        padding: 12px;
    }

    .strategy-detail-heading {
        font-size: 20px;
    }

    .strategy-detail-text,
    .strategy-example-list li {
        font-size: 16px;
    }

    .strategy-details {
        gap: 10px;
        margin-top: 10px;
    }

    .tricks-container {
        flex-direction: column;
        gap: 30px;
    }

    .tricks-heading {
        font-size: 28px;
    }

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

    .trick-heading {
        font-size: 20px;
    }

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

    .tricks-list {
        gap: 15px;
    }

    .gift-code-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .gift-code-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .gift-code-content {
        padding-top: 0;
        text-align: left;
    }
    
    .gift-code-heading {
        text-align: left;
    }
    
    .gift-code-intro {
        text-align: left;
    }

    .gift-code-heading {
        font-size: 28px;
    }

    .gift-code-intro {
        font-size: 16px;
    }

    .gift-code-step-text {
        font-size: 16px;
    }

    .gift-code-step-number {
        font-size: 16px;
    }

    .gift-code-steps-container {
        margin-top: 20px;
    }

    .gift-code-steps-note {
        font-size: 16px;
        margin-top: 10px;
    }

    .referral-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .referral-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
        max-width: none;
    }
    
    .referral-content {
        padding-top: 0;
        text-align: left;
    }
    
    .referral-heading {
        font-size: 28px;
        text-align: left;
    }

    .referral-text {
        font-size: 16px;
        text-align: left;
    }

    .referral-agent-heading {
        font-size: 20px;
    }

    .referral-agent-step,
    .referral-agent-note {
        font-size: 16px;
    }

    .referral-agent-content {
        margin-top: 15px;
    }

    .mobile-app-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .mobile-app-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .mobile-app-content {
        padding-top: 0;
    }

    .mobile-app-heading {
        font-size: 28px;
    }

    .mobile-app-text {
        font-size: 16px;
    }

    .performance-cards {
        grid-template-columns: 1fr;
    }

    .performance-card {
        padding: 18px;
    }

    .performance-card-title {
        font-size: 20px;
    }

    .performance-card-text {
        font-size: 15px;
    }

    .app-login-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .app-login-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .app-login-content {
        padding-top: 0;
    }

    .app-login-heading {
        font-size: 28px;
    }

    .app-login-text,
    .app-login-step {
        font-size: 16px;
    }

    .app-login-subheading {
        font-size: 20px;
    }

    .how-to-win-container {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .how-to-win-image-wrapper {
        flex: 1 1 100%;
        padding: 15px;
    }
    
    .how-to-win-content {
        padding-top: 0;
    }

    .how-to-win-heading {
        font-size: 28px;
    }

    .how-to-win-intro,
    .how-to-win-tip {
        font-size: 16px;
    }

    .conclusion-heading {
        font-size: 28px;
        display: block;
        visibility: visible;
    }

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

    .conclusion-content {
        gap: 20px;
    }

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

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

    .faq-items {
        gap: 12px;
    }

    .faq-item {
        padding: 12px 15px;
    }

    .app-security-faq-question {
        font-size: 18px;
    }

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

    .app-security-faq-container {
        gap: 0;
    }

    .app-security-faq-item {
        margin-bottom: 20px;
    }

    .app-conclusion-container {
        flex-direction: column;
        gap: 30px;
    }

    .app-conclusion-heading {
        font-size: 28px;
    }

    .app-conclusion-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        gap: 10px;
    }

    .screenshot-img {
        width: 100px;
    }
}

/* Breadcrumb mobile layout for screens less than 450px */
@media (max-width: 450px) {
    .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin: 20px auto 20px auto;
    }

    .breadcrumb-home {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .breadcrumb-home::after {
        content: "↓";
        color: white;
        font-size: 18px;
        display: inline-block;
    }

    .breadcrumb-arrow {
        display: none;
    }

    .breadcrumb-active {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .screenshot-img {
        width: 80px;
    }
}

/* Footer Section */
.footer {
    background-color: #c81011;
    width: 100%;
    padding: 40px 20px 30px 20px;
    color: white;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-top-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 130px;
    flex-wrap: wrap;
    width: 100%;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    margin-top: 0;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-website {
    color: white;
    font-size: 16px;
    margin: 0;
}

.footer-copyright {
    color: white;
    font-size: 14px;
    margin: 0;
    text-align: left;
}

.footer-disclaimer-text {
    color: white;
    font-size: 13px;
    line-height: 1.6;
    margin: 15px 0 0 0;
    text-align: left;
    max-width: 500px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    flex: 1;
    max-width: 600px;
}

.footer-nav-heading {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-align: left;
    width: 100%;
    align-self: flex-start;
}

.footer-nav-columns-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    align-self: flex-start;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

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

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 30px;
}

/* Footer Images Section */
.footer-therapy-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-sitemap {
      width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    padding-bottom: 70px;

}

.footer-sitemap-link {
    color: #b0d4ff;
    text-decoration: underline;
    font-size: 14px;
}

.footer-sitemap-link:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .footer-sitemap {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 0;
    }
}

.footer-images-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
}

.footer-image {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Disclaimer Section */
.footer-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.disclaimer-text {
    color: white;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Bonus Button */
.bonus-btn {
    background-color: #c81011;
    color: #fff;
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(200, 16, 17, 0.4);
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-btn:hover {
    background-color: #a00d0e;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(200, 16, 17, 0.6);
}

.bonus-text {
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

/* Scroll to Top Button */
.scroll-top-btn {
    background-color: #22c55e; /* Green color */
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.show {
    display: flex;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-bottom {
        gap: 20px;
    }

    .bonus-btn {
        bottom: 90px;
        right: 20px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer-top-content {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .footer-logo-section {
        width: 100%;
        align-items: flex-start;
    }
    
    .footer-nav {
        margin: 0 auto;
        width: 100%;
        align-items: center;
        gap: 20px;
    }
    
    .footer-nav-heading {
        font-size: 18px;
        text-align: left;
        align-self: flex-start;
    }
    
    .footer-nav {
        max-width: 100%;
    }
    
    .footer-nav-columns-wrapper {
        gap: 30px;
        justify-content: flex-start;
        align-self: flex-start;
    }
    
    .footer-disclaimer-text {
        font-size: 12px;
        max-width: 100%;
    }

    .footer-nav-column {
        flex: 0 1 auto;
    }
    
    .footer-nav-columns-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        gap: 15px;
    }

    .footer-images-wrapper {
        justify-content: center;
    }

    .disclaimer-text {
        font-size: 12px;
        text-align: center;
    }

    .bonus-btn {
        bottom: 75px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 10px;
    }

    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 500px) {
    .contents-table-wrapper {
        padding: 0 10px;
    }
    
    .contents-toggle-header {
        padding: 14px 18px;
        font-size: 16px;
    }
    
    .contents-table-header {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .contents-table-number,
    .contents-table-title {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contents-table-header:first-child,
    .contents-table-number {
        width: 50px;
    }

    .footer-top-content {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 56px;
        flex-wrap: wrap;
    }

    .footer-nav {
        justify-content: flex-start;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 20px 15px;
    }

    .footer-logo-text {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .disclaimer-text {
        font-size: 11px;
    }
    
    .footer-disclaimer-text {
        font-size: 11px;
    }

    .bonus-btn {
        bottom: 60px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 9px;
    }

    .scroll-top-btn {
        bottom: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .scroll-top-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Blog Listing Styles */
.blog-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-hero {
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 3rem;
}

.blog-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #c81011;
    font-weight: bold;
}

.blog-hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, #1a1b1c 0%, #2a2b2c 100%);
    border-radius: 15px;
    padding: 0;
    border: 1px solid #333;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-featured-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c81011, #e63946);
    background-image: -webkit-linear-gradient(90deg, #c81011, #e63946);
    background-image: linear-gradient(90deg, #c81011, #e63946);
    z-index: 1;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #c81011, #e63946, #c81011);
    background-image: -webkit-linear-gradient(45deg, #c81011, #e63946, #c81011);
    background-image: linear-gradient(45deg, #c81011, #e63946, #c81011);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200, 16, 17, 0.2);
    border-color: #c81011;
}

.blog-card:hover::after {
    opacity: 0.3;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-meta time {
    font-size: 0.9rem;
    color: #c81011;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    margin: 0 0 1.5rem;
    font-size: 1.6rem;
    line-height: 1.3;
    flex-grow: 0;
}

.blog-title a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    display: block;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: #c81011 !important;
    transform: translateX(5px);
}

.blog-actions {
    margin-top: 1.5rem;
}

.btn-blog-read {
    background: linear-gradient(135deg, #c81011 0%, #e63946 100%);
    background-image: -webkit-linear-gradient(135deg, #c81011 0%, #e63946 100%);
    background-image: linear-gradient(135deg, #c81011 0%, #e63946 100%);
    color: #ffffff !important;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    display: inline-block;
    transition: all 0.4s ease;
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 16, 17, 0.2);
}

.btn-blog-read::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-blog-read:hover::before {
    left: 100%;
}

.btn-blog-read:hover {
    background: linear-gradient(135deg, #e63946 0%, #c81011 100%);
    background-image: -webkit-linear-gradient(135deg, #e63946 0%, #c81011 100%);
    background-image: linear-gradient(135deg, #e63946 0%, #c81011 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 17, 0.4);
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-card::before {
        background: linear-gradient(90deg, #c81011, #e63946);
        background-image: -webkit-linear-gradient(90deg, #c81011, #e63946);
        background-image: linear-gradient(90deg, #c81011, #e63946);
        height: 4px;
        display: block;
    }
    
    .blog-card::after {
        background: linear-gradient(45deg, #c81011, #e63946, #c81011);
        background-image: -webkit-linear-gradient(45deg, #c81011, #e63946, #c81011);
        background-image: linear-gradient(45deg, #c81011, #e63946, #c81011);
        display: block;
    }
    
    .btn-blog-read {
        background: linear-gradient(135deg, #c81011 0%, #e63946 100%);
        background-image: -webkit-linear-gradient(135deg, #c81011 0%, #e63946 100%);
        background-image: linear-gradient(135deg, #c81011 0%, #e63946 100%);
    }
    
    .btn-blog-read:hover {
        background: linear-gradient(135deg, #e63946 0%, #c81011 100%);
        background-image: -webkit-linear-gradient(135deg, #e63946 0%, #c81011 100%);
        background-image: linear-gradient(135deg, #e63946 0%, #c81011 100%);
    }
}

/* Blog Post Page Styles */
.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.blog-post-main {
    min-width: 0;
}

.blog-post-header {
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 1rem 0 1rem;
    border-bottom: 2px solid #333;
}

.blog-post-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    color: #ffffff;
    font-weight: bold;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    color: #999;
    font-size: 1rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-post-meta time {
    color: #c81011;
    font-weight: 600;
}

.meta-separator {
    color: #666;
    font-weight: bold;
}

.blog-post-image {
    width: 100%;
    margin: 0.1rem 0 0.1rem;
    text-align: center;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    background: #2d2d2d;
    padding: 1rem 2rem 2rem;
    border-radius: 8px;
}

.blog-post-content h2 {
    color: #c81011;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    font-weight: bold;
}

.blog-post-content h3 {
    color: #27ff16;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: bold;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.blog-post-content blockquote {
    background: #1a1b1c;
    border-left: 4px solid #c81011;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.blog-post-content code {
    background: #1a1b1c;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #c81011;
}

.blog-post-content pre {
    background: #1a1b1c;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #333;
}

.blog-post-content a {
    color: #c81011 !important;
    text-decoration: underline !important;
}

.blog-post-content a:hover {
    color: #27ff16 !important;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #333;
}

.blog-post-navigation {
    margin-bottom: 3rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    color: #c81011 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #27ff16 !important;
    transform: translateX(-5px);
}

/* Blog Sidebar Styles */
.blog-post-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.recent-posts-widget {
    background: linear-gradient(135deg, #1a1b1c 0%, #2a2b2c 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.widget-header {
    background: linear-gradient(135deg, #c81011 0%, #27ff16 100%);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.widget-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.7);
    position: relative;
    z-index: 1;
}

.recent-posts-list {
    padding: 1.5rem;
}

.recent-post-item {
    margin-bottom: 1.5rem;
}

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

.recent-post-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

.recent-post-link:hover {
    transform: translateY(-2px);
}

.recent-post-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 16, 17, 0.9) 0%, rgba(39, 255, 22, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.recent-post-link:hover .recent-post-overlay {
    opacity: 1;
}

.recent-post-link:hover .recent-post-image img {
    transform: scale(1.1);
}

.read-more-btn {
    background: #000;
    color: #c81011;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.recent-post-content {
    padding: 0 0.5rem;
}

.recent-post-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-content time {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.widget-footer {
    padding: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.view-all-posts {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c81011 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid #c81011;
    border-radius: 8px;
    background: transparent;
}

.view-all-posts:hover {
    background: #c81011;
    color: #000 !important;
    transform: translateY(-2px);
}

.arrow {
    transition: transform 0.3s ease;
}

.view-all-posts:hover .arrow {
    transform: translateX(3px);
}

/* Gaming CTA Widget */
.gaming-cta-widget {
    background: linear-gradient(135deg, #2a2b2c 0%, #1a1b1c 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-widget-header {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid #555;
}

.cta-widget-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #27ff16;
    font-weight: bold;
}

.cta-widget-content {
    padding: 1.5rem;
    text-align: center;
}

.cta-widget-content p {
    margin: 0 0 1.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.cta-widget-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-widget-btn.primary {
    background: linear-gradient(135deg, #c81011 0%, #27ff16 100%);
    color: #000 !important;
    font-weight: bold !important;
}

.cta-widget-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 17, 0.3);
    color: #000 !important;
    font-weight: bold !important;
}

.cta-widget-btn.secondary {
    background: transparent;
    color: #c81011 !important;
    border-color: #c81011;
}

.cta-widget-btn.secondary:hover {
    background: #c81011;
    color: #000 !important;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-sidebar {
        position: static;
        order: -1;
    }
    
    .recent-posts-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .recent-post-item {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 1.5rem 1rem;
    }
    
    .blog-post-layout {
        gap: 1.5rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
        padding: 0.5rem 1rem 2rem;
    }
    
    .recent-posts-list {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .widget-header {
        padding: 1.25rem;
    }
    
    .widget-header h3 {
        font-size: 1.2rem;
    }
    
    .blog-post-sidebar {
        order: 0;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .meta-separator {
        display: none;
    }
}
