/**
 * Playtime Casino Rewards - Theme Stylesheet
 * @version 1.0.0
 * @prefix wff6c-
 */

/* CSS Variables */
:root {
    --wff6c-primary: #1a1a2e;
    --wff6c-secondary: #16213e;
    --wff6c-accent: #e94560;
    --wff6c-accent-light: #ff6b6b;
    --wff6c-gold: #ffd700;
    --wff6c-gold-dark: #daa520;
    --wff6c-text: #ffffff;
    --wff6c-text-muted: #a0a0a0;
    --wff6c-bg-dark: #0f0f1a;
    --wff6c-bg-card: #1e1e35;
    --wff6c-gradient: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    --wff6c-gradient-gold: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    --wff6c-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
    --wff6c-radius: 12px;
    --wff6c-radius-sm: 8px;
    --wff6c-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: var(--wff6c-bg-dark);
    color: var(--wff6c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--wff6c-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.wff6c-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    transition: var(--wff6c-transition);
}

.wff6c-header.wff6c-scrolled {
    background: rgba(15, 15, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.wff6c-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wff6c-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wff6c-logo img {
    height: 40px;
}

.wff6c-logo-text {
    font-size: 18px;
    font-weight: 700;
    background: var(--wff6c-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wff6c-header-actions {
    display: flex;
    gap: 12px;
}

.wff6c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--wff6c-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wff6c-transition);
}

.wff6c-btn-login {
    background: transparent;
    border: 2px solid var(--wff6c-accent);
    color: var(--wff6c-accent);
}

.wff6c-btn-login:hover {
    background: var(--wff6c-accent);
    color: var(--wff6c-text);
}

.wff6c-btn-register {
    background: var(--wff6c-gradient);
    color: var(--wff6c-text);
    box-shadow: var(--wff6c-shadow);
}

.wff6c-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.4);
}

.wff6c-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--wff6c-text);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.wff6c-hero {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--wff6c-primary) 0%, var(--wff6c-bg-dark) 100%);
    padding: 120px 16px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wff6c-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/ff6cf37f_1.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.wff6c-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.wff6c-hero-badge {
    display: inline-block;
    background: var(--wff6c-gradient-gold);
    color: var(--wff6c-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.wff6c-hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.wff6c-hero-title span {
    background: var(--wff6c-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wff6c-hero-desc {
    font-size: 16px;
    color: var(--wff6c-text-muted);
    margin-bottom: 30px;
}

.wff6c-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wff6c-btn-hero {
    padding: 14px 32px;
    font-size: 16px;
}

.wff6c-btn-secondary {
    background: transparent;
    border: 2px solid var(--wff6c-gold);
    color: var(--wff6c-gold);
}

.wff6c-btn-secondary:hover {
    background: var(--wff6c-gold);
    color: var(--wff6c-primary);
}

/* Section Styles */
.wff6c-section {
    padding: 60px 16px;
}

.wff6c-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wff6c-section-title span {
    background: var(--wff6c-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wff6c-section-subtitle {
    text-align: center;
    color: var(--wff6c-text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

/* Categories */
.wff6c-categories {
    background: var(--wff6c-secondary);
}

.wff6c-categories-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wff6c-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.wff6c-category-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    background: var(--wff6c-bg-card);
    border: 2px solid transparent;
    border-radius: var(--wff6c-radius-sm);
    color: var(--wff6c-text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--wff6c-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wff6c-category-btn:hover,
.wff6c-category-btn.wff6c-active {
    border-color: var(--wff6c-accent);
    color: var(--wff6c-accent);
    background: rgba(233, 69, 96, 0.1);
}

/* Games Grid */
.wff6c-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.wff6c-game-card {
    background: var(--wff6c-bg-card);
    border-radius: var(--wff6c-radius);
    overflow: hidden;
    transition: var(--wff6c-transition);
    cursor: pointer;
}

.wff6c-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wff6c-shadow);
}

.wff6c-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.wff6c-game-info {
    padding: 12px;
}

.wff6c-game-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--wff6c-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wff6c-game-type {
    font-size: 11px;
    color: var(--wff6c-text-muted);
    text-transform: capitalize;
}

/* Features */
.wff6c-features {
    background: var(--wff6c-secondary);
}

.wff6c-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.wff6c-feature-card {
    background: var(--wff6c-bg-card);
    padding: 24px;
    border-radius: var(--wff6c-radius);
    text-align: center;
    transition: var(--wff6c-transition);
    border: 1px solid transparent;
}

.wff6c-feature-card:hover {
    border-color: var(--wff6c-accent);
    transform: translateY(-3px);
}

.wff6c-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--wff6c-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.wff6c-feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.wff6c-feature-desc {
    font-size: 14px;
    color: var(--wff6c-text-muted);
}

/* FAQ */
.wff6c-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.wff6c-accordion-item {
    background: var(--wff6c-bg-card);
    border-radius: var(--wff6c-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.wff6c-accordion-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.wff6c-accordion-header i {
    transition: var(--wff6c-transition);
    color: var(--wff6c-accent);
}

.wff6c-accordion-item.wff6c-active .wff6c-accordion-header i {
    transform: rotate(180deg);
}

.wff6c-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wff6c-accordion-item.wff6c-active .wff6c-accordion-content {
    max-height: 500px;
}

.wff6c-accordion-body {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--wff6c-text-muted);
    line-height: 1.7;
}

/* Footer */
.wff6c-footer {
    background: var(--wff6c-primary);
    padding: 40px 16px 20px;
}

.wff6c-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.wff6c-footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wff6c-gold);
}

.wff6c-footer-links {
    list-style: none;
}

.wff6c-footer-links li {
    margin-bottom: 10px;
}

.wff6c-footer-links a {
    color: var(--wff6c-text-muted);
    font-size: 14px;
}

.wff6c-footer-links a:hover {
    color: var(--wff6c-accent);
}

.wff6c-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: var(--wff6c-text-muted);
}

/* Mobile Bottom Navigation */
.wff6c-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 26, 1) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(233, 69, 96, 0.3);
    padding: 8px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.wff6c-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    min-width: 60px;
    min-height: 50px;
    background: none;
    border: none;
    color: var(--wff6c-text-muted);
    font-size: 10px;
    cursor: pointer;
    transition: var(--wff6c-transition);
    border-radius: var(--wff6c-radius-sm);
}

.wff6c-nav-item i {
    font-size: 22px;
}

.wff6c-nav-item:hover,
.wff6c-nav-item.wff6c-active {
    color: var(--wff6c-accent);
    background: rgba(233, 69, 96, 0.1);
}

.wff6c-nav-item.wff6c-promo {
    color: var(--wff6c-gold);
}

.wff6c-nav-item.wff6c-promo:hover {
    color: var(--wff6c-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile Menu */
.wff6c-mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--wff6c-primary);
    z-index: 9999;
    transition: var(--wff6c-transition);
    padding: 20px;
    overflow-y: auto;
}

.wff6c-mobile-menu.wff6c-active {
    left: 0;
}

.wff6c-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(--wff6c-transition);
}

.wff6c-menu-overlay.wff6c-active {
    opacity: 1;
    visibility: visible;
}

.wff6c-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wff6c-menu-close {
    background: none;
    border: none;
    color: var(--wff6c-text);
    font-size: 24px;
    cursor: pointer;
}

.wff6c-menu-links {
    list-style: none;
}

.wff6c-menu-links li {
    margin-bottom: 15px;
}

.wff6c-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--wff6c-bg-card);
    border-radius: var(--wff6c-radius-sm);
    font-size: 15px;
    transition: var(--wff6c-transition);
}

.wff6c-menu-links a:hover {
    background: rgba(233, 69, 96, 0.2);
    color: var(--wff6c-accent);
}

/* Animations */
@keyframes procf3FadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main content padding for mobile nav */
@media (max-width: 768px) {
    main, .wff6c-main {
        padding-bottom: 80px;
    }

    .wff6c-menu-toggle {
        display: block;
    }

    .wff6c-header-actions .wff6c-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .wff6c-hero-title {
        font-size: 28px;
    }

    .wff6c-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wff6c-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .wff6c-bottom-nav {
        display: none;
    }

    .wff6c-header-actions {
        display: flex;
    }

    .wff6c-hero {
        padding: 140px 40px 100px;
    }

    .wff6c-hero-title {
        font-size: 48px;
    }

    .wff6c-games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1000px;
    }

    .wff6c-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1000px;
    }

    .wff6c-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
}

/* Utility Classes */
.wff6c-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.wff6c-text-center {
    text-align: center;
}

.wff6c-mb-20 {
    margin-bottom: 20px;
}

.wff6c-hidden-mobile {
    display: none;
}

@media (min-width: 769px) {
    .wff6c-hidden-mobile {
        display: block;
    }

    .wff6c-hidden-desktop {
        display: none;
    }
}
