/* Michigan Bariatric Surgery Collaborative - Site Styles */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Raleway', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
    max-width: 100vw;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 400;
    color: #2b2b2b;
    padding: 8px 12px;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #3899aa;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    gap: 6px;
}

.header-search input {
    border: none;
    outline: none;
    font-size: 13px;
    width: 120px;
    font-family: inherit;
}

.header-social {
    display: flex;
    gap: 8px;
}

.header-social a {
    font-size: 16px;
    color: #2b2b2b;
}

.btn-contact {
    background: #1a3a5c;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: #15304d;
}

/* Page Hero Banners */
.page-hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d6a8a 100%);
    text-align: center;
    padding: 60px 40px;
    color: #fff;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.page-hero-divider {
    width: 40px;
    height: 3px;
    background: #fff;
    margin: 15px auto 0;
}

/* Hero with background image */
.page-hero-img {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 200px;
}

.page-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 92, 0.7);
}

.page-hero-img .hero-content {
    position: relative;
    z-index: 1;
}

/* Content Sections */
.section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background: #f0f5f8;
    max-width: 100%;
}

.section-dark .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Core Values (Collaborative page) */
.core-values-list {
    max-width: 800px;
    margin: 0 auto;
}

.core-value-item {
    display: flex;
    gap: 40px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.core-value-item:last-child {
    border-bottom: none;
}

.core-value-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 200px;
    flex-shrink: 0;
}

.core-value-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Card Grid (For Members, For Patients) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

.card {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d7d9f 100%);
    border-radius: 6px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.card-img-placeholder {
    width: 100%;
    height: 80px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 4px;
}

.card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card .btn-learn {
    display: inline-block;
    background: #fff;
    color: #1a3a5c;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #fff;
}

.card .btn-learn:hover {
    background: transparent;
    color: #fff;
}

/* Initiative Cards (Initiatives page) */
.initiative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 40px auto;
}

.initiative-card {
    background: #f5f8fa;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
}

.initiative-card .card-text {
    flex: 1;
}

.initiative-card .card-img {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.initiative-card .card-tag {
    font-size: 12px;
    font-weight: 600;
    color: #3899aa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.initiative-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.initiative-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.initiative-card .btn-outline {
    display: inline-block;
    border: 1px solid #1a3a5c;
    color: #1a3a5c;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.initiative-card .btn-outline:hover {
    background: #1a3a5c;
    color: #fff;
}

/* Data Registry */
.access-box {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #1a3a5c;
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 50px;
}

.access-box .access-img {
    flex: 0 0 350px;
    height: 200px;
    background: linear-gradient(135deg, #2d6a8a, #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    opacity: 0.5;
}

.access-box .access-text {
    padding: 30px;
    color: #fff;
}

.access-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #3899aa;
    margin-bottom: 10px;
}

.access-box p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.access-btns {
    display: flex;
    gap: 10px;
}

.btn-sm {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s;
}

.btn-sm:hover {
    background: #fff;
    color: #1a3a5c;
}

.btn-sm-filled {
    background: #fff;
    color: #1a3a5c;
}

.btn-sm-filled:hover {
    background: transparent;
    color: #fff;
}

.data-info-list {
    max-width: 800px;
    margin: 0 auto;
}

.data-info-item {
    display: flex;
    gap: 40px;
    padding: 25px 0;
    align-items: flex-start;
}

.data-info-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a3a5c;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 180px;
    flex-shrink: 0;
}

.data-info-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Query section */
.query-section {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 40px auto;
}

.query-text {
    flex: 1;
}

.query-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 15px;
}

.query-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Forms */
.form-section {
    max-width: 700px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-family: inherit;
    font-size: 14px;
    background: transparent;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1a3a5c;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: #1a3a5c;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #15304d;
}

/* Visual Abstracts (Press page) */
.abstract-item {
    display: flex;
    gap: 40px;
    padding: 50px 0;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.abstract-item:nth-child(even) {
    flex-direction: row-reverse;
}

.abstract-img {
    flex: 0 0 400px;
    height: 250px;
    background: #e8edf1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.abstract-text {
    flex: 1;
}

.abstract-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.abstract-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* PCP Toolkit */
.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.toolkit-card {
    text-align: center;
    padding: 20px;
}

.toolkit-card .toolkit-img {
    width: 100%;
    height: 200px;
    background: #e8edf1;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.toolkit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3899aa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact page hero */
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(45, 106, 138, 0.85)),
                url('../img/surgery-bg.jpg') center/cover;
    padding: 60px 40px 30px;
    color: #fff;
}

