/**
 * Bugs Bunny Gaming Platform - Main Stylesheet
 * File: css/style-f86c.css
 * Version: 1.0.0
 * Prefix: wf86c-
 */

/* ==================== CSS Variables ==================== */
:root {
    --wf86c-primary: #40E0D0;
    --wf86c-secondary: #B2DFDB;
    --wf86c-accent: #00FFFF;
    --wf86c-bg-dark: #262626;
    --wf86c-bg-light: #E0FFFF;
    --wf86c-text-light: #EEEEEE;
    --wf86c-text-dark: #262626;
    --wf86c-gradient-start: #40E0D0;
    --wf86c-gradient-end: #00FFFF;
    --wf86c-shadow: rgba(0, 255, 255, 0.2);
    --wf86c-radius: 8px;
    --wf86c-transition: all 0.3s ease;
}

/* ==================== Base Styles ==================== */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--wf86c-bg-dark);
    color: var(--wf86c-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--wf86c-primary);
    text-decoration: none;
    transition: var(--wf86c-transition);
}

a:hover {
    color: var(--wf86c-accent);
}

/* ==================== Container ==================== */
.wf86c-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wf86c-wrapper {
    padding: 1rem 0;
}

/* ==================== Header ==================== */
.wf86c-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--wf86c-bg-dark) 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--wf86c-primary);
    padding: 0.8rem 1rem;
}

.wf86c-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
}

.wf86c-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wf86c-logo img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.wf86c-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--wf86c-primary);
    background: linear-gradient(90deg, var(--wf86c-primary), var(--wf86c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wf86c-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.wf86c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--wf86c-radius);
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: var(--wf86c-transition);
    min-height: 36px;
    min-width: 44px;
}

.wf86c-btn-primary {
    background: linear-gradient(135deg, var(--wf86c-primary), var(--wf86c-accent));
    color: var(--wf86c-text-dark);
}

.wf86c-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--wf86c-shadow);
}

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

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

.wf86c-menu-toggle {
    background: transparent;
    border: none;
    color: var(--wf86c-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

/* ==================== Mobile Menu ==================== */
.wf86c-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--wf86c-bg-dark) 0%, #1a1a1a 100%);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.wf86c-menu-active {
    right: 0;
}

.wf86c-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--wf86c-transition);
}

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

.wf86c-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--wf86c-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.wf86c-menu-nav {
    margin-top: 3rem;
}

.wf86c-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--wf86c-text-light);
    border-bottom: 1px solid rgba(64, 224, 208, 0.2);
    font-size: 1.4rem;
}

.wf86c-menu-nav a:hover {
    color: var(--wf86c-primary);
    background: rgba(64, 224, 208, 0.1);
}

/* ==================== Main Content ==================== */
.wf86c-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* ==================== Hero Section ==================== */
.wf86c-hero {
    position: relative;
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.9), rgba(64, 224, 208, 0.1));
}

.wf86c-hero h1 {
    font-size: 2.4rem;
    margin: 0 0 1rem;
    background: linear-gradient(90deg, var(--wf86c-primary), var(--wf86c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wf86c-hero p {
    font-size: 1.4rem;
    margin: 0 0 1.5rem;
    color: var(--wf86c-text-light);
}

/* ==================== Carousel ==================== */
.wf86c-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--wf86c-radius);
    margin: 1rem 0;
}

.wf86c-slides {
    display: flex;
    transition: transform 0.5s ease;
}

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

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

.wf86c-slide img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.wf86c-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.wf86c-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--wf86c-transition);
}

.wf86c-indicator.wf86c-active {
    background: var(--wf86c-primary);
    transform: scale(1.2);
}

/* ==================== Game Categories ==================== */
.wf86c-section {
    padding: 1.5rem 1rem;
}

.wf86c-section-title {
    font-size: 1.8rem;
    color: var(--wf86c-primary);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--wf86c-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wf86c-section-title i {
    font-size: 2rem;
}

/* ==================== Game Grid ==================== */
.wf86c-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.wf86c-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--wf86c-transition);
    border-radius: var(--wf86c-radius);
    padding: 0.5rem;
}

.wf86c-game-item:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-3px);
}

.wf86c-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--wf86c-radius);
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--wf86c-transition);
}

.wf86c-game-item:hover img {
    border-color: var(--wf86c-primary);
}

