/**
 * Windream Website CSS Styles
 * All classes use w0cb3- prefix for namespace isolation
 * Mobile-first responsive design
 * @version 1.0.0
 */

/* CSS Variables - Color Palette */
:root {
    --w0cb3-primary: #FF69B4;
    --w0cb3-secondary: #FF8A80;
    --w0cb3-accent: #FA8072;
    --w0cb3-bg-dark: #0A0A0A;
    --w0cb3-gold: #FFD700;
    --w0cb3-text-light: #FFFFFF;
    --w0cb3-text-muted: #B0B0B0;
    --w0cb3-gradient-start: #FF69B4;
    --w0cb3-gradient-end: #FA8072;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--w0cb3-bg-dark);
    color: var(--w0cb3-text-light);
    line-height: 1.5;
    min-height: 100vh;
}

/* Container */
.w0cb3-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.w0cb3-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--w0cb3-bg-dark) 0%, #1A1A1A 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 105, 180, 0.3);
}

.w0cb3-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.w0cb3-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.w0cb3-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--w0cb3-primary), var(--w0cb3-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.w0cb3-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.w0cb3-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.w0cb3-btn-primary {
    background: linear-gradient(135deg, var(--w0cb3-primary), var(--w0cb3-accent));
    color: var(--w0cb3-text-light);
}

.w0cb3-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.w0cb3-btn-outline {
    background: transparent;
    border: 2px solid var(--w0cb3-gold);
    color: var(--w0cb3-gold);
}

.w0cb3-btn-outline:hover {
    background: var(--w0cb3-gold);
    color: var(--w0cb3-bg-dark);
}

.w0cb3-menu-toggle {
    background: transparent;
    border: none;
    color: var(--w0cb3-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.w0cb3-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1A1A1A 0%, var(--w0cb3-bg-dark) 100%);
    z-index: 9999;
    padding: 8rem 2rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.pro394-menu-active {
    right: 0;
}

.w0cb3-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: all 0.3s ease;
}

.pro394-overlay-active {
    opacity: 1;
    visibility: visible;
}

.w0cb3-nav-list {
    list-style: none;
}

.w0cb3-nav-item {
    margin-bottom: 1rem;
}

.w0cb3-nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--w0cb3-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.w0cb3-nav-link:hover {
    background: rgba(255, 105, 180, 0.2);
    color: var(--w0cb3-primary);
}

/* Main Content */
.w0cb3-main {
    padding-top: 7rem;
    padding-bottom: 8rem;
}

/* Carousel */
.w0cb3-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.w0cb3-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pro394-slide-active {
    opacity: 1;
}

.w0cb3-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Section Styles */
.w0cb3-section {
    margin-bottom: 3rem;
}

.w0cb3-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--w0cb3-primary);
    text-align: center;
    position: relative;
}

.w0cb3-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--w0cb3-primary), var(--w0cb3-gold));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* Game Grid */
.w0cb3-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.w0cb3-game-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.w0cb3-game-card:hover {
    transform: translateY(-3px);
    border-color: var(--w0cb3-primary);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.w0cb3-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.w0cb3-game-name {
    font-size: 1.1rem;
    padding: 0.6rem;
    text-align: center;
    color: var(--w0cb3-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Title */
.w0cb3-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--w0cb3-gold);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--w0cb3-primary);
}

/* Content Blocks */
.w0cb3-content-block {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.15);
}

.w0cb3-content-block h3 {
    font-size: 1.8rem;
    color: var(--w0cb3-primary);
    margin-bottom: 1rem;
}

.w0cb3-content-block p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--w0cb3-text-muted);
    margin-bottom: 1rem;
}

.w0cb3-text-link {
    color: var(--w0cb3-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.w0cb3-text-link:hover {
    color: var(--w0cb3-primary);
    text-decoration: underline;
}

/* Footer */
.w0cb3-footer {
    background: linear-gradient(180deg, #1A1A1A 0%, var(--w0cb3-bg-dark) 100%);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.w0cb3-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.w0cb3-footer-link {
    color: var(--w0cb3-text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.w0cb3-footer-link:hover {
    color: var(--w0cb3-primary);
}

.w0cb3-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.w0cb3-partner-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.w0cb3-partner-logo:hover {
    opacity: 1;
}

.w0cb3-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--w0cb3-text-muted);
}

/* Bottom Navigation */
.w0cb3-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, #1A1A1A 0%, var(--w0cb3-bg-dark) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
    padding: 0 0.5rem;
}

.w0cb3-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: transparent;
    border: none;
    color: var(--w0cb3-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.3rem;
}

.w0cb3-nav-btn:hover,
.w0cb3-nav-btn.active {
    color: var(--w0cb3-primary);
    transform: scale(1.1);
}

.w0cb3-nav-btn i,
.w0cb3-nav-btn .material-icons {
    font-size: 24px;
}

.w0cb3-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .w0cb3-bottom-nav {
        display: none;
    }

    .w0cb3-main {
        padding-bottom: 2rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .w0cb3-main {
        padding-bottom: 80px;
    }
}

/* Features List */
.w0cb3-features-list {
    list-style: none;
    padding: 0;
}

.w0cb3-features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    font-size: 1.4rem;
    color: var(--w0cb3-text-light);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.w0cb3-features-list li:last-child {
    border-bottom: none;
}

.w0cb3-features-list i {
    color: var(--w0cb3-gold);
    font-size: 1.6rem;
    margin-top: 0.2rem;
}

/* Promo Banner */
.w0cb3-promo-banner {
    background: linear-gradient(135deg, var(--w0cb3-primary), var(--w0cb3-accent));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.w0cb3-promo-banner h3 {
    font-size: 2rem;
    color: var(--w0cb3-text-light);
    margin-bottom: 1rem;
}

.w0cb3-promo-banner p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* RTP Stats */
.w0cb3-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.w0cb3-rtp-item {
    background: rgba(255, 105, 180, 0.1);
    border-radius: 1rem;
    padding: 1.2rem;
    text-align: center;
}

.w0cb3-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--w0cb3-gold);
}

.w0cb3-rtp-label {
    font-size: 1.1rem;
    color: var(--w0cb3-text-muted);
    margin-top: 0.3rem;
}

/* Desktop Header Navigation */
@media (min-width: 769px) {
    .w0cb3-header {
        padding: 1rem 3rem;
    }

    .w0cb3-menu-toggle {
        display: none;
    }

    .w0cb3-desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .w0cb3-desktop-nav a {
        color: var(--w0cb3-text-light);
        text-decoration: none;
        font-size: 1.4rem;
        transition: color 0.3s ease;
    }

    .w0cb3-desktop-nav a:hover {
        color: var(--w0cb3-primary);
    }
}

.w0cb3-desktop-nav {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 430px) {
    .w0cb3-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .w0cb3-game-name {
        font-size: 1rem;
    }
}
