/* CSS Variables for our consistent design */
:root {
    --primary-bg: #0F1A2B;
    --card-bg: #1A3B4D;
    --text-color: #E0E0E0;
    --text-muted: #a8b2d1;
    --accent-gold: #FFD700;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

/* General Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: white;
}

ul {
    list-style-position: inside;
}


/* Header Styles */
.main_header_wrap {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--card-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-logo-wrap .logo img {
    max-height: 70px;
    width: auto;
}

.main_header_menu_desktop {
    display: none;
    gap: 30px;
}

.main_header_menu_item {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.main_header_menu_item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.main_header_menu_item:hover::after {
    width: 100%;
}

.mobile_menu_btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.main_header_menu_mobile {
    display: none;
    flex-direction: column;
    background-color: var(--card-bg);
    padding: 10px 0;
}
.main_header_menu_mobile.show {
    display: flex;
}
.main_header_bar_menu_item {
    color: var(--text-color);
    padding: 15px 5%;
    border-bottom: 1px solid var(--primary-bg);
    font-weight: 700;
}
.main_header_bar_menu_item:last-child {
    border-bottom: none;
}


/* Hero Section */
.hero_section {
    padding: 80px 0;
    text-align: center;
}

.hero_content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero_content .hero_subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.hero_content .hero_subtitle span {
    color: var(--accent-gold);
    font-weight: 700;
}


/* Casino Card List */
.casino_list_section {
    padding: 60px 0;
}
.casino_card_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 380px;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.card-rank {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 12px 0 12px 0;
    font-size: 16px;
}

.card-ribbon {
    position: absolute;
    top: 15px;
    right: -40px;
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    padding: 20px 0;
}

.card-header img {
    max-height: 200px;
    max-width: 180px;
}

.card-body {
    text-align: center;
}

.card-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-rating .score {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

.card-rating .reviews {
    font-size: 14px;
    color: var(--text-muted);
}

.card-bonus p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}
.card-bonus span {
    display: block;
    color: var(--accent-gold);
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.card-features li {
    color: var(--text-muted);
    font-size: 15px;
}

.card-footer {
    margin-top: auto;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffed4a;
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.card-footer .js_text_wrap {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Content & FAQ Sections */
.content-block-wrap {
    padding: 60px 0;
    background-color: var(--primary-bg);
}
.content-block-wrap:nth-of-type(odd) {
     background-color: var(--card-bg);
}

.content-block-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
}
.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
}
.content-block p, .content-block ul li {
    margin-bottom: 15px;
}
.content-block ul {
    padding-left: 20px;
}

.faq-block-wrap {
    padding: 60px 0;
}
.faq-block {
    display: grid;
    gap: 20px;
}
.faq-block__item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}
.faq-block__item h3 {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
}
.faq-block__item .trigger-content {
    background: transparent;
border: none;
}
.faq-block__item-content {
    margin-top: 10px;
    color: var(--text-muted);
}
.faq-block__item-content.hide {
    display: none;
}

/* Footer Styles */
.main_footer_wrap {
    background-color: var(--primary-bg);
    padding: 50px 0 30px;
    border-top: 1px solid var(--card-bg);
    text-align: center;
}
.footer_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.footer_menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer_text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer_logo img {
    max-width: 250px;
}
.awareness_block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.awareness_block img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.awareness_block a:hover img {
    opacity: 1;
}
.footer_copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive Media Queries */

@media (min-width: 768px) {
    .mobile_menu_btn {
        display: none;
    }
    .main_header_menu_desktop {
        display: flex;
    }
    .hero_content h1 {
        font-size: 64px;
    }
     .faq-block {
        grid-template-columns: repeat(2, 1fr);
    }
     .footer_header {
        flex-direction: row;
        justify-content: space-between;
    }
}
/* Header Styles */
.main_header_wrap {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--card-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-logo-wrap .logo img {
    max-height: 70px;
    width: auto;
}

.main_header_menu_desktop {
    display: none;
    gap: 30px;
}

.main_header_menu_item {
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--text-color);
}

.mobile_menu_btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.main_header_menu_mobile {
    display: none;
    flex-direction: column;
    background-color: var(--card-bg);
    padding: 10px 0;
}
.main_header_menu_mobile.show {
    display: flex;
}
.main_header_bar_menu_item {
    color: var(--text-color);
    padding: 15px 5%;
    border-bottom: 1px solid var(--primary-bg);
    font-weight: 700;
}
.main_header_bar_menu_item:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero_section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--card-bg);
}

.hero_content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero_content .hero_subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Content Section */
.content_section {
    padding: 60px 0;
}

.policy_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.policy_card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--accent-gold);
}

.policy_card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.policy_card p, .policy_card li {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.policy_card ul {
    padding-left: 20px;
}
.policy_card li:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
.main_footer_wrap {
    background-color: var(--primary-bg);
    padding: 50px 0 30px;
    border-top: 1px solid var(--card-bg);
    text-align: center;
}
.main_footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer_logo img {
    max-width: 250px;
}
.footer_menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.awareness_block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.awareness_block img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.awareness_block a:hover img {
    opacity: 1;
}

.footer_copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (min-width: 768px) {
    .mobile_menu_btn {
        display: none;
    }
    .main_header_menu_desktop {
        display: flex;
    }
    .hero_content h1 {
        font-size: 64px;
    }
    .footer_header {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .policy_card {
        padding: 40px;
    }
}


/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

/* CSS Variables */
:root {
    --primary-bg: #0F1A2B;
    --card-bg: #1A3B4D;
    --text-color: #E0E0E0;
    --text-muted: #a8b2d1;
    --accent-gold: #FFD700;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

/* General Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: white;
}

/* Header Styles */
.main_header_wrap {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--card-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-logo-wrap .logo img {
    max-height: 70px;
    width: auto;
}

.main_header_menu_desktop {
    display: none;
    gap: 30px;
}

.main_header_menu_item {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.main_header_menu_item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.main_header_menu_item:hover::after {
    width: 100%;
}

.mobile_menu_btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.main_header_menu_mobile {
    display: none;
    flex-direction: column;
    background-color: var(--card-bg);
    padding: 10px 0;
}
.main_header_menu_mobile.show {
    display: flex;
}
.main_header_bar_menu_item {
    color: var(--text-color);
    padding: 15px 5%;
    border-bottom: 1px solid var(--primary-bg);
    font-weight: 700;
}
.main_header_bar_menu_item:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero_section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--card-bg);
}

.hero_content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero_content .hero_subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Content Section */
.content_section {
    padding: 60px 0;
}

.content_wrapper {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.content_block {
    margin-bottom: 30px;
}

.content_block:last-child {
    margin-bottom: 0;
}

.content_block h2 {
    font-size: 28px;
    font-family: var(--font-heading);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content_block p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 15px;
}


/* Footer Styles */
.main_footer_wrap {
    background-color: var(--primary-bg);
    padding: 50px 0 30px;
    border-top: 1px solid var(--card-bg);
    text-align: center;
}
.main_footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.footer_logo img {
    max-width: 250px;
}
.footer_menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.awareness_block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.awareness_block img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.awareness_block a:hover img {
    opacity: 1;
}
.footer_copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (min-width: 768px) {
    .mobile_menu_btn {
        display: none;
    }
    .main_header_menu_desktop {
        display: flex;
    }
    .hero_content h1 {
        font-size: 64px;
    }
    .footer_header {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .content_wrapper {
        padding: 50px;
    }
}

/* General Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}




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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--primary-bg);
    background-color: var(--input-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
}

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

.contact-form .submit-btn {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.contact-form .submit-btn:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
}