.wf86c-game-name {
    font-size: 1rem;
    color: var(--wf86c-text-light);
    margin-top: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==================== Info Cards ==================== */
.wf86c-card {
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.8), rgba(64, 224, 208, 0.05));
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: var(--wf86c-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.wf86c-card h2,
.wf86c-card h3 {
    color: var(--wf86c-primary);
    margin: 0 0 1rem;
    font-size: 1.6rem;
}

.wf86c-card p {
    color: var(--wf86c-text-light);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.wf86c-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf86c-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(64, 224, 208, 0.1);
    color: var(--wf86c-text-light);
}

.wf86c-card li:last-child {
    border-bottom: none;
}

.wf86c-card li i {
    color: var(--wf86c-primary);
    margin-right: 0.5rem;
}

/* ==================== Promotional Links ==================== */
.wf86c-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wf86c-accent);
    font-weight: 600;
    padding: 0.3rem 0;
}

.wf86c-promo-link:hover {
    color: var(--wf86c-primary);
}

.wf86c-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--wf86c-primary), var(--wf86c-accent));
    color: var(--wf86c-text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: var(--wf86c-transition);
}

.wf86c-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px var(--wf86c-shadow);
}

/* ==================== Footer ==================== */
.wf86c-footer {
    background: linear-gradient(180deg, var(--wf86c-bg-dark), #1a1a1a);
    border-top: 2px solid var(--wf86c-primary);
    padding: 2rem 1rem;
    text-align: center;
}

.wf86c-footer-brand {
    margin-bottom: 1.5rem;
}

.wf86c-footer-brand p {
    color: var(--wf86c-text-light);
    font-size: 1.2rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.wf86c-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.wf86c-footer-links a {
    color: var(--wf86c-text-light);
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 4px;
}

.wf86c-footer-links a:hover {
    color: var(--wf86c-primary);
    border-color: var(--wf86c-primary);
}

.wf86c-footer-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1rem 0;
}

.wf86c-footer-buttons .wf86c-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

.wf86c-copyright {
    color: var(--wf86c-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(64, 224, 208, 0.2);
}

/* ==================== Bottom Navigation ==================== */
.wf86c-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--wf86c-bg-dark), #1a1a1a);
    border-top: 2px solid var(--wf86c-primary);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.wf86c-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    color: var(--wf86c-text-light);
    cursor: pointer;
    transition: var(--wf86c-transition);
    border-radius: 8px;
    padding: 0.3rem;
}

.wf86c-nav-item:hover {
    color: var(--wf86c-primary);
    background: rgba(64, 224, 208, 0.1);
}

.wf86c-nav-item.active {
    color: var(--wf86c-primary);
}

.wf86c-nav-item i,
.wf86c-nav-item .material-icons {
    font-size: 22px;
    margin-bottom: 2px;
}

.wf86c-nav-item span {
    font-size: 10px;
    text-align: center;
}

/* ==================== Scroll to Top ==================== */
.wf86c-scroll-top {
    position: fixed;
    bottom: 75px;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--wf86c-primary), var(--wf86c-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--wf86c-transition);
    z-index: 999;
    border: none;
    color: var(--wf86c-text-dark);
    font-size: 1.8rem;
}

.wf86c-scroll-top.wf86c-visible {
    opacity: 1;
    visibility: visible;
}

.wf86c-scroll-top:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--wf86c-shadow);
}

/* ==================== Responsive ==================== */
@media (min-width: 769px) {
    .wf86c-bottom-nav {
        display: none;
    }

    .wf86c-main {
        padding-bottom: 2rem;
    }

    .wf86c-container {
        max-width: 800px;
    }

    .wf86c-header-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .wf86c-main {
        padding-bottom: 80px;
    }
}

/* ==================== Utilities ==================== */
.wf86c-text-center {
    text-align: center;
}

.wf86c-mt-1 { margin-top: 1rem; }
.wf86c-mt-2 { margin-top: 2rem; }
.wf86c-mb-1 { margin-bottom: 1rem; }
.wf86c-mb-2 { margin-bottom: 2rem; }

.wf86c-flex {
    display: flex;
}

.wf86c-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf86c-gap-1 {
    gap: 1rem;
}

/* ==================== Animations ==================== */
@keyframes wf86c-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wf86c-glow {
    0%, 100% { box-shadow: 0 0 5px var(--wf86c-primary); }
    50% { box-shadow: 0 0 20px var(--wf86c-primary); }
}

.wf86c-animate-pulse {
    animation: wf86c-pulse 2s infinite;
}

.wf86c-animate-glow {
    animation: wf86c-glow 2s infinite;
}
