/* ==========================================================================
   Westchase Comfort - Combined Stylesheet

   Sections:
   1. CSS Reset & Variables
   2. Legacy Hotel Theme (Luviana)
   3. Homepage Money Page (Sports Betting)
   4. Responsive Breakpoints
   ========================================================================== */

/* ==========================================================================
   1. CSS RESET & VARIABLES
   ========================================================================== */

:root {
    /* Legacy Hotel Colors */
    --hotel-primary: #c59d5f;        /* Gold accent */
    --hotel-primary-dark: #a0793b;   /* Darker gold */
    --hotel-dark: #1a1a2e;           /* Dark navy */
    --hotel-text: #555555;           /* Body text */
    --hotel-heading: #1a1a2e;        /* Heading text */
    --hotel-bg: #ffffff;             /* White background */
    --hotel-bg-alt: #f8f5f0;         /* Cream background */
    --hotel-border: #e8e0d5;         /* Subtle border */
    --hotel-light-text: #999999;     /* Light text */

    /* Money Page Colors - Texas/Sports theme */
    --mp-primary: #0a2240;           /* Deep navy blue */
    --mp-secondary: #c8102e;         /* Bold red */
    --mp-accent: #00843d;            /* Green for CTAs */
    --mp-accent-hover: #006b31;      /* Darker green */
    --mp-gold: #ffc72c;              /* Gold/yellow accent */
    --mp-bg: #f0f2f5;               /* Light gray bg */
    --mp-card-bg: #ffffff;           /* White cards */
    --mp-text: #2c3e50;             /* Dark text */
    --mp-text-light: #6c757d;       /* Secondary text */
    --mp-border: #dee2e6;           /* Card borders */
    --mp-highlight: #fff3cd;        /* Highlight yellow */
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--hotel-text);
    background-color: var(--hotel-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   2. LEGACY HOTEL THEME (LUVIANA)
   ========================================================================== */

/* --- Legacy Header --- */
.legacy-header {
    background-color: var(--hotel-dark);
    padding: 0;
    position: relative;
    z-index: 100;
}

.legacy-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.legacy-header-top a {
    color: rgba(255, 255, 255, 0.7);
}

.legacy-header-top a:hover {
    color: var(--hotel-primary);
}

.legacy-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.legacy-logo {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.legacy-logo span {
    color: var(--hotel-primary);
    font-weight: 300;
    font-size: 14px;
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* --- Legacy Navigation --- */
.legacy-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.legacy-nav a {
    color: #ffffff;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.legacy-nav a:hover,
.legacy-nav a.active {
    color: var(--hotel-primary);
}

.legacy-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* --- Legacy Page Banner --- */
.legacy-banner {
    background: linear-gradient(135deg, var(--hotel-dark) 0%, #16213e 100%);
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legacy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c59d5f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.legacy-banner h1 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.legacy-banner .legacy-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.legacy-banner .legacy-breadcrumb a {
    color: var(--hotel-primary);
}

.legacy-banner .legacy-breadcrumb span {
    margin: 0 8px;
}

/* --- Legacy Content Layout --- */
.legacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.legacy-content-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.legacy-content-full {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.legacy-main-content {
    min-width: 0;
}

/* --- Legacy Typography --- */
.legacy-main-content h1,
.legacy-main-content h2,
.legacy-main-content h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--hotel-heading);
    line-height: 1.3;
}

.legacy-main-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.legacy-main-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 30px;
}

.legacy-main-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legacy-main-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--hotel-text);
}

.legacy-main-content ul,
.legacy-main-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legacy-main-content ul {
    list-style: disc;
}

.legacy-main-content ol {
    list-style: decimal;
}

.legacy-main-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* --- Legacy Divider --- */
.legacy-divider {
    width: 60px;
    height: 3px;
    background-color: var(--hotel-primary);
    margin: 20px 0 30px;
}

/* --- Legacy Sidebar --- */
.legacy-sidebar {
    min-width: 0;
}

.legacy-sidebar-widget {
    background: var(--hotel-bg-alt);
    border: 1px solid var(--hotel-border);
    padding: 25px;
    margin-bottom: 30px;
}

.legacy-sidebar-widget h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: var(--hotel-heading);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hotel-primary);
}

.legacy-sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.legacy-sidebar-widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--hotel-border);
}

.legacy-sidebar-widget li:last-child {
    border-bottom: none;
}

.legacy-sidebar-widget li a {
    color: var(--hotel-text);
    font-size: 14px;
    transition: color 0.3s;
}

.legacy-sidebar-widget li a:hover {
    color: var(--hotel-primary);
}