.contact-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-form-hero {
    max-width: 700px;
}

/* Footer */
.site-footer {
    background: #e8f0f5;
    padding: 50px 40px 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.footer-info {
    text-align: left;
}

.footer-info h4,
.footer-info .footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 5px;
}

.footer-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.footer-contact {
    text-align: left;
}

.footer-contact a {
    color: #1a3a5c;
    font-weight: 500;
}

.footer-contact p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.footer-disclaimer {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 12px;
    color: #777;
    line-height: 1.7;
    font-style: italic;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

/* Container utility */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section title utility */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========== Contact Page ========== */
.contact-hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.88), rgba(45, 106, 138, 0.88)),
                url('../img/surgery-bg.jpg') center/cover no-repeat;
    padding: 60px 40px 50px;
    color: #fff;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 92, 0.3);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.contact-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    font-family: inherit;
    font-size: 14px;
    background: transparent;
    color: #fff;
    transition: border-color 0.2s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-bottom-color: #fff;
}

.contact-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-contact-submit {
    display: block;
    width: 100%;
    padding: 18px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 20px;
}

.btn-contact-submit:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ========== PCP Toolkit Page ========== */
.pcp-hero-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4eef5 100%);
    text-align: center;
    padding: 60px 40px;
}

.pcp-hero-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a3a5c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pcp-hero-subtitle {
    font-size: 16px;
    color: #555;
    font-style: italic;
}

.pcp-cards-section {
    padding: 60px 0;
}

