/**
 * ArioPlay Com - Theme Stylesheet
 * Mobile-first design for Philippines market
 * Prefix: wbe62-
 * Max mobile width: 430px
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Primary colors - Dark gaming theme */
    --wbe62-primary: #1a1a2e;
    --wbe62-primary-light: #16213e;
    --wbe62-secondary: #0f3460;
    --wbe62-accent: #e94560;
    --wbe62-accent-light: #ff6b6b;
    --wbe62-gold: #ffd700;
    --wbe62-gold-dark: #b8860b;

    /* Background colors */
    --wbe62-bg-dark: #0a0a0f;
    --wbe62-bg-card: #1e1e30;
    --wbe62-bg-card-hover: #252540;
    --wbe62-bg-overlay: rgba(0, 0, 0, 0.85);

    /* Text colors */
    --wbe62-text-primary: #ffffff;
    --wbe62-text-secondary: #b8b8d0;
    --wbe62-text-muted: #8888a0;

    /* Borders */
    --wbe62-border-color: rgba(255, 255, 255, 0.1);
    --wbe62-border-radius: 12px;
    --wbe62-border-radius-sm: 8px;
    --wbe62-border-radius-lg: 16px;

    /* Shadows */
    --wbe62-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --wbe62-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --wbe62-shadow-glow: 0 0 20px rgba(233, 69, 96, 0.3);

    /* Transitions */
    --wbe62-transition: all 0.3s ease;
    --wbe62-transition-fast: all 0.15s ease;

    /* Spacing */
    --wbe62-spacing-xs: 4px;
    --wbe62-spacing-sm: 8px;
    --wbe62-spacing-md: 16px;
    --wbe62-spacing-lg: 24px;
    --wbe62-spacing-xl: 32px;

    /* Header height */
    --wbe62-header-height: 60px;
    --wbe62-bottom-nav-height: 64px;
}

/* ==================== Reset & Base ==================== */
* {
    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;
    background: var(--wbe62-bg-dark);
    color: var(--wbe62-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.wbe62-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--wbe62-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==================== Container ==================== */
.wbe62-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 var(--wbe62-spacing-md);
}

@media (min-width: 769px) {
    .wbe62-container {
        max-width: 1200px;
    }
}

/* ==================== Header ==================== */
.wbe62-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--wbe62-header-height);
    background: linear-gradient(180deg, var(--wbe62-primary) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--wbe62-transition);
}

.wbe62-header.wbe62-scrolled {
    box-shadow: var(--wbe62-shadow);
}

.wbe62-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 var(--wbe62-spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.wbe62-logo {
    display: flex;
    align-items: center;
    gap: var(--wbe62-spacing-sm);
}

.wbe62-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--wbe62-border-radius-sm);
}

.wbe62-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--wbe62-gold) 0%, var(--wbe62-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbe62-header-actions {
    display: flex;
    align-items: center;
    gap: var(--wbe62-spacing-sm);
}

.wbe62-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--wbe62-spacing-sm) var(--wbe62-spacing-md);
    border-radius: var(--wbe62-border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--wbe62-transition);
    white-space: nowrap;
}

.wbe62-btn-login {
    background: transparent;
    border: 1px solid var(--wbe62-accent);
    color: var(--wbe62-accent);
}

.wbe62-btn-login:hover {
    background: var(--wbe62-accent);
    color: var(--wbe62-text-primary);
}

.wbe62-btn-register {
    background: linear-gradient(135deg, var(--wbe62-accent) 0%, var(--wbe62-accent-light) 100%);
    color: var(--wbe62-text-primary);
    box-shadow: var(--wbe62-shadow-glow);
}

.wbe62-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}

.wbe62-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--wbe62-spacing-sm);
    cursor: pointer;
}

.wbe62-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--wbe62-text-primary);
    border-radius: 2px;
    transition: var(--wbe62-transition);
}

/* Desktop navigation */
@media (min-width: 769px) {
    .wbe62-menu-toggle {
        display: none;
    }

    .wbe62-desktop-nav {
        display: flex;
        align-items: center;
        gap: var(--wbe62-spacing-lg);
    }

    .wbe62-nav-link {
        color: var(--wbe62-text-secondary);
        font-weight: 500;
        transition: var(--wbe62-transition);
    }

    .wbe62-nav-link:hover {
        color: var(--wbe62-gold);
    }
}

@media (max-width: 768px) {
    .wbe62-desktop-nav {
        display: none;
    }
}

