/* JLJL77 Main Stylesheet */
/* Prefix: wb1ee- */

:root {
    /* Color Scheme */
    --wb1ee-primary-color: #DC143C;
    --wb1ee-secondary-color: #696969;
    --wb1ee-accent-color: #A0522D;
    --wb1ee-background-color: #1B263B;
    --wb1ee-text-color: #FAFAFA;
    --wb1ee-light-color: #FFDEAD;

    /* Typography */
    --wb1ee-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    /* Spacing */
    --wb1ee-spacing-xs: 0.25rem;
    --wb1ee-spacing-sm: 0.5rem;
    --wb1ee-spacing-md: 1rem;
    --wb1ee-spacing-lg: 1.5rem;
    --wb1ee-spacing-xl: 2rem;

    /* Border Radius */
    --wb1ee-border-radius-sm: 0.25rem;
    --wb1ee-border-radius-md: 0.5rem;
    --wb1ee-border-radius-lg: 0.75rem;

    /* Box Shadow */
    --wb1ee-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --wb1ee-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --wb1ee-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--wb1ee-font-family);
    background-color: var(--wb1ee-background-color);
    color: var(--wb1ee-text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.wb1ee-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--wb1ee-background-color);
    box-shadow: var(--wb1ee-shadow-md);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.wb1ee-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--wb1ee-spacing-sm) 0;
    min-height: 60px;
}

.wb1ee-logo {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--wb1ee-text-color);
    text-decoration: none;
}

.wb1ee-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--wb1ee-border-radius-sm);
    object-fit: cover;
}

.wb1ee-nav-buttons {
    display: flex;
    gap: var(--wb1ee-spacing-sm);
}

.wb1ee-nav-btn {
    padding: var(--wb1ee-spacing-sm) var(--wb1ee-spacing-md);
    background-color: var(--wb1ee-primary-color);
    color: var(--wb1ee-text-color);
    border: none;
    border-radius: var(--wb1ee-border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.wb1ee-nav-btn:hover {
    background-color: #B91C1C;
    transform: translateY(-1px);
}

.wb1ee-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--wb1ee-text-color);
    font-size: 1.25rem;
    cursor: pointer;
    padding: var(--wb1ee-spacing-sm);
}

/* Mobile Menu */
.wb1ee-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(27, 38, 59, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.wb1ee-mobile-menu.active {
    transform: translateX(0);
}

.wb1ee-mobile-menu-inner {
    flex: 1;
    padding: var(--wb1ee-spacing-lg);
    overflow-y: auto;
}

.wb1ee-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--wb1ee-spacing-lg);
    padding-bottom: var(--wb1ee-spacing-md);
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.wb1ee-menu-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.wb1ee-menu-close {
    background: none;
    border: none;
    color: var(--wb1ee-text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--wb1ee-spacing-sm);
}

.wb1ee-menu-item {
    display: block;
    color: var(--wb1ee-text-color);
    text-decoration: none;
    padding: var(--wb1ee-spacing-md);
    border-radius: var(--wb1ee-border-radius-md);
    margin-bottom: var(--wb1ee-spacing-sm);
    transition: all 0.3s ease;
    font-weight: 500;
}

.wb1ee-menu-item:hover {
    background-color: rgba(250, 250, 250, 0.1);
    padding-left: var(--wb1ee-spacing-lg);
}

/* Main Content */
main {
    flex: 1;
    padding: var(--wb1ee-spacing-md);
    padding-bottom: 80px; /* Space for bottom nav */
    overflow-y: auto;
}

/* Typography */
h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--wb1ee-spacing-md);
    color: var(--wb1ee-text-color);
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--wb1ee-spacing-md);
    color: var(--wb1ee-text-color);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-text-color);
}

/* Sections */
.wb1ee-section {
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-card {
    background-color: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: var(--wb1ee-border-radius-lg);
    padding: var(--wb1ee-spacing-lg);
    box-shadow: var(--wb1ee-shadow-sm);
}

.wb1ee-section-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
}

.wb1ee-section-title i {
    color: var(--wb1ee-primary-color);
    font-size: 1.25rem;
}

.wb1ee-section-content {
    color: var(--wb1ee-text-color);
    line-height: 1.6;
}

/* Text Alignment */
.wb1ee-text-center {
    text-align: center;
}

/* Margin Utilities */
.wb1ee-mt-sm { margin-top: var(--wb1ee-spacing-sm); }
.wb1ee-mt-md { margin-top: var(--wb1ee-spacing-md); }
.wb1ee-mt-lg { margin-top: var(--wb1ee-spacing-lg); }
.wb1ee-mt-xl { margin-top: var(--wb1ee-spacing-xl); }

