/* PCH Replica Styles */
:root {
    --primary-blue: #002d72;
    --primary-orange: #ffcc00;
    --primary-yellow: #ffcc00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #002255;
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Header */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

/* Gold Sign Up Button */
.btn-nav {
    background-color: #ffcc00;
    /* PCH Yellow Background */
    color: #000 !important;
    /* Black Text */
    border: 1px solid #ffcc00;
    padding: 8px 24px;
    /* Wider padding for pill shape */
    border-radius: 30px;
    /* Pill Shape */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
    margin-left: 10px;
}

.btn-nav:hover {
    background-color: #e6b800;
    /* Darker Yellow on Hover */
    color: #000 !important;
    border-color: #e6b800;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sub-header PCH Style */
.sub-nav {
    background-color: #eee;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.sub-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section with Split Layout */
/* Enforce full width */
.hero {
    position: relative;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    /* Override section padding */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Update Prize List to be wider */
.prize-list-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Reusing hero-slide logic but putting it inside hero-background */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

/* The container that holds the 2 columns */
.hero-overlay-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Left Column: Text */
.hero-text-col {
    flex: 1;
    min-width: 300px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Right Column: Form */
.hero-form-col {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
}

/* Adjust scale of form to fit */
.regForm {
    background-color: rgba(255, 255, 255, 0.95);
    margin: 0;
    /* Remove auto margin */
    width: 100%;
    max-width: 100%;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    color: #333;
    /* Reset text color for form */
    text-shadow: none;
}

.regForm h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Slider Nav Adjustment */
.slide-nav {
    /* Move dotted nav to bottom center of the relative container or screen */
    bottom: 10px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.slide-dot.active {
    background-color: #fff;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 10px auto 0;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 200px;
    background-color: #ddd;
    /* Placeholder */
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Admin Panel Styles */
.admin-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Multi-Step Form Styles */
.regForm {
    background-color: #ffffff;
    margin: 40px auto;
    font-family: inherit;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    /* Clean, flat card look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.regForm h1 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

/* Progress Bar */
.progress-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.step-indicator {
    position: relative;
    z-index: 2;
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    font-size: 14px;
}

.step-indicator.active {
    border-color: #28a745;
    /* Green for active/completed */
    color: #28a745;
}

.step-indicator.completed {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

/* Form Steps */
.tab {
    display: none;
    /* Hide all steps by default */
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: inherit;
    border: 1px solid #aaaaaa;
    margin-bottom: 1rem;
    border-radius: 4px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
    border-color: red;
}

.form-navigation {
    overflow: auto;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.form-navigation button {
    flex: 1;
}

.btn-prev {
    background-color: #bbbbbb;
    color: #fff;
}

.btn-next {
    background-color: #ffcc00;
    /* Yellow/Orange */
    color: #333;
}

/* Update Prize List to be wider */
.prize-list-container {
    width: 100%;
    max-width: 100%;
    /* Ensure it spans full screen */
    margin: 0;
    padding: 0 2rem;
    /* Add side padding */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Increased gap */
}

/* Promo Card Design (Screenshot Match) */
.promo-title {
    font-family: var(--font-heading);
    /* Ensure Roboto Black is used */
    font-size: 2.4rem;
    /* Increased size */
    font-weight: 900;
    /* Maximum bold */
    color: #000;
    /* Pure black */
    margin-bottom: 0.8rem;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    /* Slight tightening for impact */
    line-height: 1.2;
}

.promo-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.promo-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-img-container {
    width: 100%;
    position: relative;
    background: #f0f0f0;
}

.promo-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    /* Use max-height to keep it reasonable on desktops */
    min-height: 250px;
    object-fit: cover;
    display: block;
}

.promo-black-bar {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    gap: 1rem;
}

.promo-desc {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Button with screenshot style (Blue Pill) */
.btn-promo {
    background-color: #0066cc;
    /* Match screenshot blue */
    color: #fff;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-promo:hover {
    background-color: #004c99;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .promo-footer {
        flex-direction: column;
        text-align: center;
    }

    .promo-desc {
        margin-bottom: 1rem;
    }

    .btn-promo {
        width: 100%;
    }
}

/* Mobile Responsiveness for List */
@media (max-width: 768px) {
    .prize-row {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .prize-row-img {
        width: 100%;
        height: 180px;
        border-radius: 0;
    }

    .prize-row-body {
        padding: 1.5rem;
    }

    .prize-row-action {
        padding: 0 1.5rem 1.5rem;
        width: 100%;
    }

    .prize-row-action .btn {
        width: 100%;
    }
}

/* Ways To Win Header - Bigger & Bolder */
#ways-to-win-header {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Ensure Promo Title is Left Aligned */
.promo-title {
    text-align: left;
}

/* Navbar Sign Up Button */
.btn-nav {
    background-color: var(--primary-orange);
    color: #fff !important;
    /* Force white text */
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-nav:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Sign Up Cards Section */
.signup-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.signup-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    display: block;
    /* Make anchor a block */
    text-decoration: none;
    color: inherit;
}

.signup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.signup-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.signup-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 800;
}

.signup-card p {
    color: #666;
    font-size: 1rem;
}

.signup-card.highlight {
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
    border: 2px solid var(--primary-orange);
}

.signup-card.highlight .signup-icon {
    color: var(--primary-orange);
}

/* PCH Header Replica Styles - Added for Exact Header Match */
.pch-header-container {
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

.pch-top-bar {
    background-color: #000;
    /* Deep black as per image */
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
}

.pch-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ensure container-fluid works if not defined */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
}

.pch-logo-area {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pch-logo-text {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.pch-signin-area {
    font-size: 14px;
}

.pch-signin-link {
    color: #ffcc00;
    /* Yellow */
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}

.pch-signin-link:hover {
    text-decoration: underline;
    color: #ffdb4d;
}

/* Navigation */
.pch-nav-bar {
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    /* slightly thicker border */
    padding: 15px 0;
}

.pch-nav-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    /* Spacious */
    flex-wrap: wrap;
    align-items: center;
}

.pch-nav-links a {
    color: #111;
    font-weight: 800;
    /* Extra bold */
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.2s;
}

.pch-nav-links a:hover {
    color: #ff6600;
}

/* Hero Banner */
.pch-hero-banner {
    position: relative;
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ccc;
}

.pch-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align left */
    justify-content: center;
    position: relative;
    text-align: left;
    /* Align text left */
    padding-left: 5%;
    /* Add spacing from left edge */
}

.pch-hero-overlay .container {
    margin: 0;
    /* Override auto margin to keep it left */
    width: auto;
    max-width: 600px;
    /* Limit width so it doesn't span across */
}

.pch-welcome-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.pch-brand-title {
    color: #ffcc00;
    /* Gold */
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
    /* Hard shadow for impact */
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
}

.pch-hero-subtext {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.pch-hero-subtext .dot {
    color: #fff;
    font-size: 12px;
    vertical-align: middle;
}

.pch-arrow-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pch-arrow-right:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #fff;
}

/* Notification Bar */
.pch-notification-bar {
    background-color: #ffcc00;
    /* Bright Yellow */
    padding: 12px 0;
    width: 100%;
    border-top: 1px solid #ffdb4d;
    border-bottom: 1px solid #e6b800;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.pch-notification-bar .container {
    max-width: 1200px;
}

.pch-notif-text {
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.btn-lets-go {
    background-color: #0066cc;
    /* Blue */
    color: #fff;
    font-weight: 800;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 20px;
    white-space: nowrap;
    font-size: 1rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    /* Button depth */
    transition: transform 0.1s, box-shadow 0.1s;
    text-decoration: none;
    display: inline-block;
}

.btn-lets-go:hover {
    background-color: #005ce6;
    transform: translateY(-1px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-lets-go:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .pch-brand-title {
        font-size: 2.5rem;
    }

    .pch-arrow-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .pch-brand-title {
        font-size: 2rem;
    }

    .pch-hero-subtext {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 5px;
    }

    .pch-hero-subtext .dot {
        display: none;
    }

    .pch-notification-bar .pch-flex-between {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .btn-lets-go {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .pch-nav-links {
        gap: 20px;
        font-size: 13px;
    }

    .pch-top-bar {
        padding: 10px;
    }
}

/* PCH Side-by-Side Content Layout */
.pch-split-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    /* Generous spacing */
    align-items: flex-start;
}

.pch-col-cards {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.pch-col-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

/* Ensure vertical stack for cards inside left column */
.signup-cards-grid.vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.signup-cards-grid.vertical-stack .signup-card {
    display: flex;
    /* Horizontal card layout */
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 1.5rem;
}

.signup-cards-grid.vertical-stack .signup-icon {
    font-size: 2rem;
    margin-bottom: 0;
    min-width: 50px;
    text-align: center;
}

.signup-cards-grid.vertical-stack h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.signup-cards-grid.vertical-stack p {
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive: Stack on mobile */
@media (max-width: 900px) {
    .pch-split-layout {
        flex-direction: column-reverse;
        /* Put Form (Right col) on Top, Cards on Bottom */
        align-items: center;
    }

    .pch-col-cards,
    .pch-col-form {
        max-width: 600px;
        width: 100%;
    }
}

/* =========================================
   NEW PCH FOOTER STYLES
   ========================================= */

/* Top Yellow Info Bar */
.pch-footer-info-bar {
    background-color: #ffcc00;
    /* PCH Yellow */
    padding: 20px 0;
    text-align: center;
    color: #000;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid #e6b800;
}

.pch-footer-info-bar .info-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.pch-footer-info-bar .info-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pch-info-icons-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.pch-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.pch-info-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000;
}

.pch-info-item span {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Main Dark Footer */
.pch-main-footer {
    background-color: #1a1a1a;
    /* Dark background from screenshot */
    color: #fff;
    padding: 40px 0;
    font-family: 'Open Sans', sans-serif;
}

.pch-footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.pch-footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffcc00;
    font-family: 'Roboto', sans-serif;
}

.pch-footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.pch-connect-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pch-connect-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
}

.pch-social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #ffcc00;
    color: #000;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 1rem;
    transition: transform 0.2s;
    text-decoration: none;
}

.pch-social-icons a:hover {
    transform: scale(1.1);
}

/* Footer Links Columns */
.pch-footer-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.pch-footer-cols-wrapper {
    display: flex;
    gap: 50px;
    flex: 2;
    flex-wrap: wrap;
}

.pch-footer-col h4 {
    color: #ccc;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.pch-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pch-footer-col ul li {
    margin-bottom: 8px;
}

.pch-footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.pch-footer-col ul li a:hover {
    color: #ffcc00;
    text-decoration: underline;
}

/* Trust Badges Area */
.pch-trust-badges {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-width: 300px;
}

.pch-badges-container {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pch-badges-container img {
    height: 30px;
    width: auto;
}

/* Placeholder for badges since we don't have images */
.badge-placeholder {
    border: 1px solid #ccc;
    padding: 5px;
    font-size: 0.7rem;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    background: #f9f9f9;
}

/* Modal Base Styles */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Footer Copyright */
.pch-copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.75rem;
    color: #777;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .pch-footer-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pch-footer-cols-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .pch-trust-badges {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/* New Centered Layout for Home Page */
/* New Centered Layout for Home Page - Side by Side on Desktop */
.centered-layout {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.centered-layout .signup-cards-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.centered-layout .recent-winners-sidebar {
    width: 100%;
    margin-top: 0 !important;
    /* Remove top margin in grid */
}

/* Ensure responsive stacking */
@media (max-width: 768px) {
    .centered-layout {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .centered-layout .recent-winners-sidebar {
        margin-top: 2rem !important;
    }
}

/* Ensure the cards take reasonable width */
.centered-layout .signup-card {
    width: 100%;
}

/* Registration Modal Specifics */
.reg-modal {
    max-width: 600px;
    /* Wider for the form steps */
    padding: 0;
    background: transparent;
    /* Let the form card handle background */
    box-shadow: none;
    /* Remove default modal shadow if form has one */
}

.reg-modal .close-signup-modal {
    position: absolute;
    top: -10px;
    /* Move out slightly */
    right: -10px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    background: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Ensure the form inside modal looks like a card */
.reg-modal-form {
    margin: 0;
    /* Remove the auto margin from original class */
    width: 100%;
    max-width: 100%;
}