/* ==================== Mobile Menu ==================== */
.wbe62-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--wbe62-bg-overlay);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--wbe62-transition);
}

.wbe62-menu-overlay.wbe62-active {
    opacity: 1;
    visibility: visible;
}

.wbe62-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--wbe62-primary);
    z-index: 9999;
    padding: var(--wbe62-spacing-xl) var(--wbe62-spacing-lg);
    transition: var(--wbe62-transition);
    overflow-y: auto;
}

.wbe62-mobile-menu.wbe62-active {
    right: 0;
}

.wbe62-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--wbe62-spacing-xl);
}

.wbe62-mobile-menu-close {
    font-size: 1.5rem;
    color: var(--wbe62-text-muted);
    padding: var(--wbe62-spacing-sm);
}

.wbe62-mobile-menu-close:hover {
    color: var(--wbe62-text-primary);
}

.wbe62-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--wbe62-spacing-md);
}

.wbe62-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--wbe62-spacing-md);
    padding: var(--wbe62-spacing-md);
    border-radius: var(--wbe62-border-radius-sm);
    color: var(--wbe62-text-secondary);
    font-size: 1rem;
    transition: var(--wbe62-transition);
}

.wbe62-mobile-nav-link:hover {
    background: var(--wbe62-bg-card);
    color: var(--wbe62-text-primary);
}

.wbe62-mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: var(--wbe62-accent);
}

/* ==================== Main Content ==================== */
.wbe62-main {
    padding-top: var(--wbe62-header-height);
    min-height: 100vh;
}

@media (max-width: 768px) {
    .wbe62-main {
        padding-bottom: calc(var(--wbe62-bottom-nav-height) + var(--wbe62-spacing-lg));
    }
}

/* ==================== Hero Section ==================== */
.wbe62-hero {
    background: linear-gradient(135deg, var(--wbe62-primary) 0%, var(--wbe62-secondary) 50%, var(--wbe62-primary-light) 100%);
    padding: var(--wbe62-spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.wbe62-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wbe62-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.wbe62-hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--wbe62-spacing-sm);
    background: linear-gradient(135deg, var(--wbe62-gold) 0%, #fff 50%, var(--wbe62-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbe62-hero-subtitle {
    font-size: 0.9rem;
    color: var(--wbe62-text-secondary);
    margin-bottom: var(--wbe62-spacing-lg);
    line-height: 1.7;
}

.wbe62-hero-cta {
    display: flex;
    gap: var(--wbe62-spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.wbe62-btn-hero {
    padding: var(--wbe62-spacing-md) var(--wbe62-spacing-xl);
    font-size: 1rem;
    border-radius: var(--wbe62-border-radius);
}

/* ==================== Carousel ==================== */
.wbe62-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--wbe62-border-radius-lg);
    margin-bottom: var(--wbe62-spacing-lg);
}

.wbe62-carousel-slides {
    display: flex;
    position: relative;
}

.wbe62-carousel-slide {
    min-width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.wbe62-carousel-slide.wbe62-active {
    opacity: 1;
    position: relative;
}

.wbe62-carousel-slide img {
    width: 100%;
    border-radius: var(--wbe62-border-radius-lg);
}

.wbe62-carousel-dots {
    position: absolute;
    bottom: var(--wbe62-spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--wbe62-spacing-sm);
}

.wbe62-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: var(--wbe62-transition);
}

.wbe62-carousel-dot.wbe62-active {
    background: var(--wbe62-gold);
    transform: scale(1.2);
}

/* ==================== Category Tabs ==================== */
.wbe62-categories {
    padding: var(--wbe62-spacing-lg) 0;
}

.wbe62-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--wbe62-spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--wbe62-spacing-sm);
}

.wbe62-section-title i {
    color: var(--wbe62-accent);
}

.wbe62-tabs {
    display: flex;
    gap: var(--wbe62-spacing-sm);
    overflow-x: auto;
    padding-bottom: var(--wbe62-spacing-md);
    margin-bottom: var(--wbe62-spacing-lg);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wbe62-tabs::-webkit-scrollbar {
    display: none;
}

.wbe62-tab-btn {
    flex-shrink: 0;
    padding: var(--wbe62-spacing-sm) var(--wbe62-spacing-md);
    background: var(--wbe62-bg-card);
    border-radius: var(--wbe62-border-radius-sm);
    color: var(--wbe62-text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--wbe62-transition);
    white-space: nowrap;
}

.wbe62-tab-btn:hover {
    background: var(--wbe62-bg-card-hover);
    color: var(--wbe62-text-primary);
}

.wbe62-tab-btn.wbe62-active {
    background: linear-gradient(135deg, var(--wbe62-accent) 0%, var(--wbe62-accent-light) 100%);
    color: var(--wbe62-text-primary);
}

/* ==================== Game Grid ==================== */
.wbe62-tab-content {
    display: none;
}

.wbe62-tab-content.wbe62-active {
    display: block;
}

.wbe62-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wbe62-spacing-md);
}

