:root {
    --primary-color: #ff6b00;
    --secondary-color: #1f110a;
    --text-color: #ffffff;
    --background-color: #121212;
    --accent-color: #ffc107;
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.inline-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.inline-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.inline-link:hover {
    color: #ffd700;
}

.inline-link:hover::after {
    transform: scaleX(1);
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: block;
}

.logo {
    height: 40px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    justify-content: flex-end;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 240px;
    width: 100%;
}

.search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    color: var(--text-color);
    width: 100%;
    transition: background-color 0.3s;
}

.search-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.search-button {
    background: none;
    border: none;
    color: var(--text-color);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.3);
}

.cta-button:hover {
    background-color: #ff8124;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.4);
}

.login-button {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: var(--border-radius);
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-section {
    background-image: url('img/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    color: var(--text-color);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 600px;
    flex: 1;
    padding-right: 2rem;
}

.hero-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bonus-container {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 380px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.bonus-label {
    background-color: #c41e1e;
    color: var(--text-color);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bonus-label::before,
.bonus-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 15px;
    height: 8px;
    background-color: #a51818;
}

.bonus-label::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bonus-label::after {
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: center;
}

.signup-button {
    display: block;
    background: linear-gradient(to bottom, #4caf50, #3d8b40);
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    margin: 0 auto;
    border: 3px solid #ffd700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
    text-align: center;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: fit-content;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.4);
    }
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.7);
    animation: none;
    background: linear-gradient(to bottom, #5bc75f, #4caf50);
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .bonus-container {
        max-width: 450px;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .logo {
        height: 32px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .search-form {
        max-width: 120px;
        margin-left: 0.75rem;
    }
    
    .search-input {
        padding: 0.4rem 2rem 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .search-button {
        right: 5px;
    }
    
    .search-button svg {
        width: 14px;
        height: 14px;
    }
    
    .cta-button, .login-button {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
    
    .hero-section {
        background-image: url('img/m-bg.webp');
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .hero-heading {
        font-size: 1.6rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .bonus-container {
        padding: 1.2rem;
    }
    
    .bonus-label {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
        top: -12px;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .signup-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .search-form {
        max-width: 100px;
        margin-left: 0.5rem;
    }
    
    .cta-button, .login-button {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .hero-heading {
        font-size: 1.4rem;
    }
    
    .hero-text {
        font-size: 0.85rem;
    }
    
    .bonus-amount {
        font-size: 1.6rem;
    }
    
    .signup-button {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

.faq-section {
    background: linear-gradient(to bottom, #190a04, #2a1409);
    padding: 4rem 0;
    color: var(--text-color);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-content {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    position: relative;
    cursor: pointer;
}

.faq-answer {
    padding: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer {
    background-color: #0e0603;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.disclaimer p {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-content {
        padding: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
        padding: 1.1rem;
    }
    
    .faq-answer {
        padding: 1.1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-content {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .site-footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .faq-content {
        padding: 1.2rem;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 0.9rem;
    }
    
    .faq-answer {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .disclaimer {
        font-size: 0.75rem;
    }
}

/* Content Sections */
.content-section {
    background: linear-gradient(to bottom, #190a04, #2a1409);
    padding: 4rem 0;
    color: var(--text-color);
}

.content-section:nth-child(even) {
    background: linear-gradient(to bottom, #2a1409, #190a04);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.content-layout.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 0 0 45%;
}

.content-full {
    width: 100%;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.2);
}

.section-image-full {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 2rem 0;
}

.section-image-full:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.2);
}

.games-section .section-image-full {
    width: 70%;
    max-width: 900px;
    margin: 2rem auto;
    display: block;
}

@media (max-width: 768px) {
    .games-section .section-image-full {
        width: 100%;
    }
}

.content-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.content-heading.centered {
    text-align: center;
}

.content-heading.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.content-subheading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-paragraph.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: decimal;
}

.content-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.content-list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-list-unstyled li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.content-list-unstyled li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.content-list-check {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-list-check li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.content-list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
}

.content-list-styled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-list-styled li {
    padding: 0.6rem 1rem 0.6rem 2.2rem;
    margin-bottom: 0.8rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.content-list-styled li:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.content-list-styled li::before {
    content: "•";
    position: absolute;
    left: 0.8rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.content-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.content-table {
    width: 100%;
    min-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-table thead {
    background-color: var(--primary-color);
}

.content-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.content-table tbody tr {
    background-color: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.content-table tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.content-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.content-table td {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.bonus-feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.bonus-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.bonus-feature-title {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.content-note {
    background-color: rgba(255, 107, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-title {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.support-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.support-availability {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.payment-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.payment-table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-table thead {
    background-color: var(--primary-color);
}

.payment-table th {
    padding: 1rem 0.8rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.payment-table tbody tr {
    background-color: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.payment-table tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

.payment-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.payment-table td {
    padding: 1rem 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.payment-table td:first-child {
    text-align: left;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-info-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.payment-info-box:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.payment-info-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .content-section {
        padding: 3rem 0;
    }
    
    .content-layout {
        gap: 2rem;
    }
    
    .content-heading {
        font-size: 1.8rem;
    }
    
    .content-subheading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 2.5rem 0;
    }
    
    .content-layout,
    .content-layout.reverse {
        flex-direction: column;
    }
    
    .content-image {
        flex: 0 0 100%;
        order: -1;
    }
    
    .content-heading {
        font-size: 1.6rem;
    }
    
    .content-subheading {
        font-size: 1.2rem;
    }
    
    .content-paragraph {
        font-size: 0.95rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-table-wrapper,
    .payment-table-wrapper {
        border-radius: 8px;
        box-shadow: inset -5px 0 10px -5px rgba(255, 107, 0, 0.3);
    }
    
    .content-table-wrapper::after,
    .payment-table-wrapper::after {
        content: '→';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1.5rem;
        opacity: 0.7;
        pointer-events: none;
    }
    
    .content-table,
    .payment-table {
        font-size: 0.85rem;
    }
    
    .content-table th,
    .content-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .content-heading {
        font-size: 1.4rem;
    }
    
    .content-subheading {
        font-size: 1.1rem;
    }
    
    .content-paragraph {
        font-size: 0.9rem;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
    }
    
    .content-table {
        font-size: 0.75rem;
        min-width: 450px;
    }
    
    .content-table th,
    .content-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .payment-table {
        font-size: 0.7rem;
        min-width: 650px;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.7rem;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-amount {
        font-size: 1.6rem;
    }
}

/* Login Page Specific Styles */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.security-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 0, 0.3));
}

.security-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.security-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.login-two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.login-column {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
}

.troubleshooting-item {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.troubleshooting-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.troubleshooting-problem {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.troubleshooting-solution {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.troubleshooting-solution strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .login-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .login-two-column {
        grid-template-columns: 1fr;
    }
    
    .login-column {
        padding: 1.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-column {
        padding: 1.2rem;
    }
    
    .security-card {
        padding: 1.5rem;
    }
    
    .security-icon {
        font-size: 2.5rem;
    }
    
    .troubleshooting-item {
        padding: 1.2rem;
    }
}

/* Bonus Page Specific Styles */
.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.bonus-type-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.bonus-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
}

.bonus-type-card:hover::before {
    transform: scaleX(1);
}

.bonus-type-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 0, 0.3));
}

.bonus-type-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.bonus-type-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bonus-type-example {
    background-color: rgba(255, 107, 0, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    color: #ffd700;
    font-size: 0.9rem;
}

.wagering-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin: 2.5rem 0;
}

.wagering-column {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.wagering-example {
    background-color: rgba(255, 107, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.wagering-example-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.terms-card {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 1.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s;
}

.terms-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.terms-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.terms-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.tips-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.tips-main {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.tips-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tips-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s;
}

.tips-box.highlight {
    background-color: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.tips-box:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tips-box-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.tips-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .bonus-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .wagering-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tips-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bonus-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .wagering-column {
        padding: 1.5rem;
    }
    
    .tips-main {
        padding: 1.5rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bonus-types-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-type-card {
        padding: 1.5rem;
    }
    
    .bonus-type-icon {
        font-size: 3rem;
    }
    
    .wagering-column {
        padding: 1.2rem;
    }
    
    .tips-main {
        padding: 1.2rem;
    }
    
    .tips-box {
        padding: 1.2rem;
    }
    
    .terms-card {
        padding: 1.5rem;
    }
}

/* Burger Menu */
.burger-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.burger-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8124);
    border: 3px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.2);
}

.burger-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.burger-toggle:active {
    transform: scale(0.95);
}

.burger-line {
    width: 24px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.burger-nav {
    position: absolute;
    bottom: 75px;
    right: 0;
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.burger-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.burger-link {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: center;
}

.burger-link:hover {
    background-color: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    transform: translateX(-5px);
}

.burger-link:not(:last-child) {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .burger-menu {
        bottom: 20px;
        right: 20px;
    }
    
    .burger-toggle {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .burger-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .burger-toggle {
        width: 50px;
        height: 50px;
    }
    
    .burger-line {
        width: 20px;
    }
} 