/* --- Legacy Cards / Room Cards --- */
.legacy-room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.legacy-room-card {
    border: 1px solid var(--hotel-border);
    background: var(--hotel-bg);
    transition: box-shadow 0.3s;
}

.legacy-room-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.legacy-room-card-image {
    height: 220px;
    background: linear-gradient(135deg, #e8d8c4 0%, #d4c4a8 50%, #c9b896 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legacy-room-card-image span {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: var(--hotel-primary-dark);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legacy-room-card-body {
    padding: 25px;
}

.legacy-room-card-body h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: var(--hotel-heading);
    margin-bottom: 8px;
}

.legacy-room-card-body .legacy-room-price {
    font-size: 18px;
    color: var(--hotel-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.legacy-room-card-body p {
    font-size: 14px;
    color: var(--hotel-light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.legacy-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--hotel-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.legacy-btn:hover {
    background-color: var(--hotel-primary-dark);
    color: #ffffff;
}

.legacy-btn-outline {
    background-color: transparent;
    border: 2px solid var(--hotel-primary);
    color: var(--hotel-primary);
}

.legacy-btn-outline:hover {
    background-color: var(--hotel-primary);
    color: #ffffff;
}

/* --- Legacy Team Section --- */
.legacy-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.legacy-team-card {
    text-align: center;
}

.legacy-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hotel-dark), #16213e);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: var(--hotel-primary);
    font-weight: 700;
}

.legacy-team-card h4 {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: var(--hotel-heading);
    margin-bottom: 4px;
}

.legacy-team-card p {
    font-size: 13px;
    color: var(--hotel-light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Legacy Gallery --- */
.legacy-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.legacy-gallery-item {
    height: 250px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.legacy-gallery-item .legacy-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s;
}

.legacy-gallery-item:hover .legacy-gallery-placeholder {
    transform: scale(1.05);
}

/* Gallery color variations */
.legacy-gallery-item:nth-child(6n+1) .legacy-gallery-placeholder { background: linear-gradient(135deg, #2c3e50, #3498db); }
.legacy-gallery-item:nth-child(6n+2) .legacy-gallery-placeholder { background: linear-gradient(135deg, #1a1a2e, #c59d5f); }
.legacy-gallery-item:nth-child(6n+3) .legacy-gallery-placeholder { background: linear-gradient(135deg, #16213e, #0f3460); }
.legacy-gallery-item:nth-child(6n+4) .legacy-gallery-placeholder { background: linear-gradient(135deg, #2d4059, #ea5455); }
.legacy-gallery-item:nth-child(6n+5) .legacy-gallery-placeholder { background: linear-gradient(135deg, #303841, #d4a762); }
.legacy-gallery-item:nth-child(6n+6) .legacy-gallery-placeholder { background: linear-gradient(135deg, #1b262c, #3282b8); }

/* --- Legacy Blog Cards --- */
.legacy-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.legacy-blog-card {
    border: 1px solid var(--hotel-border);
    background: var(--hotel-bg);
    transition: box-shadow 0.3s;
}

.legacy-blog-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legacy-blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Georgia', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.legacy-blog-card-body {
    padding: 25px;
}

.legacy-blog-card-date {
    font-size: 12px;
    color: var(--hotel-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.legacy-blog-card-body h3 {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: var(--hotel-heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.legacy-blog-card-body h3 a:hover {
    color: var(--hotel-primary);
}

.legacy-blog-card-body p {
    font-size: 14px;
    color: var(--hotel-light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- Legacy Post Content --- */
.legacy-post-meta {
    font-size: 13px;
    color: var(--hotel-light-text);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--hotel-border);
}

.legacy-post-meta span {
    margin-right: 20px;
}

.legacy-post-meta .legacy-post-date {
    color: var(--hotel-primary);
}

.legacy-post-featured-image {
    height: 350px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Georgia', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Legacy Contact Form --- */
.legacy-contact-form {
    margin-top: 20px;
}

.legacy-form-group {
    margin-bottom: 20px;
}

.legacy-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hotel-heading);
    margin-bottom: 6px;
}

.legacy-form-group input,
.legacy-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--hotel-border);
    background: var(--hotel-bg-alt);
    font-size: 14px;
    color: var(--hotel-text);
    font-family: inherit;
    transition: border-color 0.3s;
}

.legacy-form-group input:focus,
.legacy-form-group textarea:focus {
    outline: none;
    border-color: var(--hotel-primary);
}

.legacy-form-group textarea {
    height: 150px;
    resize: vertical;
}

.legacy-contact-info {
    margin-top: 30px;
}

.legacy-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.legacy-contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--hotel-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.legacy-contact-info-text h4 {
    font-family: 'Georgia', serif;
    font-size: 15px;
    color: var(--hotel-heading);
    margin-bottom: 2px;
}

.legacy-contact-info-text p {
    font-size: 14px;
    color: var(--hotel-light-text);
    margin: 0;
}

/* --- Legacy Offers --- */
.legacy-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.legacy-offer-card {
    border: 1px solid var(--hotel-border);
    background: var(--hotel-bg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.legacy-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--hotel-primary);
}

.legacy-offer-card h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: var(--hotel-heading);
    margin-bottom: 10px;
}

.legacy-offer-card .legacy-offer-price {
    font-size: 24px;
    color: var(--hotel-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.legacy-offer-card p {
    font-size: 14px;
    color: var(--hotel-light-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- Legacy Amenities --- */
.legacy-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.legacy-amenity-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--hotel-border);
    background: var(--hotel-bg-alt);
    transition: border-color 0.3s;
}

.legacy-amenity-item:hover {
    border-color: var(--hotel-primary);
}

.legacy-amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--hotel-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.legacy-amenity-item h4 {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: var(--hotel-heading);
    margin-bottom: 8px;
}

.legacy-amenity-item p {
    font-size: 13px;
    color: var(--hotel-light-text);
    line-height: 1.5;
}

/* --- Legacy Service Page --- */
.legacy-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.legacy-service-feature {
    padding: 25px;
    background: var(--hotel-bg-alt);
    border-left: 3px solid var(--hotel-primary);
}

.legacy-service-feature h4 {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: var(--hotel-heading);
    margin-bottom: 8px;
}

.legacy-service-feature p {
    font-size: 14px;
    color: var(--hotel-text);
    margin: 0;
}

/* --- Legacy Footer --- */
.legacy-footer {
    background-color: var(--hotel-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 30px 0;
}

.legacy-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.legacy-footer h4 {
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hotel-primary);
}

.legacy-footer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legacy-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.legacy-footer a:hover {
    color: var(--hotel-primary);
}

.legacy-footer ul {
    list-style: none;
    padding: 0;
}

.legacy-footer li {
    padding: 5px 0;
    font-size: 14px;
}

.legacy-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    text-align: center;
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Legacy Map Placeholder --- */
.legacy-map-placeholder {
    width: 100%;
    height: 300px;
    background: #e8e0d5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    color: var(--hotel-light-text);
    font-size: 16px;
    margin-top: 30px;
    border: 1px solid var(--hotel-border);
}


/* ==========================================================================
   3. HOMEPAGE MONEY PAGE (SPORTS BETTING)
   ========================================================================== */

/* --- Money Page Header --- */
.mp-header {
    background: var(--mp-primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-logo {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.mp-logo .mp-logo-accent {
    color: var(--mp-gold);
}

.mp-header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mp-header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.mp-header-nav a:hover {
    color: var(--mp-gold);
}

.mp-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

/* --- Money Page Hero --- */
.mp-hero {
    background: linear-gradient(135deg, var(--mp-primary) 0%, #0d2d52 50%, #122d4f 100%);
    padding: 50px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 199, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mp-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mp-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.mp-hero h1 .mp-text-gold {
    color: var(--mp-gold);
}

.mp-hero h2 {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

.mp-hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mp-hero-badge .mp-badge-icon {
    font-size: 16px;
}

/* --- Money Page Section --- */
.mp-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.mp-section-title {
    text-align: center;
    margin-bottom: 35px;
}

.mp-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--mp-primary);
    margin-bottom: 8px;
}

.mp-section-title p {
    font-size: 16px;
    color: var(--mp-text-light);
}

/* --- Money Page Toplist --- */
.mp-toplist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mp-toplist-item {
    background: var(--mp-card-bg);
    border: 1px solid var(--mp-border);
    border-radius: 12px;
    padding: 0;
    display: grid;
    grid-template-columns: 60px 180px 1fr 180px;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
}

.mp-toplist-item:hover {
    box-shadow: 0 8px 30px rgba(10, 34, 64, 0.12);
    transform: translateY(-2px);
}

.mp-toplist-item.mp-featured {
    border: 2px solid var(--mp-gold);
    box-shadow: 0 4px 20px rgba(255, 199, 44, 0.15);
}

.mp-toplist-item.mp-featured::before {
    content: 'EDITOR\'S PICK';
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--mp-gold);
    color: var(--mp-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 0 0 6px 6px;
    letter-spacing: 0.5px;
}

.mp-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--mp-primary);
    padding: 20px 0;
    background: var(--mp-bg);
    height: 100%;
}

.mp-toplist-item.mp-featured .mp-rank {
    background: linear-gradient(135deg, var(--mp-primary), #0d2d52);
    color: var(--mp-gold);
}

.mp-sportsbook-info {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.mp-sportsbook-logo {
    width: 100px;
    height: 50px;
    background: var(--mp-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--mp-primary);
    border: 1px solid var(--mp-border);
    overflow: hidden;
    padding: 4px;
}

.mp-sportsbook-logo img {
    max-width: 90%;
    max-height: 40px;
    object-fit: contain;
}

/* Author mini section under H1 */
.mp-author-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mp-author-mini img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--mp-gold);
}

.mp-author-mini-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.mp-author-mini-text strong {
    color: #ffffff;
}

.mp-sportsbook-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--mp-primary);
}

.mp-sportsbook-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--mp-gold);
}

.mp-toplist-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mp-toplist-bonus {
    font-size: 26px;
    font-weight: 700;
    color: var(--mp-accent);
    line-height: 1.3;
}

.mp-toplist-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mp-toplist-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--mp-text);
    background: var(--mp-bg);
    padding: 4px 10px;
    border-radius: 50px;
}

.mp-toplist-feature::before {
    content: '\2713';
    color: var(--mp-accent);
    font-weight: 700;
    font-size: 11px;
}

.mp-toplist-cta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mp-btn-cta {
    display: inline-block;
    background: var(--mp-accent);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    width: 100%;
    max-width: 160px;
}

.mp-btn-cta:hover {
    background: var(--mp-accent-hover);
    color: #ffffff;
    transform: scale(1.03);
}

.mp-btn-review {
    font-size: 12px;
    color: var(--mp-text-light);
    text-decoration: underline;
    transition: color 0.3s;
}

.mp-btn-review:hover {
    color: var(--mp-primary);
}

.mp-toplist-tc {
    font-size: 10px;
    color: var(--mp-text-light);
    text-align: center;
    line-height: 1.3;
}

/* --- Money Page Content Sections --- */
.mp-content {
    background: var(--mp-card-bg);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--mp-border);
}

.mp-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--mp-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--mp-secondary);
}

.mp-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--mp-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.mp-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mp-text);
    margin-bottom: 16px;
}

.mp-content ul,
.mp-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.mp-content ul {
    list-style: disc;
}

.mp-content ol {
    list-style: decimal;
}

.mp-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mp-text);
    margin-bottom: 8px;
}

/* --- Money Page Info Boxes --- */
.mp-info-box {
    background: var(--mp-highlight);
    border-left: 4px solid var(--mp-gold);
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.mp-info-box p {
    margin: 0;
    font-size: 15px;
    color: var(--mp-text);
}

.mp-info-box strong {
    color: var(--mp-primary);
}

/* --- Money Page Comparison Table --- */
.mp-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.mp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.mp-table th {
    background: var(--mp-primary);
    color: #ffffff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--mp-border);
    color: var(--mp-text);
}

.mp-table tr:nth-child(even) {
    background: var(--mp-bg);
}

.mp-table tr:hover {
    background: #e8f4fd;
}

/* --- Money Page How-To Steps --- */
.mp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.mp-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--mp-bg);
    border-radius: 12px;
    position: relative;
}

.mp-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--mp-primary);
    color: var(--mp-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 15px;
}

.mp-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--mp-primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.mp-step p {
    font-size: 14px;
    color: var(--mp-text-light);
    margin: 0;
}

/* --- Money Page FAQ --- */
.mp-faq-list {
    margin-top: 20px;
}

.mp-faq-item {
    border: 1px solid var(--mp-border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.mp-faq-question {
    width: 100%;
    text-align: left;
    background: var(--mp-card-bg);
    border: none;
    padding: 18px 50px 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--mp-primary);
    cursor: pointer;
    position: relative;
    font-family: inherit;
    transition: background-color 0.3s;
}

.mp-faq-question:hover {
    background: var(--mp-bg);
}

.mp-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: var(--mp-text-light);
    transition: transform 0.3s;
}

.mp-faq-question.active::after {
    content: '\2212';
}

.mp-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mp-faq-answer.open {
    padding: 0 20px 20px;
    max-height: 500px;
}

.mp-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mp-text);
}

/* --- Money Page Author Box --- */
.mp-author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--mp-bg);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid var(--mp-border);
}

.mp-author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--mp-primary);
}

