/* Super Lucky Draw - Coral Sunset Theme */

:root {
    --primary-coral: #FF6B6B;
    --primary-teal: #4ECDC4;
    --accent-gold: #FFE66D;
    --accent-salmon: #FF8B94;
    --dark-navy: #1A2332;
    --dark-slate: #2C3E50;
    --light-cream: #FFF8F0;
    --soft-gray: #ECF0F1;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --success-green: #2ECC71;
    --warning-orange: #F39C12;
    --error-red: #E74C3C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--light-cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Compliance Banner */
.wbl-compliance-banner {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
    letter-spacing: 0.3px;
}

.wbl-compliance-banner strong {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

/* Sidebar Navigation */
.wbl-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    padding: 0;
    padding-top: 60px;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.wbl-sidebar.show {
    transform: translateX(0);
}

@media (min-width: 1201px) {
    .wbl-sidebar {
        transform: translateX(0);
    }
}

.wbl-sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.wbl-sidebar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 1;
}

.wbl-sidebar-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(255, 230, 109, 0.3);
}

.wbl-sidebar-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-sidebar-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: none;
}

@media (max-width: 1200px) {
    .wbl-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.wbl-sidebar-close:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: rotate(90deg);
}

.wbl-sidebar-nav {
    padding: 2rem 0;
}

.wbl-sidebar-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    margin: 0.25rem 0;
}

.wbl-sidebar-link i {
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 24px;
    color: var(--primary-teal);
}

.wbl-sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: var(--primary-coral);
    padding-left: 2rem;
}

.wbl-sidebar-link.active {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.15) 0%, transparent 100%);
    color: white;
    border-left-color: var(--accent-gold);
}

.wbl-sidebar-link.active i {
    color: var(--accent-gold);
}

.wbl-sidebar-footer {
    padding: 0 1.5rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.wbl-btn-sidebar-login,
.wbl-btn-sidebar-register {
    display: block;
    width: 100%;
    padding: 0.9rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.wbl-btn-sidebar-login {
    background: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
}

.wbl-btn-sidebar-login:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.wbl-btn-sidebar-register {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    border: 2px solid transparent;
    color: white;
}

.wbl-btn-sidebar-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Mobile Toggle */
.wbl-mobile-toggle {
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 998;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
    transition: all 0.3s ease;
}

@media (min-width: 1201px) {
    .wbl-mobile-toggle {
        display: none;
    }
}

.wbl-mobile-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(255, 107, 107, 0.45);
}

.wbl-mobile-toggle-bar {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sidebar Overlay */
.wbl-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.wbl-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.wbl-main-content {
    padding-top: 60px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

@media (min-width: 1201px) {
    .wbl-main-content {
        margin-left: 280px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Hero Section */
.wbl-hero {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 50%, var(--primary-teal) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.wbl-hero::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='%23ffffff' fill-opacity='0.08'%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.4;
}

.wbl-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wbl-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.wbl-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wbl-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.wbl-hero-highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--light-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.wbl-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.wbl-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wbl-btn-primary,
.wbl-btn-secondary {
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.wbl-btn-primary {
    background: white;
    color: var(--primary-coral);
    border: 2px solid white;
}

.wbl-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

.wbl-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.wbl-btn-secondary:hover {
    background: white;
    color: var(--primary-coral);
    transform: translateY(-3px);
}

/* Sections */
.wbl-section {
    padding: 5rem 2rem;
    background: var(--light-cream);
}

.wbl-section-alt {
    background: white;
}

.wbl-section-dark {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    color: white;
}

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

.wbl-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wbl-section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-section-dark .wbl-section-title {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.wbl-section-dark .wbl-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.wbl-section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.wbl-section-dark .wbl-section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Cards */
.wbl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.wbl-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 3px solid transparent;
}

.wbl-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.25);
    border-color: var(--primary-coral);
}

.wbl-pricing-featured {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.wbl-pricing-featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.wbl-pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--dark-navy);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.wbl-pricing-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-pricing-featured .wbl-pricing-number {
    background: linear-gradient(135deg, var(--accent-gold) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-pricing-plan {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.wbl-pricing-features {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wbl-pricing-featured .wbl-pricing-features {
    color: rgba(255, 255, 255, 0.9);
}

.wbl-pricing-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wbl-pricing-featured .wbl-pricing-link {
    background: white;
    color: var(--primary-coral);
}

.wbl-pricing-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Process Cards */
.wbl-process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.wbl-process-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-teal);
}

.wbl-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(78, 205, 196, 0.25);
}

.wbl-process-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.wbl-process-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.wbl-process-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Feature Cards */
.wbl-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.wbl-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.wbl-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.2);
}

.wbl-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.wbl-feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.wbl-feature-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Info Card */
.wbl-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.wbl-info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.wbl-info-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wbl-info-list li {
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.wbl-info-list i {
    color: var(--accent-gold);
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

/* About Box */
.wbl-about-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 20px;
    padding: 3.5rem;
    border: 3px solid var(--primary-teal);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.wbl-about-box h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-about-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.wbl-about-highlight {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.25);
}

/* CTA Banner */
.wbl-cta-banner {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 50%, var(--primary-teal) 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 16px 48px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.wbl-cta-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='%23ffffff' 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");
}

.wbl-cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wbl-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.wbl-cta-banner .wbl-btn-primary {
    background: white;
    color: var(--primary-coral);
    position: relative;
    z-index: 1;
}

/* Footer */
.wbl-footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 2rem;
    position: relative;
}

@media (min-width: 1201px) {
    .wbl-footer {
        margin-left: 280px;
    }
}

.wbl-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-coral) 0%, var(--accent-gold) 50%, var(--primary-teal) 100%);
}