@media (min-width: 769px) {
    .wbe62-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.wbe62-game-card {
    background: var(--wbe62-bg-card);
    border-radius: var(--wbe62-border-radius);
    overflow: hidden;
    transition: var(--wbe62-transition);
    cursor: pointer;
    position: relative;
}

.wbe62-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wbe62-shadow-lg);
}

.wbe62-game-card-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.wbe62-game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--wbe62-transition);
}

.wbe62-game-card:hover .wbe62-game-card-img img {
    transform: scale(1.1);
}

.wbe62-game-card-name {
    padding: var(--wbe62-spacing-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--wbe62-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wbe62-game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--wbe62-transition);
}

.wbe62-game-card:hover .wbe62-game-card-overlay {
    opacity: 1;
}

.wbe62-play-btn {
    background: var(--wbe62-accent);
    color: var(--wbe62-text-primary);
    padding: var(--wbe62-spacing-sm) var(--wbe62-spacing-md);
    border-radius: var(--wbe62-border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--wbe62-spacing-xs);
}

/* ==================== Features Section ==================== */
.wbe62-features {
    padding: var(--wbe62-spacing-xl) 0;
    background: linear-gradient(180deg, var(--wbe62-bg-dark) 0%, var(--wbe62-primary) 100%);
}

.wbe62-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wbe62-spacing-md);
}

@media (min-width: 769px) {
    .wbe62-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wbe62-feature-card {
    background: var(--wbe62-bg-card);
    border-radius: var(--wbe62-border-radius);
    padding: var(--wbe62-spacing-lg);
    text-align: center;
    transition: var(--wbe62-transition);
}

.wbe62-feature-card:hover {
    background: var(--wbe62-bg-card-hover);
    transform: translateY(-4px);
}

.wbe62-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--wbe62-spacing-md);
    background: linear-gradient(135deg, var(--wbe62-accent) 0%, var(--wbe62-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wbe62-feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--wbe62-spacing-sm);
}

.wbe62-feature-desc {
    font-size: 0.75rem;
    color: var(--wbe62-text-muted);
    line-height: 1.5;
}

/* ==================== CTA Section ==================== */
.wbe62-cta {
    padding: var(--wbe62-spacing-xl) 0;
    background: linear-gradient(135deg, var(--wbe62-accent) 0%, var(--wbe62-secondary) 100%);
    text-align: center;
}

.wbe62-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--wbe62-spacing-md);
}

.wbe62-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--wbe62-spacing-lg);
}

/* ==================== Footer ==================== */
.wbe62-footer {
    background: var(--wbe62-primary);
    padding: var(--wbe62-spacing-xl) 0;
}

.wbe62-footer-grid {
    display: grid;
    gap: var(--wbe62-spacing-lg);
    margin-bottom: var(--wbe62-spacing-xl);
}

@media (min-width: 769px) {
    .wbe62-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wbe62-footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--wbe62-spacing-md);
    color: var(--wbe62-gold);
}

.wbe62-footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--wbe62-spacing-sm);
}

.wbe62-footer-link {
    color: var(--wbe62-text-secondary);
    font-size: 0.875rem;
    transition: var(--wbe62-transition);
}

.wbe62-footer-link:hover {
    color: var(--wbe62-text-primary);
    padding-left: var(--wbe62-spacing-sm);
}

.wbe62-partners {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wbe62-spacing-md);
    justify-content: center;
    padding: var(--wbe62-spacing-lg) 0;
    border-top: 1px solid var(--wbe62-border-color);
    border-bottom: 1px solid var(--wbe62-border-color);
}

.wbe62-partner-logo {
    height: 32px;
    opacity: 0.7;
    transition: var(--wbe62-transition);
}

.wbe62-partner-logo:hover {
    opacity: 1;
}

.wbe62-footer-bottom {
    text-align: center;
    padding-top: var(--wbe62-spacing-lg);
}