.wb1ee-mb-sm { margin-bottom: var(--wb1ee-spacing-sm); }
.wb1ee-mb-md { margin-bottom: var(--wb1ee-spacing-md); }
.wb1ee-mb-lg { margin-bottom: var(--wb1ee-spacing-lg); }
.wb1ee-mb-xl { margin-bottom: var(--wb1ee-spacing-xl); }

/* Buttons */
.wb1ee-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    padding: var(--wb1ee-spacing-md) var(--wb1ee-spacing-lg);
    background-color: var(--wb1ee-primary-color);
    color: var(--wb1ee-text-color);
    border: none;
    border-radius: var(--wb1ee-border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.wb1ee-btn:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: var(--wb1ee-shadow-md);
}

.wb1ee-btn-large {
    padding: var(--wb1ee-spacing-lg) var(--wb1ee-spacing-xl);
    font-size: 1.125rem;
}

.wb1ee-btn-outline {
    background-color: transparent;
    border: 2px solid var(--wb1ee-primary-color);
    color: var(--wb1ee-primary-color);
}

.wb1ee-btn-outline:hover {
    background-color: var(--wb1ee-primary-color);
    color: var(--wb1ee-text-color);
}

/* Feature Grid */
.wb1ee-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-feature {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
}

.wb1ee-feature i {
    font-size: 2.5rem;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-primary-color);
}

/* Game Stats */
.wb1ee-game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--wb1ee-spacing-md);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-game-stat {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
}

.wb1ee-game-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wb1ee-primary-color);
    margin-bottom: var(--wb1ee-spacing-xs);
}

.wb1ee-game-stat-label {
    font-size: 0.875rem;
    color: var(--wb1ee-secondary-color);
}

/* Footer */
.wb1ee-footer {
    background-color: rgba(27, 38, 59, 0.95);
    padding: var(--wb1ee-spacing-lg) 0;
    margin-top: auto;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
}

.wb1ee-footer-content {
    text-align: center;
}

.wb1ee-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wb1ee-spacing-md);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-footer-link {
    color: var(--wb1ee-text-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.wb1ee-footer-link:hover {
    color: var(--wb1ee-primary-color);
}

.wb1ee-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-partner-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--wb1ee-border-radius-sm);
    opacity: 0.7;
}

.wb1ee-copyright {
    color: var(--wb1ee-secondary-color);
    font-size: 0.875rem;
    line-height: 1.5;
}

.wb1ee-copyright a {
    color: var(--wb1ee-primary-color);
    text-decoration: none;
}

/* Bottom Navigation */
.wb1ee-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--wb1ee-background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

@media (max-width: 768px) {
    .wb1ee-bottom-nav {
        display: block;
    }
}

.wb1ee-bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: var(--wb1ee-spacing-sm) 0;
    min-height: 64px;
}

.wb1ee-bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    text-decoration: none;
    color: var(--wb1ee-secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.wb1ee-bottom-nav-btn.active {
    color: var(--wb1ee-primary-color);
}

.wb1ee-bottom-nav-btn:hover {
    color: var(--wb1ee-primary-color);
}

.wb1ee-bottom-nav-icon {
    font-size: 24px;
    margin-bottom: var(--wb1ee-spacing-xs);
}

.wb1ee-bottom-nav-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Loading Spinner */
.wb1ee-loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.wb1ee-loading-spinner i {
    font-size: 3rem;
    color: var(--wb1ee-primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notifications */
.wb1ee-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--wb1ee-spacing-md) var(--wb1ee-spacing-lg);
    border-radius: var(--wb1ee-border-radius-md);
    box-shadow: var(--wb1ee-shadow-lg);
    z-index: 10001;
    max-width: 300px;
    animation: slideIn 0.3s ease;
}

.wb1ee-notification-content {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
}

.wb1ee-notification-success {
    background-color: #10b981;
    color: white;
}

.wb1ee-notification-error {
    background-color: #ef4444;
    color: white;
}

.wb1ee-notification-info {
    background-color: #3b82f6;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Game Grid */
.wb1ee-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-game-card {
    background-color: rgba(250, 250, 250, 0.05);
    border: 1px solid rgba(250, 250, 250, 0.1);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wb1ee-game-card:hover {
    background-color: rgba(250, 250, 250, 0.1);
    transform: translateY(-2px);
}

.wb1ee-game-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--wb1ee-border-radius-sm);
    margin-bottom: var(--wb1ee-spacing-xs);
}

.wb1ee-game-name {
    font-size: 0.75rem;
    color: var(--wb1ee-text-color);
    font-weight: 500;
}

/* Category Grid */
.wb1ee-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-category {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
}

.wb1ee-category i {
    font-size: 2rem;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-primary-color);
}

/* Performance Grid */
.wb1ee-performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-performance {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
}

.wb1ee-performance i {
    font-size: 2rem;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-primary-color);
}