.mp-author-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mp-primary);
    margin: 0 0 4px;
}

.mp-author-info .mp-author-title {
    font-size: 13px;
    color: var(--mp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mp-author-info p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mp-text);
    margin: 0;
}

/* --- Money Page Footer --- */
.mp-footer {
    background: var(--mp-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 20px 0;
}

.mp-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.mp-footer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mp-footer p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.mp-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    font-size: 13px;
}

.mp-footer a:hover {
    color: var(--mp-gold);
}

.mp-footer ul {
    list-style: none;
}

.mp-footer li {
    margin-bottom: 8px;
}

.mp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.mp-footer-bottom p {
    font-size: 12px;
    margin-bottom: 4px;
}

.mp-footer-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.mp-footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Mobile Sticky CTA Bar --- */
.mp-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--mp-primary);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.mp-sticky-bar a {
    display: block;
    background: var(--mp-accent);
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}


/* ==========================================================================
   4. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Tablet (max-width: 992px) --- */
@media (max-width: 992px) {
    /* Legacy */
    .legacy-content-area {
        grid-template-columns: 1fr;
    }

    .legacy-sidebar {
        order: 2;
    }

    .legacy-room-grid {
        grid-template-columns: 1fr;
    }

    .legacy-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-offers-grid {
        grid-template-columns: 1fr;
    }

    .legacy-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legacy-service-features {
        grid-template-columns: 1fr;
    }

    /* Money Page */
    .mp-toplist-item {
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto;
    }

    .mp-rank {
        grid-row: 1 / 3;
    }

    .mp-sportsbook-info {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px;
        gap: 12px;
    }

    .mp-toplist-details {
        grid-column: 2;
        padding: 0 15px 10px;
    }

    .mp-toplist-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        padding: 15px;
        border-top: 1px solid var(--mp-border);
    }

    .mp-btn-cta {
        max-width: 200px;
    }

    .mp-footer-inner {
        grid-template-columns: 1fr;
    }

    .mp-steps {
        grid-template-columns: 1fr;
    }

    .mp-content {
        padding: 25px;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Legacy */
    .legacy-header-top {
        display: none;
    }

    .legacy-header-main {
        padding: 15px 20px;
    }

    .legacy-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--hotel-dark);
        flex-direction: column;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .legacy-nav.active {
        display: flex;
    }

    .legacy-nav a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .legacy-nav-toggle {
        display: block;
    }

    .legacy-banner {
        padding: 40px 20px;
    }

    .legacy-banner h1 {
        font-size: 26px;
    }

    .legacy-content-area {
        padding: 30px 20px;
    }

    .legacy-blog-grid {
        grid-template-columns: 1fr;
    }

    .legacy-team-grid {
        grid-template-columns: 1fr;
    }

    .legacy-gallery-grid {
        grid-template-columns: 1fr;
    }

    .legacy-amenities-grid {
        grid-template-columns: 1fr;
    }

    .legacy-footer-grid {
        grid-template-columns: 1fr;
    }

    /* Money Page */
    .mp-hero {
        padding: 35px 16px 30px;
    }

    .mp-hero h1 {
        font-size: 26px;
    }

    .mp-hero h2 {
        font-size: 15px;
    }

    .mp-header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--mp-primary);
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mp-header-nav.active {
        display: flex;
    }

    .mp-header-nav a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mp-nav-toggle {
        display: block;
    }

    .mp-toplist-item {
        grid-template-columns: 1fr;
    }

    .mp-rank {
        grid-row: auto;
        height: auto;
        padding: 10px;
        background: var(--mp-primary);
        color: var(--mp-gold);
        font-size: 16px;
    }

    .mp-toplist-item.mp-featured .mp-rank {
        background: linear-gradient(135deg, var(--mp-primary), #0d2d52);
    }

    .mp-sportsbook-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mp-toplist-details {
        grid-column: 1;
        text-align: center;
    }

    .mp-toplist-features {
        justify-content: center;
    }

    .mp-toplist-cta {
        grid-column: 1;
    }

    .mp-btn-cta {
        max-width: 100%;
    }

    .mp-section {
        padding: 30px 16px;
    }

    .mp-section-title h2 {
        font-size: 22px;
    }

    .mp-content {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .mp-content h2 {
        font-size: 20px;
    }

    .mp-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mp-sticky-bar {
        display: block;
    }

    .mp-table {
        font-size: 12px;
    }

    .mp-table th,
    .mp-table td {
        padding: 10px 8px;
    }

    .mp-hero-badges {
        gap: 10px;
    }

    .mp-hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .legacy-logo {
        font-size: 22px;
    }

    .legacy-banner h1 {
        font-size: 22px;
    }

    .legacy-main-content h2 {
        font-size: 22px;
    }

    .mp-hero h1 {
        font-size: 22px;
    }

    .mp-toplist-bonus {
        font-size: 22px;
    }
}