.wbl-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wbl-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.wbl-footer-brand h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 1.5rem 0 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-footer-brand p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.wbl-footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(255, 230, 109, 0.3);
}

.wbl-footer h5 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.wbl-contact-info p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.wbl-contact-info i {
    color: var(--primary-teal);
    margin-right: 0.8rem;
    width: 20px;
}

.wbl-contact-info a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wbl-contact-info a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.wbl-responsible {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.wbl-responsible h5 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.wbl-responsible p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.wbl-rg-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.wbl-rg-logos a {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.wbl-rg-logos a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.wbl-rg-logos img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
}

.wbl-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.wbl-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.wbl-footer-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.wbl-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.wbl-footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.wbl-footer-bottom a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wbl-footer-bottom a:hover {
    color: var(--accent-gold);
}

.wbl-age-badge {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Cookie Consent */
.wbl-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.wbl-cookie-consent.show {
    transform: translateY(0);
}

.wbl-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.wbl-cookie-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.wbl-cookie-text a {
    color: var(--primary-teal);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.wbl-cookie-text a:hover {
    color: var(--accent-gold);
}

.wbl-btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.wbl-btn-cookie-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Back to Top Button */
.wbl-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

/* Page Specific Styles */
.wbl-page-hero {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 50%, var(--primary-teal) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.wbl-page-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.wbl-page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.wbl-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.wbl-page-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-page-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--dark-navy);
}

.wbl-page-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.wbl-page-content ul,
.wbl-page-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.wbl-page-content li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.wbl-page-content a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wbl-page-content a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

/* Forms */
.wbl-form-group {
    margin-bottom: 1.8rem;
}

.wbl-form-label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.95rem;
}

.wbl-form-input,
.wbl-form-textarea,
.wbl-form-select {
    width: 100%;
    padding: 1rem 1.3rem;
    border: 2px solid var(--soft-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.wbl-form-input:focus,
.wbl-form-textarea:focus,
.wbl-form-select:focus {
    outline: none;
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.wbl-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.wbl-form-submit {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 100%);
    color: white;
    border: none;
    padding: 1.1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.wbl-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.wbl-form-message {
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: none;
}

.wbl-form-message.success {
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid var(--success-green);
    color: var(--success-green);
}

.wbl-form-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid var(--error-red);
    color: var(--error-red);
}

/* Form Container for Login/Register Pages */
.wbl-form-container {
    max-width: 550px;
    margin: 6rem auto;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 107, 107, 0.1);
}

.wbl-form-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbl-form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.wbl-form-checkbox {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-coral);
}

.wbl-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.wbl-form-checkbox-label span {
    flex: 1;
}

.wbl-form-checkbox-label a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
}

