/**
 * No Deposit Bonus - Main Stylesheet
 * Website: nodepositbonus.click
 * Prefix: wbb63-
 * Colors: #FFCC02 | #0C0C0C | #DDA0DD | #8B008B | #BA55D3
 */

/* CSS Variables */
:root {
    --wbb63-primary: #FFCC02;
    --wbb63-secondary: #BA55D3;
    --wbb63-accent: #8B008B;
    --wbb63-bg-dark: #0C0C0C;
    --wbb63-bg-light: #1a1a1a;
    --wbb63-text-light: #FFFFFF;
    --wbb63-text-muted: #DDA0DD;
    --wbb63-gradient: linear-gradient(135deg, #8B008B 0%, #BA55D3 50%, #FFCC02 100%);
    --wbb63-shadow: 0 4px 15px rgba(186, 85, 211, 0.3);
    --wbb63-radius: 12px;
    --wbb63-transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--wbb63-bg-dark);
    color: var(--wbb63-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    overflow-x: hidden;
}

a {
    color: var(--wbb63-primary);
    text-decoration: none;
    transition: var(--wbb63-transition);
}

a:hover {
    color: var(--wbb63-secondary);
}

/* Container */
.wbb63-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.wbb63-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--wbb63-bg-dark) 0%, rgba(12, 12, 12, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(186, 85, 211, 0.3);
    backdrop-filter: blur(10px);
}

.wbb63-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wbb63-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wbb63-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.wbb63-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--wbb63-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbb63-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wbb63-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wbb63-transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wbb63-btn-primary {
    background: var(--wbb63-gradient);
    color: var(--wbb63-bg-dark);
}

.wbb63-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--wbb63-shadow);
}

.wbb63-btn-outline {
    background: transparent;
    border: 2px solid var(--wbb63-primary);
    color: var(--wbb63-primary);
}

.wbb63-btn-outline:hover {
    background: var(--wbb63-primary);
    color: var(--wbb63-bg-dark);
}

.wbb63-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.wbb63-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wbb63-primary);
    transition: var(--wbb63-transition);
}

/* Mobile Menu */
.wbb63-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--wbb63-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.site63e-menu-active {
    right: 0;
}

.wbb63-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(186, 85, 211, 0.3);
}

.wbb63-mobile-menu-close {
    background: none;
    border: none;
    color: var(--wbb63-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.wbb63-mobile-menu-nav {
    list-style: none;
}

.wbb63-mobile-menu-nav li {
    margin-bottom: 1rem;
}

.wbb63-mobile-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--wbb63-text-light);
    border-radius: 8px;
    transition: var(--wbb63-transition);
}

.wbb63-mobile-menu-nav a:hover {
    background: rgba(186, 85, 211, 0.2);
    color: var(--wbb63-primary);
}

.wbb63-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--wbb63-transition);
}

.site63e-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.wbb63-main {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Carousel */
.wbb63-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--wbb63-radius);
    margin-bottom: 2rem;
}

.wbb63-slides {
    position: relative;
}

.wbb63-slide {
    display: none;
    cursor: pointer;
}

.wbb63-slide:first-child {
    display: block;
}

.wbb63-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--wbb63-radius);
}

.wbb63-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 0;
}

.wbb63-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 204, 2, 0.3);
    cursor: pointer;
    transition: var(--wbb63-transition);
}

.site63e-dot-active, .wbb63-dot:hover {
    background: var(--wbb63-primary);
}

/* Section Styles */
.wbb63-section {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.wbb63-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--wbb63-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wbb63-section-text {
    color: var(--wbb63-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Game Grid */
.wbb63-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.wbb63-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--wbb63-transition);
}

.wbb63-game-item:hover {
    transform: translateY(-5px);
}

.wbb63-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: var(--wbb63-transition);
}

.wbb63-game-item:hover img {
    border-color: var(--wbb63-primary);
    box-shadow: var(--wbb63-shadow);
}

.wbb63-game-name {
    font-size: 1.1rem;
    color: var(--wbb63-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Tabs */
.wbb63-category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--wbb63-primary);
}

.wbb63-category-title i {
    font-size: 2rem;
}

