/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    background-color: #3b0f0f;
    color: #fff;
}

/* Header styles */
.header {
    background-color: #3b0f0f;
    padding: 6px 0;
    border-bottom: 1px solid #6d2522;
    position: relative;
    z-index: 10;
}

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

.logo-link {
    display: block;
}

.logo {
    height: 42px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    position: relative;
    border: 4px solid transparent;
    background-clip: padding-box;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 29px;
    padding: 4px;
    background: linear-gradient(to bottom, #e9b44c, #8b5a29);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-login {
    background-color: #461129;
    color: #e9c172;
}

.btn-register {
    background-color: #0b9629;
    color: #ffea9c;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 500px;
    background-image: url('img/magiushero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

/* Promotion Card */
.promotion-card {
    background-color: rgba(97, 26, 26, 0.9);
    border-radius: 20px;
    padding: 30px 35px;
    position: relative;
    max-width: 450px;
    text-align: left;
    border: 8px solid transparent;
    background-clip: padding-box;
}

.promotion-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 25px;
    padding: 8px;
    background: linear-gradient(to bottom, #e9b44c, #8b5a29);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.promotion-details {
    margin-bottom: 25px;
}

.promotion-details h1 {
    font-size: 48px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.promotion-details p {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 500;
}

.join-button {
    display: block;
    width: 200px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffea9c;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.join-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a9628;
    border-radius: 16px / 40%;
    z-index: -2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.join-button::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(to bottom, #e9b64c, #8b5a29);
    border-radius: 22px / 45%;
    z-index: -3;
}

.join-button:hover {
    transform: translateY(-2px);
}

.join-button:active {
    transform: translateY(1px);
}

/* Casino Intro Section */
.casino-intro {
    background-color: #3b0f0f;
    padding: 30px 0 20px;
}

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

.casino-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.casino-intro p:last-child {
    margin-bottom: 0;
}

/* Quick Info Table */
.quick-info-table {
    width: 100%;
    max-width: 900px;
    margin: 30px auto 0;
    border-collapse: collapse;
    background-color: rgba(42, 12, 12, 0.5); /* Slightly darker than section bg */
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #6d2522; /* Using existing border color */
}

.quick-info-table caption {
    font-size: 24px;
    font-weight: 700;
    color: #e9b44c;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.quick-info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #5a1e1c; /* Darker separator */
    color: #f0d6a6;
}

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

.quick-info-table td:first-child {
    font-weight: 700;
    color: #e9c172;
    width: 40%;
}

/* Why Choose Section */
.why-choose {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.why-choose h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.why-choose h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 30px 0 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.why-choose p:last-of-type {
    margin-bottom: 0;
}

.why-choose-image {
    display: block;
    max-width: 65%;
    height: auto;
    margin: 25px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Reviews Table */
.reviews-table {
    width: 100%;
    max-width: 900px;
    margin: 25px auto 30px;
    border-collapse: collapse;
    background-color: rgba(42, 12, 12, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #6d2522;
}

.reviews-table caption {
    font-size: 22px;
    font-weight: 700;
    color: #e9b44c;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.reviews-table th,
.reviews-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #5a1e1c;
    text-align: left;
}

.reviews-table th {
    background-color: rgba(97, 26, 26, 0.8);
    color: #e9c172;
    font-weight: 700;
}

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

.reviews-table td:first-child {
    font-weight: 700;
    color: #e9c172;
}

.reviews-table td:nth-child(2) {
    text-align: center;
    color: #e9b44c;
}

/* Payment Methods Table */
.payment-methods-table {
    width: 100%;
    max-width: 900px;
    margin: 25px auto 30px;
    border-collapse: collapse;
    background-color: rgba(42, 12, 12, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #6d2522;
}

.payment-methods-table caption {
    font-size: 22px;
    font-weight: 700;
    color: #e9b44c;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.payment-methods-table th,
.payment-methods-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #5a1e1c;
    text-align: left;
}

.payment-methods-table th {
    background-color: rgba(97, 26, 26, 0.8);
    color: #e9c172;
    font-weight: 700;
    white-space: nowrap;
}

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

.payment-methods-table td:first-child {
    font-weight: 700;
    color: #e9c172;
}

.payment-methods-table td:nth-child(2),
.payment-methods-table td:nth-child(3) {
    text-align: center;
}

.payment-methods-table td:nth-child(4) {
    text-align: center;
}

/* Advantages Section */
.advantages-section {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.advantages-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.advantages-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 30px 0 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.advantages-section p:last-of-type {
    margin-bottom: 0;
}

/* Registration Section */
.registration-section {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.registration-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.registration-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 30px 0 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.registration-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.registration-steps {
    max-width: 900px;
    margin: 0 auto 30px;
    padding-left: 20px;
}

.registration-steps li {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    margin-bottom: 20px;
    padding-left: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.registration-steps li strong {
    color: #e9c172;
    font-weight: 700;
}

/* Bonus Section */
.bonus-section {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.bonus-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.bonus-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 30px 0 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.bonus-steps {
    max-width: 900px;
    margin: 0 auto 30px;
    padding-left: 20px;
}

.bonus-steps li {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    margin-bottom: 20px;
    padding-left: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.bonus-steps li strong {
    color: #e9c172;
    font-weight: 700;
}

/* Payment Section */
.payment-section {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.payment-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.payment-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 30px 0 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.payment-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/* Payment Options Table */
.payment-options-table {
    width: 100%;
    max-width: 1000px;
    margin: 25px auto 30px;
    border-collapse: collapse;
    background-color: rgba(42, 12, 12, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #6d2522;
}

.payment-options-table caption {
    font-size: 22px;
    font-weight: 700;
    color: #e9b44c;
    padding-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.payment-options-table th,
.payment-options-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #5a1e1c;
    text-align: left;
}

.payment-options-table th {
    background-color: rgba(97, 26, 26, 0.8);
    color: #e9c172;
    font-weight: 700;
}

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

.payment-options-table td:first-child {
    font-weight: 700;
    color: #e9c172;
}

.payment-options-table td:nth-child(3),
.payment-options-table td:nth-child(4) {
    text-align: center;
    font-size: 18px;
}

/* Responsible Gaming Section */
.responsible-section {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.responsible-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.responsible-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.responsible-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0d6a6;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 400;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.responsible-note {
    font-style: italic;
    border-left: 3px solid #e9b44c;
    padding-left: 20px;
    margin-top: 30px !important;
}

.responsible-gaming-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
}

.gaming-info-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(97, 26, 26, 0.6);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #6d2522;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gaming-info-card h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.gaming-info-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.gaming-info-card li {
    color: #f0d6a6;
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(233, 180, 76, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.gaming-info-card li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background-color: #3b0f0f;
    padding: 20px 0 40px;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(97, 26, 26, 0.4);
    border: 2px solid #6d2522;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 15px 20px;
    background-color: rgba(97, 26, 26, 0.8);
    cursor: pointer;
    position: relative;
    --faq-icon: "+";
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e9b44c;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding-right: 30px;
    line-height: 1.4;
}

.faq-question::after {
    content: var(--faq-icon, "+");
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #e9b44c;
    font-weight: 700;
}

.faq-question.active {
    --faq-icon: "-";
    background-color: rgba(97, 26, 26, 1);
}

.faq-answer {
    padding: 15px 20px;
    border-top: 1px solid #6d2522;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #f0d6a6;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

/* Mobile-friendly tables */
@media (max-width: 767px) {
    .payment-options-table,
    .payment-methods-table {
        display: block;
        width: 100%;
    }
    
    .payment-options-table caption,
    .payment-methods-table caption {
        display: block;
    }
    
    .payment-options-table thead,
    .payment-methods-table thead {
        display: none; /* Hide table headers on mobile */
    }
    
    .payment-options-table tbody,
    .payment-methods-table tbody,
    .payment-options-table tr,
    .payment-methods-table tr {
        display: block;
        width: 100%;
    }
    
    .payment-options-table tr,
    .payment-methods-table tr {
        margin-bottom: 15px;
        background-color: rgba(42, 12, 12, 0.7);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #6d2522;
    }
    
    .payment-options-table td,
    .payment-methods-table td {
        display: flex;
        padding: 10px 12px;
        text-align: left;
        border-bottom: 1px solid #5a1e1c;
    }
    
    .payment-options-table td:last-child,
    .payment-methods-table td:last-child {
        border-bottom: none;
    }
    
    /* Add labels for mobile view */
    .payment-options-table td::before,
    .payment-methods-table td::before {
        content: attr(data-label);
        width: 40%;
        font-weight: 700;
        color: #e9c172;
        margin-right: 10px;
    }
    
    .payment-options-table td:nth-child(3),
    .payment-options-table td:nth-child(4),
    .payment-methods-table td {
        text-align: left;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        padding: 6px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        height: 42px;
    }
    
    .nav-buttons {
        gap: 10px;
    }

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

    .hero {
        height: 400px;
    }

    .hero-content {
        justify-content: center;
    }

    .promotion-card {
        max-width: 380px;
        padding: 25px 25px;
    }

    .promotion-details h1 {
        font-size: 40px;
    }
    
    .promotion-details p {
        font-size: 18px;
    }

    .join-button {
        width: 180px;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
    
    .casino-intro {
        padding: 25px 0 15px;
    }
    
    .casino-intro p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .quick-info-table caption {
        font-size: 20px;
    }

    .quick-info-table td {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .why-choose {
        padding: 15px 0 30px;
    }
    
    .why-choose h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .why-choose h3 {
        font-size: 22px;
        margin: 25px 0 14px;
    }
    
    .why-choose p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .advantages-section {
        padding: 15px 0 30px;
    }
    
    .advantages-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .advantages-section h3 {
        font-size: 22px;
        margin: 25px 0 14px;
    }
    
    .advantages-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .reviews-table {
        margin: 20px auto 25px;
    }
    
    .reviews-table caption {
        font-size: 20px;
    }
    
    .reviews-table th,
    .reviews-table td {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .payment-methods-table {
        margin: 20px auto 25px;
    }
    
    .payment-methods-table caption {
        font-size: 20px;
    }
    
    .payment-methods-table th,
    .payment-methods-table td {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .registration-section {
        padding: 15px 0 30px;
    }
    
    .registration-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .registration-section h3 {
        font-size: 22px;
        margin: 25px 0 14px;
    }
    
    .registration-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .registration-steps {
        margin-bottom: 25px;
    }
    
    .registration-steps li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .bonus-section {
        padding: 15px 0 30px;
    }
    
    .bonus-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .bonus-section h3 {
        font-size: 22px;
        margin: 25px 0 14px;
    }
    
    .bonus-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .bonus-steps {
        margin-bottom: 25px;
    }
    
    .bonus-steps li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .payment-section {
        padding: 15px 0 30px;
    }
    
    .payment-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .payment-section h3 {
        font-size: 22px;
        margin: 25px 0 14px;
    }
    
    .payment-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .payment-options-table {
        margin: 20px auto 25px;
    }
    
    .payment-options-table caption {
        font-size: 20px;
    }
    
    .payment-options-table th,
    .payment-options-table td {
        padding: 10px 8px;
        font-size: 15px;
    }
    
    .payment-options-table td:nth-child(3),
    .payment-options-table td:nth-child(4) {
        font-size: 16px;
    }
    
    .payment-methods-table {
        margin: 20px auto 25px;
    }
    
    .responsible-section {
        padding: 15px 0 30px;
    }
    
    .responsible-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .responsible-section h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .responsible-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .responsible-gaming-info {
        margin: 25px auto;
        gap: 15px;
    }
    
    .gaming-info-card {
        padding: 15px;
        min-width: 220px;
    }
    
    .gaming-info-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .gaming-info-card li {
        font-size: 15px;
        padding: 6px 0;
    }
    
    .responsible-note {
        padding-left: 15px;
        margin-top: 25px !important;
    }
    
    .faq-section {
        padding: 15px 0 30px;
    }
    
    .faq-section h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h3 {
        font-size: 18px;
        padding-right: 25px;
    }
    
    .faq-question::after {
        right: 15px;
        font-size: 22px;
    }
    
    .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 4px 0;
    }
    
    .btn {
        padding: 5px 12px;
        font-size: 13px;
        border-width: 3px;
    }
    
    .btn::before {
        inset: -3px;
        border-radius: 22px;
        padding: 3px;
    }
    
    .logo {
        height: 36px;
    }
    
    .promotion-card {
        max-width: 320px;
        padding: 20px 20px;
    }
    
    .promotion-details h1 {
        font-size: 34px;
    }
    
    .promotion-details p {
        font-size: 16px;
    }

    .join-button {
        width: 160px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
    
    .casino-intro {
        padding: 20px 0 10px;
    }
    
    .casino-intro p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .quick-info-table caption {
        font-size: 18px;
    }
    
    .quick-info-table td {
        padding: 8px 10px;
        font-size: 14px;
    }

    .quick-info-table td:first-child {
        width: 45%; /* Adjust for smaller screens */
    }
    
    .why-choose {
        padding: 10px 0 25px;
    }
    
    .why-choose h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .why-choose h3 {
        font-size: 20px;
        margin: 22px 0 12px;
    }
    
    .why-choose p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .advantages-section {
        padding: 10px 0 25px;
    }
    
    .advantages-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .advantages-section h3 {
        font-size: 20px;
        margin: 22px 0 12px;
    }
    
    .advantages-section p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .reviews-table {
        margin: 18px auto 22px;
    }
    
    .reviews-table caption {
        font-size: 18px;
    }
    
    .reviews-table th,
    .reviews-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .reviews-table th {
        white-space: nowrap;
    }
    
    .payment-methods-table {
        margin: 18px auto 22px;
    }
    
    .payment-methods-table caption {
        font-size: 18px;
    }
    
    .payment-methods-table th,
    .payment-methods-table td {
        padding: 8px 6px;
        font-size: 13px;
    }
    
    .payment-methods-table th {
        white-space: nowrap;
    }
    
    .registration-section {
        padding: 10px 0 25px;
    }
    
    .registration-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .registration-section h3 {
        font-size: 20px;
        margin: 22px 0 12px;
    }
    
    .registration-section p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .registration-steps {
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .registration-steps li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
        padding-left: 5px;
    }
    
    .bonus-section {
        padding: 10px 0 25px;
    }
    
    .bonus-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .bonus-section h3 {
        font-size: 20px;
        margin: 22px 0 12px;
    }
    
    .bonus-section p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .bonus-steps {
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .bonus-steps li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
        padding-left: 5px;
    }
    
    .payment-section {
        padding: 10px 0 25px;
    }
    
    .payment-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .payment-section h3 {
        font-size: 20px;
        margin: 22px 0 12px;
    }
    
    .payment-section p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .payment-options-table {
        margin: 18px auto 22px;
        font-size: 13px;
    }
    
    .payment-options-table caption {
        font-size: 18px;
    }
    
    .payment-options-table th,
    .payment-options-table td {
        padding: 8px 4px;
        font-size: 13px;
    }
    
    .payment-options-table th {
        white-space: nowrap;
    }
    
    .payment-options-table td:nth-child(3),
    .payment-options-table td:nth-child(4) {
        font-size: 14px;
    }
    
    .payment-methods-table {
        margin: 18px auto 22px;
    }
    
    .responsible-section {
        padding: 10px 0 25px;
    }
    
    .responsible-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .responsible-section h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .responsible-section p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .responsible-gaming-info {
        flex-direction: column;
        margin: 20px auto;
        gap: 15px;
    }
    
    .gaming-info-card {
        min-width: 100%;
        padding: 12px;
    }
    
    .gaming-info-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .gaming-info-card li {
        font-size: 14px;
        padding: 5px 0;
    }
    
    .responsible-note {
        padding-left: 12px;
        margin-top: 20px !important;
    }
    
    .faq-section {
        padding: 10px 0 25px;
    }
    
    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 10px 12px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 20px;
    }
    
    .faq-question::after {
        right: 12px;
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 10px 12px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Footer Styles */
.footer {
    background-color: #2b0b0b;
    padding: 30px 0;
    border-top: 1px solid #6d2522;
    margin-top: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    height: 30px;
    width: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 3px 8px;
}

.more-link {
    color: #e9b44c;
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.arrow {
    font-size: 18px;
    margin-left: 2px;
}

.age-restriction {
    margin: 10px 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #e9b44c;
    border: 2px solid #e9b44c;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: #f0d6a6;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0;
    }
    
    .payment-icon {
        height: 24px;
    }
    
    .age-badge {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-text p {
        font-size: 12px;
    }
}

/* CTA Button Styles */
.cta-container {
    display: flex;
    justify-content: center;
    margin: 35px 0 10px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0b9629;
    color: #ffea9c;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 34px;
    padding: 4px;
    background: linear-gradient(to bottom, #e9b44c, #8b5a29);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
} 