* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #191b28;
    --accent-color: #e5650e;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #2a2d3e;
    --card-bg: #232532;
}

.font-bold {
    font-weight: bold;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow selection only for copy buttons (for their functionality) */
.copy-btn {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent selection for all other interactive elements */
.btn-primary,
.header-btn,
a,
button,
input,
textarea {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Protect code elements - only allow selection when inside copy button */
code {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.copy-btn code {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Allow images in specific contexts to be functional */
a img,
button img {
    pointer-events: auto;
}

/* Protect SVG elements */
svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Allow SVG in links/buttons to be clickable */
a svg,
button svg {
    pointer-events: auto;
}

/* Protect table content */
table,
table th,
table td {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Protect all text content */
p, h1, h2, h3, h4, h5, h6, li, span, div, article, section {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    background-color: var(--card-bg);
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-notice {
    background-color: var(--accent-color);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-notice-text {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo-img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 200px;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover {
    background-color: #d45a0c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Hero */
.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.main_banner {
    margin: 30px auto 30px;
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.main_banner svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 150px;
    max-width: 100%;
}

.main_banner {
    width: 100%;
    margin: 20px auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 30px auto 0;
}

/* Sections */
section {
    padding: 60px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 900px;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.casino-table thead {
    background-color: var(--accent-color);
}

.casino-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.casino-table th:nth-child(1) {
    width: 20%;
}

.casino-table th:nth-child(2) {
    width: 20%;
}

.casino-table th:nth-child(3) {
    width: 30%;
}

.casino-table th:nth-child(4) {
    width: 15%;
}

.casino-table th:nth-child(5) {
    width: 15%;
}

.casino-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.casino-table td:nth-child(3) {
    white-space: nowrap;
    font-size: 0.95rem;
}

.casino-table tbody tr {
    height: 100px;
    min-height: 100px;
}

.casino-table tbody tr:hover {
    background-color: rgba(229, 101, 14, 0.1);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.casino-logo svg {
    border-radius: 5px;
}

.casino-name strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.stars {
    color: var(--accent-color);
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.promo-code code {
    background-color: var(--bg-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    font-weight: bold;
}

.copy-btn {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #d45a0c;
}

.copy-btn.copied {
    background-color: #28a745;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: #d45a0c;
}

/* How to Use */
.how-to-use {
    background-color: var(--card-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.step p {
    color: var(--text-secondary);
}

/* Info Section */
.info-section {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.info-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-secondary);
}

/* Vox Casino Guide */
.vox-guide {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.vox-guide h2 {
    margin-bottom: 20px;
}

.vox-guide h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 40px 0 20px;
}

.vox-guide h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 25px 0 15px;
}

.vox-banner {
    margin: 30px auto;
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vox-banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.bonus-banner {
    margin: 30px auto;
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bonus-banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 40px 0;
    background-color: var(--card-bg);
}

.payment-methods-banner {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-methods-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.content-section {
    margin: 40px 0;
    padding: 30px 0;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    margin: 25px 0;
}

.bonus-table thead {
    background-color: var(--accent-color);
}

.bonus-table th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.bonus-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bonus-table tbody tr:hover {
    background-color: rgba(229, 101, 14, 0.1);
}

.bonus-table tbody tr:last-child td {
    border-bottom: none;
}

.bonus-table strong {
    color: var(--text-color);
    font-weight: 600;
}

.steps-box {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 25px 0;
}

.steps-box h4 {
    margin-top: 0;
    margin-bottom: 20px;
}

.steps-list {
    margin: 20px 0;
    padding-left: 25px;
    color: var(--text-secondary);
}

.steps-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.steps-list strong {
    color: var(--accent-color);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 15px;
    margin-bottom: 15px;
    background-color: var(--card-bg);
    border-left: 3px solid var(--accent-color);
    border-radius: 5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-list li strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(229, 101, 14, 0.1) 0%, rgba(229, 101, 14, 0.05) 100%);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    margin: 40px 0;
}

.highlight-box h3 {
    margin-top: 0;
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* FAQ */
.faq {
    background-color: var(--card-bg);
}

.faq-list {
    margin-top: 40px;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(229, 101, 14, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    border-top: 2px solid var(--accent-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #d45a0c;
    text-decoration: underline;
}

/* Mobile Responsive */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .casino-table th,
    .casino-table td {
        padding: 15px 10px;
        font-size: 0.95rem;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    .header-notice {
        padding: 6px 0;
    }

    .header-notice-text {
        font-size: 0.85rem;
    }

    .header-content {
        padding: 12px 0;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .nav-toggle {
        display: flex;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 2px solid var(--accent-color);
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
        display: block;
        min-height: 44px;
        line-height: 20px;
    }

    .header-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--card-bg);
        padding: 15px;
        border-top: 2px solid var(--accent-color);
        z-index: 999;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
    }

    .header-btn {
        width: 100%;
        max-width: 400px;
        font-size: 1rem;
        padding: 14px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .main_banner {
        margin: 20px auto;
        width: 100%;
        padding: 0 10px;
    }

    .main_banner svg {
        min-height: 250px;
        height: auto;
        width: 100%;
    }

    .main_banner svg .banner-title {
        font-size: 80px !important;
    }

    .main_banner svg .banner-subtitle {
        font-size: 46px !important;
    }

    .main_banner svg .banner-description {
        font-size: 30px !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -20px;
        padding: 0 20px;
        width: calc(100% + 40px);
    }

    .casino-table {
        font-size: 0.85rem;
        min-width: 600px;
        display: table;
    }

    .casino-table th,
    .casino-table td {
        padding: 12px 8px;
    }

    .casino-table th:not(:first-child),
    .casino-table td:not(:first-child) {
        white-space: nowrap;
    }

    .casino-table th:first-child,
    .casino-table td:first-child {
        position: sticky;
        left: 0;
        background-color: var(--card-bg);
        z-index: 1;
    }

    .casino-info {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        min-width: 120px;
    }

    .casino-logo svg {
        width: 50px;
        height: 50px;
    }

    .promo-code {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        min-width: 150px;
    }

    .promo-code code {
        font-size: 0.85rem;
        padding: 8px 12px;
        text-align: center;
    }

    .copy-btn {
        width: 100%;
        min-height: 44px;
        padding: 10px;
    }

    .btn-primary {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .vox-guide h3 {
        font-size: 1.5rem;
    }

    .bonus-table {
        font-size: 0.85rem;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 12px 8px;
    }

    .vox-banner {
        margin: 20px auto;
    }

    .bonus-banner {
        margin: 20px auto;
    }


    .content-section {
        margin: 30px 0;
        padding: 20px 0;
    }

    .steps-box {
        padding: 20px;
    }

    .feature-list li {
        padding: 12px;
        font-size: 0.95rem;
    }

    .info-card {
        padding: 20px;
    }

    .highlight-box {
        padding: 25px 20px;
    }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .main_banner {
        margin: 15px auto;
        width: 100%;
        padding: 0 10px;
    }

    .main_banner svg {
        min-height: 240px;
        height: auto;
        width: 100%;
    }

    .main_banner svg .banner-title {
        font-size: 76px !important;
    }

    .main_banner svg .banner-subtitle {
        font-size: 42px !important;
    }

    .main_banner svg .banner-description {
        font-size: 28px !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-top: 15px;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .section-intro {
        font-size: 1rem;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -20px;
        padding: 0 20px;
        width: calc(100% + 40px);
    }

    .casino-table {
        display: table;
        width: 200%;
        min-width: 1200px;
        font-size: 0.85rem;
    }

    .casino-table thead {
        display: table-header-group;
    }

    .casino-table tbody {
        display: table-row-group;
    }

    .casino-table tbody tr {
        display: table-row;
        height: 100px;
        min-height: 100px;
    }

    .casino-table tbody tr:hover {
        background-color: rgba(229, 101, 14, 0.1);
    }

    .casino-table th,
    .casino-table td {
        display: table-cell;
        padding: 15px 12px;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
    }

    .casino-table td:first-child {
        position: sticky;
        left: 0;
        background-color: var(--card-bg);
        z-index: 1;
    }

    .casino-info {
        flex-direction: row;
        gap: 12px;
    }

    .promo-code {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .promo-code code {
        width: auto;
        text-align: left;
    }

    .promo-code .copy-btn {
        width: auto;
    }

    .casino-table td .btn-primary {
        width: auto;
        text-align: center;
        white-space: nowrap;
    }

    .bonus-table {
        font-size: 0.8rem;
        min-width: 500px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    body {
        padding-bottom: 80px;
    }

    .container {
        padding: 0 15px;
    }

    .header-notice {
        padding: 5px 0;
    }

    .header-notice-text {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.4rem;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .main_banner {
        margin: 15px auto;
        width: 100%;
        padding: 0 10px;
    }

    .main_banner svg {
        min-height: 220px;
        height: auto;
        width: 100%;
    }

    .main_banner svg .banner-title {
        font-size: 72px !important;
    }

    .main_banner svg .banner-subtitle {
        font-size: 40px !important;
    }

    .main_banner svg .banner-description {
        font-size: 26px !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        margin-top: 15px;
    }

    section {
        padding: 30px 0;
    }

    h2 {
        font-size: 1.3rem;
        padding: 0 5px;
    }

    .section-intro {
        font-size: 0.95rem;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 15px -15px;
        padding: 0 15px;
        width: calc(100% + 30px);
    }

    .casino-table {
        display: table;
        width: 200%;
        min-width: 1200px;
        font-size: 0.8rem;
    }

    .casino-table thead {
        display: table-header-group;
    }

    .casino-table tbody {
        display: table-row-group;
    }

    .casino-table tbody tr {
        display: table-row;
        height: 100px;
        min-height: 100px;
    }

    .casino-table tbody tr:hover {
        background-color: rgba(229, 101, 14, 0.1);
    }

    .casino-table th,
    .casino-table td {
        display: table-cell;
        padding: 12px 10px;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
    }

    .casino-table td:first-child {
        position: sticky;
        left: 0;
        background-color: var(--card-bg);
        z-index: 1;
    }

    .casino-info {
        flex-direction: row;
        gap: 10px;
    }

    .casino-logo svg {
        width: 50px;
        height: 50px;
    }

    .casino-name {
        font-size: 0.95rem;
    }

    .promo-code {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .promo-code code {
        width: auto;
        text-align: left;
        font-size: 0.9rem;
    }

    .promo-code .copy-btn {
        width: auto;
        font-size: 0.85rem;
    }

    .casino-table td .btn-primary {
        width: auto;
        text-align: center;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .casino-logo svg {
        width: 40px;
        height: 40px;
    }

    .casino-name {
        font-size: 0.85rem;
    }

    .promo-code code {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .copy-btn {
        font-size: 0.85rem;
        padding: 8px;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    .vox-guide h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .vox-guide h4 {
        font-size: 1rem;
    }

    .vox-banner {
        margin: 15px auto;
    }

    .bonus-banner {
        margin: 15px auto;
    }

    .payment-methods-section {
        padding: 30px 0;
    }


    .content-section {
        margin: 25px 0;
        padding: 15px 0;
    }

    .content-section p,
    .info-card p,
    .steps-box p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .content-section p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Mobile card layout for bonus table */
    .bonus-table {
        display: block;
        overflow-x: visible;
        min-width: auto;
        font-size: 0.85rem;
    }

    .bonus-table thead {
        display: none;
    }

    .bonus-table tbody {
        display: block;
    }

    .bonus-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px;
        background-color: var(--card-bg);
    }

    .bonus-table td {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        border-left: none;
        font-size: 0.85rem;
    }

    .bonus-table td[data-label]:before {
        content: attr(data-label) ": ";
        font-weight: bold;
        color: var(--accent-color);
        display: inline-block;
        min-width: 140px;
        margin-right: 8px;
    }

    .bonus-table td:last-child {
        border-bottom: none;
    }

    .bonus-table td[rowspan] {
        font-weight: bold;
        font-size: 1rem;
        color: var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
        margin-bottom: 8px;
        padding-bottom: 10px;
    }

    .bonus-table td[rowspan]:before {
        content: "";
        display: none;
    }

    .steps-box {
        padding: 15px;
        margin: 20px 0;
    }

    .steps-box h4 {
        font-size: 1rem;
    }

    .steps-list {
        padding-left: 20px;
        font-size: 0.9rem;
    }

    .steps-list li {
        margin-bottom: 12px;
    }

    .feature-list li {
        padding: 10px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 15px;
        margin: 30px 0;
    }

    .highlight-box p {
        font-size: 0.95rem;
    }

    .step {
        padding: 20px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
        min-height: 44px;
    }

    .faq-answer p {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.85rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .main_banner {
        margin: 15px auto;
        width: 100%;
        padding: 0 5px;
    }

    .main_banner svg {
        min-height: 200px;
        height: auto;
        width: 100%;
    }

    .main_banner svg .banner-title {
        font-size: 68px !important;
    }

    .main_banner svg .banner-subtitle {
        font-size: 38px !important;
    }

    .main_banner svg .banner-description {
        font-size: 24px !important;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 15px -10px;
        padding: 0 10px;
        width: calc(100% + 20px);
    }

    .casino-table {
        display: table;
        width: 200%;
        min-width: 1200px;
        font-size: 0.75rem;
    }

    .casino-table thead {
        display: table-header-group;
    }

    .casino-table tbody {
        display: table-row-group;
    }

    .casino-table tbody tr {
        display: table-row;
        height: 100px;
        min-height: 100px;
    }

    .casino-table tbody tr:hover {
        background-color: rgba(229, 101, 14, 0.1);
    }

    .casino-table th,
    .casino-table td {
        display: table-cell;
        padding: 10px 8px;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        vertical-align: middle;
        white-space: nowrap;
    }

    .casino-table td:first-child {
        position: sticky;
        left: 0;
        background-color: var(--card-bg);
        z-index: 1;
    }

    .casino-info {
        flex-direction: row;
        gap: 8px;
    }

    .casino-logo svg {
        width: 45px;
        height: 45px;
    }

    .casino-name {
        font-size: 0.9rem;
    }

    .promo-code {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .promo-code code {
        width: auto;
        text-align: left;
        font-size: 0.85rem;
    }

    .promo-code .copy-btn {
        width: auto;
        font-size: 0.8rem;
        padding: 8px;
    }

    .casino-table td .btn-primary {
        width: auto;
        text-align: center;
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .promo-code code {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .vox-guide h3 {
        font-size: 1.1rem;
    }

    .steps-box,
    .info-card,
    .highlight-box {
        padding: 12px;
    }
}

/* Landscape orientation for phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 25px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 35px 0;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .copy-btn,
    .btn-primary,
    .faq-question,
    .nav-menu a,
    .header-btn {
        -webkit-tap-highlight-color: rgba(229, 101, 14, 0.3);
        tap-highlight-color: rgba(229, 101, 14, 0.3);
        min-height: 44px;
        min-width: 44px;
    }

    .copy-btn:active,
    .btn-primary:active,
    .header-btn:active {
        transform: scale(0.98);
    }

    * {
        -webkit-tap-highlight-color: rgba(229, 101, 14, 0.1);
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    * {
        max-width: 100%;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