/* Success Stories Grid */
.wb1ee-success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-success {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
}

.wb1ee-success i {
    font-size: 1.5rem;
    margin-bottom: var(--wb1ee-spacing-sm);
}

.wb1ee-success h3 {
    font-size: 1rem;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-primary-color);
}

/* App Stats */
.wb1ee-app-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--wb1ee-spacing-md);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-stat {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
}

.wb1ee-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wb1ee-primary-color);
    margin-bottom: var(--wb1ee-spacing-xs);
}

.wb1ee-stat-label {
    font-size: 0.875rem;
    color: var(--wb1ee-secondary-color);
}

/* Compatibility */
.wb1ee-compatibility {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-compatible {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
}

.wb1ee-compatible i {
    font-size: 2rem;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-primary-color);
}

/* Requirements */
.wb1ee-requirements {
    display: grid;
    gap: var(--wb1ee-spacing-lg);
}

.wb1ee-requirement {
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
}

/* Guide */
.wb1ee-guide {
    display: grid;
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-guide-step {
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    border-left: 4px solid var(--wb1ee-primary-color);
}

/* Benefits */
.wb1ee-benefits {
    list-style: none;
    padding: 0;
}

.wb1ee-benefits li {
    padding: var(--wb1ee-spacing-sm) 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.wb1ee-benefits li:before {
    content: "✓";
    color: var(--wb1ee-primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Category */
.wb1ee-category {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
}

.wb1ee-category i {
    font-size: 2rem;
    margin-bottom: var(--wb1ee-spacing-sm);
    color: var(--wb1ee-primary-color);
}

/* Player Stats */
.wb1ee-player-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--wb1ee-spacing-md);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-player-stat {
    text-align: center;
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
}

.wb1ee-player-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wb1ee-primary-color);
    margin-bottom: var(--wb1ee-spacing-xs);
}

.wb1ee-player-stat-label {
    font-size: 0.75rem;
    color: var(--wb1ee-secondary-color);
    text-transform: uppercase;
}

/* Strategy */
.wb1ee-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-strategy {
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    border-left: 4px solid var(--wb1ee-primary-color);
}

/* Tips */
.wb1ee-tips {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-tips-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Tips Grid */
.wb1ee-tips-grid {
    display: grid;
    gap: var(--wb1ee-spacing-md);
}

.wb1ee-tip {
    display: flex;
    align-items: start;
    gap: var(--wb1ee-spacing-sm);
    padding: var(--wb1ee-spacing-md);
    background-color: rgba(250, 250, 250, 0.03);
    border-radius: var(--wb1ee-border-radius-md);
}

.wb1ee-tip i {
    color: var(--wb1ee-primary-color);
    font-size: 1.25rem;
    margin-top: var(--wb1ee-spacing-xs);
}

/* RTP Stats */
.wb1ee-rtp-stats {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-rtp-stats-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Winning Chances */
.wb1ee-winning-chances {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-winning-chances-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Jackpot Progress */
.wb1ee-jackpot-progress {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-jackpot-progress-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Prize Pools */
.wb1ee-prize-pools {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-prize-pools-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Special Features */
.wb1ee-special-features {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-special-features-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Bonus Features */
.wb1ee-bonus-features {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-bonus-features-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Payment Methods */
.wb1ee-payment-methods {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-payment-methods-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Registration Steps */
.wb1ee-registration-steps {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-registration-steps-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Login Methods */
.wb1ee-login-methods {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-login-methods-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Contact Info */
.wb1ee-contact-info {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-contact-info-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Customer Support */
.wb1ee-customer-support {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-customer-support-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Features Overview */
.wb1ee-features-overview {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-features-overview-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Mobile Features */
.wb1ee-mobile-features {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-mobile-features-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Desktop Features */
.wb1ee-desktop-features {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-desktop-features-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Gaming Experience */
.wb1ee-gaming-experience {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-gaming-experience-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Game Selection */
.wb1ee-game-selection {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-game-selection-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Gaming Technology */
.wb1ee-gaming-technology {
    background-color: rgba(250, 250, 250, 0.05);
    border-radius: var(--wb1ee-border-radius-md);
    padding: var(--wb1ee-spacing-lg);
    margin-bottom: var(--wb1ee-spacing-lg);
}

.wb1ee-gaming-technology-title {
    display: flex;
    align-items: center;
    gap: var(--wb1ee-spacing-sm);
    margin-bottom: var(--wb1ee-spacing-md);
    font-weight: 600;
    color: var(--wb1ee-primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wb1ee-container {
        max-width: 100%;
    }

    main {
        padding-bottom: 80px;
    }

    .wb1ee-bottom-nav {
        display: block;
    }

    .wb1ee-mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .wb1ee-mobile-menu-btn {
        display: none;
    }
}