/* Promo Box */
.wbb63-promo-box {
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.3) 0%, rgba(186, 85, 211, 0.2) 100%);
    border: 1px solid rgba(186, 85, 211, 0.4);
    border-radius: var(--wbb63-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.wbb63-promo-box h3 {
    color: var(--wbb63-primary);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.wbb63-promo-box p {
    color: var(--wbb63-text-muted);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Features List */
.wbb63-features {
    display: grid;
    gap: 1rem;
}

.wbb63-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(186, 85, 211, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--wbb63-primary);
}

.wbb63-feature-item i {
    font-size: 2.4rem;
    color: var(--wbb63-primary);
    flex-shrink: 0;
}

.wbb63-feature-item h4 {
    font-size: 1.4rem;
    color: var(--wbb63-text-light);
    margin-bottom: 0.3rem;
}

.wbb63-feature-item p {
    font-size: 1.2rem;
    color: var(--wbb63-text-muted);
}

/* RTP Stats */
.wbb63-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wbb63-rtp-item {
    background: rgba(139, 0, 139, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
}

.wbb63-rtp-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--wbb63-primary);
}

.wbb63-rtp-label {
    font-size: 1.1rem;
    color: var(--wbb63-text-muted);
    margin-top: 0.3rem;
}

/* Footer */
.wbb63-footer {
    background: var(--wbb63-bg-light);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(186, 85, 211, 0.3);
}

.wbb63-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wbb63-footer-links a {
    color: var(--wbb63-text-muted);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(186, 85, 211, 0.1);
}

.wbb63-footer-links a:hover {
    color: var(--wbb63-primary);
    background: rgba(186, 85, 211, 0.2);
}

.wbb63-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wbb63-partners img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    opacity: 0.7;
    transition: var(--wbb63-transition);
}

.wbb63-partners img:hover {
    opacity: 1;
}

.wbb63-copyright {
    text-align: center;
    color: var(--wbb63-text-muted);
    font-size: 1.2rem;
}

/* Bottom Navigation */
.wbb63-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, var(--wbb63-bg-dark) 100%);
    border-top: 1px solid rgba(186, 85, 211, 0.4);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.wbb63-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: none;
    border: none;
    color: var(--wbb63-text-muted);
    cursor: pointer;
    transition: var(--wbb63-transition);
    border-radius: 12px;
}

.wbb63-nav-btn:hover, .wbb63-nav-btn.active {
    color: var(--wbb63-primary);
    background: rgba(255, 204, 2, 0.1);
}

.wbb63-nav-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

.wbb63-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* Desktop - Hide bottom nav */
@media (min-width: 769px) {
    .wbb63-bottom-nav {
        display: none;
    }

    .wbb63-main {
        padding-bottom: 2rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .wbb63-main {
        padding-bottom: 80px;
    }
}

/* Utility Classes */
.wbb63-text-center { text-align: center; }
.wbb63-text-primary { color: var(--wbb63-primary); }
.wbb63-text-muted { color: var(--wbb63-text-muted); }
.wbb63-mb-1 { margin-bottom: 1rem; }
.wbb63-mb-2 { margin-bottom: 2rem; }
.wbb63-mb-3 { margin-bottom: 3rem; }

/* Promo Link Styles */
.wbb63-promo-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--wbb63-gradient);
    color: var(--wbb63-bg-dark);
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--wbb63-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wbb63-promo-link:hover {
    transform: scale(1.05);
    box-shadow: var(--wbb63-shadow);
    color: var(--wbb63-bg-dark);
}

/* Card Styles */
.wbb63-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(186, 85, 211, 0.2);
    border-radius: var(--wbb63-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.wbb63-card-title {
    font-size: 1.6rem;
    color: var(--wbb63-primary);
    margin-bottom: 1rem;
}

/* FAQ Styles */
.wbb63-faq-item {
    background: rgba(139, 0, 139, 0.1);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.wbb63-faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wbb63-primary);
    margin-bottom: 0.5rem;
}

.wbb63-faq-answer {
    font-size: 1.3rem;
    color: var(--wbb63-text-muted);
    line-height: 1.6;
}

/* Tricks Component */
.wbb63-trick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(186, 85, 211, 0.1);
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.wbb63-trick-number {
    width: 30px;
    height: 30px;
    background: var(--wbb63-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--wbb63-bg-dark);
    flex-shrink: 0;
}

/* Achievement Badge */
.wbb63-achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 204, 2, 0.1) 0%, rgba(186, 85, 211, 0.1) 100%);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 204, 2, 0.2);
}

.wbb63-achievement-icon {
    width: 40px;
    height: 40px;
    background: var(--wbb63-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbb63-achievement-icon i {
    font-size: 2rem;
    color: var(--wbb63-bg-dark);
}