.pcp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pcp-card {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pcp-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.pcp-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pcp-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e8edf1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.pcp-card-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3899aa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* ========== Press Page ========== */
.press-hero-section {
    background: #fff;
    text-align: center;
    padding: 60px 40px;
    color: #333;
}

.press-hero-section .section-title {
    color: #1a3a5c;
    margin-bottom: 20px;
}

.press-subtitle {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

.press-abstracts-section {
    padding: 40px 0 60px;
}

.abstract-image {
    flex: 0 0 400px;
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
}

.abstract-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abstract-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e8edf1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.abstract-left {
    flex-direction: row;
}

.abstract-right {
    flex-direction: row-reverse;
}

/* ========== Data Registry Page ========== */
.data-access-section {
    padding: 40px;
}

.data-access-box {
    max-width: 900px;
    margin: 0 auto;
    background: #1a3a5c;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    color: #fff;
}

.data-access-img {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #2d6a8a, #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.data-access-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data-access-content {
    flex: 1;
    padding: 40px 35px;
}

.data-access-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #3899aa;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.data-access-text {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.data-access-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-login,
.btn-request {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-login {
    background: #fff;
    color: #1a3a5c;
    border: 1px solid #fff;
}

.btn-login:hover {
    background: transparent;
    color: #fff;
}

.btn-request {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-request:hover {
    background: #fff;
    color: #1a3a5c;
}

.data-registry-section {
    padding: 60px 0;
}

.data-info-items {
    max-width: 800px;
    margin: 0 auto;
}

.data-info-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.data-query-section {
    padding: 40px 0;
    background: #f9fafb;
}

.query-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.query-image {
    flex: 0 0 300px;
}

.query-image-placeholder {
    width: 100%;
    height: 200px;
    background: #e8edf1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #c0392b;
    font-weight: 700;
}

.query-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 15px;
}

.btn-analytic-memo {
    display: inline-block;
    padding: 10px 30px;
    background: #1a3a5c;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-analytic-memo:hover {
    background: #15304d;
}

.analytic-memo-section {
    padding: 60px 0;
}

.analytic-memo-form {
    max-width: 700px;
    margin: 0 auto;
}

.btn-submit-memo {
    display: block;
    width: 100%;
    padding: 15px;
    background: #1a3a5c;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
}

.btn-submit-memo:hover {
    background: #15304d;
}

/* ========== Card Buttons (multi-button cards) ========== */
.card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========== Casino Toplist ========== */
/* ===== CASINO TOPLIST ===== */
.casino-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #e0e7ed;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    position: relative;
}

.casino-card:hover {
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.1);
    border-color: #3899aa;
    transform: translateY(-2px);
}

/* Rank badge */
.casino-rank {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #1a3a5c;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Casino logo */
.casino-logo {
    flex-shrink: 0;
    width: 110px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafb;
    border-radius: 8px;
    padding: 5px;
    overflow: hidden;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Casino info */
.casino-info {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a3a5c;
    margin: 0 0 3px 0;
}

.casino-bonus {
    font-size: 13px;
    color: #3899aa;
    font-weight: 600;
    margin-bottom: 6px;
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.casino-features li {
    font-size: 11px;
    color: #666;
    background: #f0f5f8;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Rating + CTA column */
.casino-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 130px;
}

.casino-rating {
    color: #f4a623;
    font-size: 14px;
    line-height: 1;
}

.casino-rating span {
    color: #555;
    font-size: 12px;
    font-weight: 600;
}

.casino-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1a3a5c, #2d6a8a);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-cta:hover {
    background: linear-gradient(135deg, #2d6a8a, #3899aa);
    color: #fff;
    box-shadow: 0 3px 12px rgba(56, 153, 170, 0.3);
}

/* #1 Casino - highlighted */
.casino-card:first-child {
    border: 2px solid #3899aa;
    background: linear-gradient(135deg, #f8fcfd 0%, #eef7f9 100%);
}

.casino-card:first-child .casino-rank {
    background: linear-gradient(135deg, #3899aa, #2d6a8a);
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.casino-card:first-child .casino-cta {
    background: linear-gradient(135deg, #3899aa, #2d6a8a);
    padding: 12px 28px;
    font-size: 14px;
}

/* Featured Casino Card (#3 - Editor's Pick) */
.casino-card.featured {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #fffef5 0%, #fff9e6 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.12), 0 4px 15px rgba(0,0,0,0.04);
    padding-top: 32px;
}

.casino-card.featured:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.25), 0 6px 20px rgba(0,0,0,0.08);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.casino-card.featured .casino-rank {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #1a3a5c;
    width: 42px;
    height: 42px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.casino-card.featured .casino-logo {
    background: #fff;
    border: 1px solid #f0d860;
}

.casino-card.featured .casino-features li {
    background: #fff8e1;
    color: #8a6d00;
}

.casino-card.featured .casino-cta {
    background: linear-gradient(135deg, #FFD700, #e6b800);
    color: #1a3a5c;
    padding: 12px 28px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.35);
    animation: pulse-gold 2.5s ease-in-out infinite;
}

.casino-card.featured .casino-cta:hover {
    background: linear-gradient(135deg, #e6b800, #cc9f00);
    color: #1a3a5c;
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 2px 10px rgba(255, 215, 0, 0.35); }
    50% { box-shadow: 0 4px 22px rgba(255, 215, 0, 0.65); }
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #1a3a5c;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px 5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

/* Casino Detail Sections */
.casino-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.casino-detail:last-child {
    border-bottom: none;
}

.casino-detail h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.casino-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.casino-spec {
    background: #f0f5f8;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.casino-spec-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.casino-spec-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a3a5c;
}

.casino-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.casino-pros h4,
.casino-cons h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.casino-pros h4 { color: #27ae60; }
.casino-cons h4 { color: #c0392b; }

.casino-pros ul,
.casino-cons ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}

.casino-pros li::before { content: "\2713 "; color: #27ae60; font-weight: 700; }
.casino-cons li::before { content: "\2717 "; color: #c0392b; font-weight: 700; }

.casino-review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.casino-testing {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.casino-testing h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.casino-testing p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.casino-verdict {
    background: #eef7f9;
    border-left: 4px solid #3899aa;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 14px;
    color: #1a3a5c;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 15px;
}

.casino-detail-cta {
    display: inline-block;
    background: #1a3a5c;
    color: #fff;
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.casino-detail-cta:hover {
    background: #2d6a8a;
    color: #fff;
}

.casino-rating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.casino-rating-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    padding: 6px 10px;
    background: #f0f5f8;
    border-radius: 4px;
}

.casino-rating-item span {
    font-weight: 600;
    color: #1a3a5c;
}

/* ========== FAQ ========== */
.faq-item {
    border-bottom: 1px solid #dde4ea;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* ========== Mobile Hamburger Menu Toggle Button ========== */
/* Hidden by default on desktop - only shown via media query on mobile */
.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    /* Ensure the button meets Google's 48px minimum tap target */
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 200;
    -webkit-tap-highlight-color: transparent;
}

/* Hamburger icon: three horizontal bars built with CSS pseudo-elements and a span */
.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1a3a5c;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    display: block;
    width: 26px;
    height: 3px;
    background: #1a3a5c;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

/* Top bar positioned above the middle bar */
.menu-toggle span::before {
    top: -8px;
}

/* Bottom bar positioned below the middle bar */
.menu-toggle span::after {
    top: 8px;
}

/* Active state: transform hamburger into X close icon */
.menu-toggle.active span {
    background: transparent; /* Hide middle bar */
}

.menu-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
    background: #1a3a5c;
}

.menu-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #1a3a5c;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-header {
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    .main-nav {
        flex-wrap: wrap;
        gap: 4px;
    }
    .main-nav a {
        font-size: 12px;
        padding: 6px 8px;
    }
}

@media (max-width: 768px) {
    /* ===== Header Layout: logo left, hamburger right ===== */
    .site-header {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 8px 15px;
        gap: 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-logo img {
        width: 50px;
        height: 50px;
    }

    /* ===== Show hamburger toggle on mobile ===== */
    .menu-toggle {
        display: flex;
        order: 2; /* Push to the right side of the header row */
    }

    /* ===== Mobile Navigation: hidden by default, slides down when .open ===== */
    .main-nav {
        /* Take full width below the logo/hamburger row */
        order: 3;
        flex-basis: 100%;
        width: 100%;
        /* Hidden by default */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        /* Stack links vertically */
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        /* Smooth slide-down animation */
        transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s ease;
        /* White background for the dropdown */
        background: #fff;
        border-top: 1px solid #eee;
        margin: 0 -15px; /* Stretch to full header width */
        padding: 0 15px;
    }

    /* When .open class is toggled via JS, reveal the nav */
    .main-nav.open {
        max-height: 800px; /* Large enough to fit all 11 links */
        opacity: 1;
        visibility: visible;
        padding: 8px 15px;
        border-bottom: 1px solid #eee;
    }

    /* Each nav link: full width, stacked, with 48px minimum tap target */
    .main-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 12px 10px;
        font-size: 15px;
        font-weight: 500;
        color: #1a3a5c;
        border-bottom: 1px solid #f0f0f0;
        white-space: normal;
        transition: background 0.2s, color 0.2s;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: #3899aa;
        background: #f5fafb;
    }

    /* ===== Header Right: hide search/social on mobile, keep contact button ===== */
    .header-right {
        order: 4;
        flex-basis: 100%;
        width: 100%;
        justify-content: center;
        /* Hidden by default, shown with .main-nav.open */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Show header-right when nav is open */
    .main-nav.open ~ .header-right {
        max-height: 100px;
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
    }

    .header-search {
        display: none; /* Hide search on mobile to save space */
    }

    /* Contact button: ensure 48px minimum tap target */
    .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    /* ===== Everything below header: unchanged from original responsive ===== */
    .card-grid,
    .initiative-grid {
        grid-template-columns: 1fr;
    }
    .toolkit-grid,
    .pcp-cards-grid {
        grid-template-columns: 1fr;
    }
    .core-value-item,
    .data-info-item {
        flex-direction: column;
        gap: 10px;
    }
    .abstract-item,
    .abstract-item:nth-child(even),
    .abstract-left,
    .abstract-right {
        flex-direction: column;
    }
    .abstract-img,
    .abstract-image {
        flex: none;
        width: 100%;
        height: auto;
    }
    .access-box {
        flex-direction: column;
    }
    .access-box .access-img {
        flex: none;
        width: 100%;
        height: 150px;
    }
    .query-section,
    .query-content {
        flex-direction: column;
    }
    .query-image {
        flex: none;
        width: 100%;
    }
    .form-row,
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-info, .footer-contact {
        text-align: center;
    }
    .site-footer {
        padding: 30px 15px 20px;
    }
    .section {
        padding: 30px 15px;
    }
    .page-hero {
        padding: 30px 15px;
    }
    .page-hero h1,
    .contact-heading,
    .pcp-hero-heading {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .page-hero p {
        font-size: 14px;
    }
    .container {
        padding: 0 15px;
    }
    .data-access-box {
        flex-direction: column;
    }
    .data-access-img {
        flex: none;
        height: 150px;
    }
    .casino-card {
        flex-wrap: wrap;
        padding: 15px;
        gap: 10px;
    }
    .casino-card.featured {
        padding-top: 32px;
    }
    .casino-logo {
        width: 80px;
        height: 40px;
    }
    .casino-rank {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 8px;
    }
    .casino-info {
        flex: 1;
        min-width: 150px;
    }
    .casino-name {
        font-size: 14px;
    }
    .casino-bonus {
        font-size: 12px;
    }
    .casino-features {
        display: none;
    }
    .casino-action {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .casino-cta {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 12px;
    }
    .casino-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .casino-pros-cons {
        grid-template-columns: 1fr;
    }
    .casino-rating-grid {
        grid-template-columns: 1fr;
    }
    .data-access-content {
        padding: 25px 20px;
        text-align: center;
    }
    .data-access-buttons {
        flex-direction: column;
        align-items: center;
    }
    /* Fix sidescroll from any overflowing elements */
    img {
        max-width: 100%;
        height: auto;
    }
    section, div, footer, header, nav {
        max-width: 100vw;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .header-logo img {
        width: 40px;
        height: 40px;
    }
    .page-hero h1 {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .section h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .casino-card {
        padding: 12px;
    }
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
}

/* ========== IMPORTANT: JavaScript Required for Hamburger Menu ==========
 * Add a <button class="menu-toggle" aria-label="Menu"><span></span></button>
 * inside .site-header, between .header-logo and .main-nav.
 *
 * Then add this script to each page before </body>:
 *
 * <script>
 * document.querySelector('.menu-toggle').addEventListener('click', function() {
 *     this.classList.toggle('active');
 *     document.querySelector('.main-nav').classList.toggle('open');
 * });
 * </script>
 * ======================================================================= */

/* ========== Homepage Styles ========== */
.home-hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d6a8a 100%);
    color: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}
.home-hero .container {
    max-width: 900px;
    margin: 0 auto;
}
.home-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #fff;
}
.home-hero .subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}
.home-hero .description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 30px;
}
.home-hero .btn-hero {
    display: inline-block;
    background: #fff;
    color: #1a3a5c;
    padding: 14px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.home-hero .btn-hero:hover {
    background: #e8f4f8;
}

.home-section {
    padding: 60px 20px;
    width: 100%;
}
.home-section .home-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.home-section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 10px;
}
.home-section-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* Initiatives cards */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}
.initiative-card {
    background: #1a3a5c;
    border-radius: 8px;
    padding: 30px 25px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.initiative-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.initiative-card .card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.initiative-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}
.initiative-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* Keynote spotlight */
.keynote-section {
    background: #f0f5f8;
}
.keynote-card {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.keynote-image {
    flex: 0 0 220px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}
.keynote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.keynote-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 5px;
}
.keynote-info .keynote-title {
    font-size: 15px;
    color: #3899aa;
    margin-bottom: 15px;
    line-height: 1.6;
}
.keynote-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Partners section */
.partners-section {
    text-align: center;
}
.partners-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
}
.partners-disclaimer {
    font-size: 13px;
    color: #888;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.partners-logos img {
    max-height: 100px;
    width: auto;
    opacity: 0.85;
}

/* CQI section */
.cqi-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
}

/* Homepage responsive */
@media (max-width: 768px) {
    .home-hero {
        padding: 50px 15px 40px;
    }
    .home-hero h1 {
        font-size: 26px;
    }
    .home-hero .subtitle {
        font-size: 16px;
    }
    .home-section-heading {
        font-size: 24px;
    }
    .keynote-card {
        flex-direction: column;
        text-align: center;
    }
    .keynote-image {
        flex: none;
        width: 180px;
        height: 240px;
        margin: 0 auto;
    }
    .initiatives-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer links */
.footer-links {
    text-align: center;
    padding: 15px 20px;
    font-size: 13px;
    color: #aaa;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