.wbe62-copyright {
    font-size: 0.75rem;
    color: var(--wbe62-text-muted);
}

/* ==================== Bottom Navigation ==================== */
.wbe62-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--wbe62-bottom-nav-height);
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, var(--wbe62-primary) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--wbe62-border-color);
    padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 769px) {
    .wbe62-bottom-nav {
        display: none;
    }
}

.wbe62-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: var(--wbe62-spacing-xs);
    color: var(--wbe62-text-muted);
    transition: var(--wbe62-transition);
    border-radius: var(--wbe62-border-radius-sm);
}

.wbe62-nav-item:hover,
.wbe62-nav-item.wbe62-active {
    color: var(--wbe62-gold);
}

.wbe62-nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
}

.wbe62-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

.wbe62-nav-item.wbe62-active {
    background: rgba(255, 215, 0, 0.1);
}

/* ==================== Toast Notifications ==================== */
.wbe62-toast {
    position: fixed;
    bottom: calc(var(--wbe62-bottom-nav-height) + var(--wbe62-spacing-lg));
    left: 50%;
    transform: translateX(-50%);
    background: var(--wbe62-bg-card);
    padding: var(--wbe62-spacing-md) var(--wbe62-spacing-lg);
    border-radius: var(--wbe62-border-radius);
    box-shadow: var(--wbe62-shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--wbe62-spacing-md);
    z-index: 9998;
    animation: wbe62-toast-in 0.3s ease;
}

.wbe62-toast-fade {
    animation: wbe62-toast-out 0.3s ease forwards;
}

@keyframes wbe62-toast-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes wbe62-toast-out {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

.wbe62-toast-success {
    border-left: 3px solid #4caf50;
}

.wbe62-toast-error {
    border-left: 3px solid var(--wbe62-accent);
}

.wbe62-toast-info {
    border-left: 3px solid #2196f3;
}

.wbe62-toast-close {
    color: var(--wbe62-text-muted);
    padding: var(--wbe62-spacing-xs);
}

.wbe62-toast-close:hover {
    color: var(--wbe62-text-primary);
}

/* ==================== Utility Classes ==================== */
.wbe62-text-center {
    text-align: center;
}

.wbe62-hidden-mobile {
    display: none;
}

@media (min-width: 769px) {
    .wbe62-hidden-mobile {
        display: block;
    }

    .wbe62-hidden-desktop {
        display: none;
    }
}

.wbe62-loaded {
    animation: wbe62-fade-in 0.3s ease;
}

@keyframes wbe62-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== Page Content Styles ==================== */
.wbe62-page-content {
    padding: var(--wbe62-spacing-xl) 0;
}

.wbe62-page-header {
    margin-bottom: var(--wbe62-spacing-xl);
}

.wbe62-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--wbe62-spacing-md);
    color: var(--wbe62-gold);
}

.wbe62-page-desc {
    font-size: 0.9rem;
    color: var(--wbe62-text-secondary);
    line-height: 1.8;
}

.wbe62-content-section {
    background: var(--wbe62-bg-card);
    border-radius: var(--wbe62-border-radius);
    padding: var(--wbe62-spacing-lg);
    margin-bottom: var(--wbe62-spacing-lg);
}

.wbe62-content-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--wbe62-spacing-md);
    color: var(--wbe62-text-primary);
}

.wbe62-content-section p {
    font-size: 0.875rem;
    color: var(--wbe62-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--wbe62-spacing-md);
}

.wbe62-content-section ul {
    padding-left: var(--wbe62-spacing-lg);
    margin-bottom: var(--wbe62-spacing-md);
}

.wbe62-content-section li {
    font-size: 0.875rem;
    color: var(--wbe62-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--wbe62-spacing-sm);
    position: relative;
}

.wbe62-content-section li::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--wbe62-spacing-lg));
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--wbe62-accent);
    border-radius: 50%;
}

.wbe62-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: var(--wbe62-spacing-sm);
    color: var(--wbe62-gold);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--wbe62-transition);
}

.wbe62-cta-inline:hover {
    color: var(--wbe62-accent);
}

/* Payment methods */
.wbe62-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wbe62-spacing-md);
    margin-top: var(--wbe62-spacing-md);
}

.wbe62-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--wbe62-spacing-xs);
    background: rgba(255, 215, 0, 0.1);
    padding: var(--wbe62-spacing-sm) var(--wbe62-spacing-md);
    border-radius: var(--wbe62-border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wbe62-gold);
}