.wbl-form-checkbox-label a:hover {
    text-decoration: underline;
}

.wbl-form-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.wbl-form-link {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--soft-gray);
}

.wbl-form-link p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.wbl-form-link a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wbl-form-link a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

/* Page Container for Content Pages */
.wbl-page-container {
    min-height: 100vh;
    background: var(--light-cream);
}

@media (min-width: 1201px) {
    .wbl-page-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.wbl-page-header {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-salmon) 50%, var(--primary-teal) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
}

/* FAQ Items */
.wbl-faq-item {
    background: white;
    border: 2px solid var(--soft-gray);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wbl-faq-item:hover {
    border-color: var(--primary-coral);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.15);
}

.wbl-faq-item summary {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wbl-faq-item summary::-webkit-details-marker {
    display: none;
}

.wbl-faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-coral);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.wbl-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.wbl-faq-item p {
    margin-top: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Contact Page Specific Styles */
.wbl-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wbl-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-coral);
}

.wbl-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 107, 107, 0.2);
}

.wbl-contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wbl-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.wbl-contact-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.wbl-contact-card a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.wbl-contact-card a:hover {
    color: var(--primary-teal);
}

.wbl-contact-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Quick Links */
.wbl-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.wbl-quick-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.wbl-quick-link:hover {
    border-color: var(--primary-coral);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.15);
}

.wbl-quick-link-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.wbl-quick-link strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-navy);
    margin-bottom: 0.4rem;
}

.wbl-quick-link p {
    color: var(--primary-coral);
    font-size: 0.95rem;
    margin: 0;
}

/* Hours Table */
.wbl-hours-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.wbl-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--soft-gray);
}

.wbl-hours-row:last-child {
    border-bottom: none;
}

.wbl-hours-row span {
    color: var(--text-light);
    font-size: 1.05rem;
}

.wbl-hours-row strong {
    color: var(--dark-navy);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Help Banner */
.wbl-help-banner {
    background: linear-gradient(135deg, var(--warning-orange) 0%, var(--error-red) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(231, 76, 60, 0.3);
}

.wbl-help-banner h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.wbl-help-banner p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.wbl-help-phone {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.wbl-help-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.wbl-help-banner span {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.8rem;
}

/* Content Section */
.wbl-content-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.wbl-content-section p a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wbl-content-section p a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.wbl-content-section strong {
    color: var(--dark-navy);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wbl-hero-title {
        font-size: 2.5rem;
    }
    
    .wbl-hero-description {
        font-size: 1.05rem;
    }
    
    .wbl-section-title {
        font-size: 2.2rem;
    }
    
    .wbl-page-title {
        font-size: 2.2rem;
    }
    
    .wbl-cta-title {
        font-size: 2.2rem;
    }
    
    .wbl-pricing-grid,
    .wbl-process-cards,
    .wbl-features-grid {
        grid-template-columns: 1fr;
    }
    
    .wbl-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .wbl-hero-cta {
        flex-direction: column;
    }
    
    .wbl-btn-primary,
    .wbl-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wbl-section {
        padding: 3rem 1.5rem;
    }
    
    .wbl-hero {
        padding: 3.5rem 1.5rem;
    }
    
    .wbl-about-box,
    .wbl-cta-banner {
        padding: 2.5rem 2rem;
    }
}
