/**
 * Bet100 - Main Stylesheet
 * Website: bet100.sbs
 * Language: en-PH
 * Color Palette: #FF4500 | #FFB6C1 | #D2691E | #2E4057 | #F08080
 */

/* CSS Variables */
:root {
    --w011f-primary: #FF4500;
    --w011f-secondary: #D2691E;
    --w011f-accent: #FFB6C1;
    --w011f-bg: #2E4057;
    --w011f-bg-dark: #1a2636;
    --w011f-bg-light: #3d5470;
    --w011f-text: #ffffff;
    --w011f-text-light: #F08080;
    --w011f-text-muted: #b8c5d6;
    --w011f-border: #4a6380;
    --w011f-success: #28a745;
    --w011f-warning: #ffc107;
}

/* Reset & Base */
* {
    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(--w011f-bg);
    color: var(--w011f-text);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.w011f-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* Header */
.w011f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--w011f-bg-dark) 0%, var(--w011f-bg) 100%);
    padding: 0.8rem 1rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--w011f-border);
}

.w011f-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.w011f-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.w011f-logo img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.w011f-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--w011f-primary);
    text-shadow: 0 0 10px rgba(255,69,0,0.3);
}

.w011f-header-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.w011f-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.w011f-btn-primary {
    background: linear-gradient(135deg, var(--w011f-primary) 0%, #ff6a33 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255,69,0,0.4);
}

.w011f-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,69,0,0.5);
}

.w011f-btn-secondary {
    background: transparent;
    color: var(--w011f-text);
    border: 2px solid var(--w011f-primary);
}

.w011f-btn-secondary:hover {
    background: var(--w011f-primary);
}

.w011f-menu-toggle {
    background: none;
    border: none;
    color: var(--w011f-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
}

/* Mobile Menu */
.w011f-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--w011f-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 6rem 1.5rem 2rem;
    overflow-y: auto;
}

.w011f-menu-active {
    right: 0;
}

.w011f-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--w011f-text);
    font-size: 2.4rem;
    cursor: pointer;
}

.w011f-nav-list {
    list-style: none;
}

.w011f-nav-item {
    border-bottom: 1px solid var(--w011f-border);
}

.w011f-nav-link {
    display: block;
    padding: 1.2rem 0;
    color: var(--w011f-text);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.w011f-nav-link:hover {
    color: var(--w011f-primary);
}

/* Overlay */
.w011f-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;
}

.w011f-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.w011f-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Carousel/Slider */
.w011f-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.w011f-slide {
    display: none;
    width: 100%;
    cursor: pointer;
}

.w011f-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.w011f-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 0;
}

.w011f-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--w011f-border);
    cursor: pointer;
    transition: all 0.3s;
}

.w011f-dot-active,
.w011f-dot:hover {
    background: var(--w011f-primary);
}

/* Sections */
.w011f-section {
    padding: 1.5rem 0;
}

.w011f-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--w011f-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.w011f-section-title i {
    font-size: 2rem;
}

/* Game Grid */
.w011f-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.w011f-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.w011f-game-item:hover {
    transform: scale(1.05);
}

.w011f-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--w011f-border);
    transition: border-color 0.3s;
}

.w011f-game-item:hover .w011f-game-img {
    border-color: var(--w011f-primary);
}

.w011f-game-name {
    font-size: 1rem;
    color: var(--w011f-text);
    margin-top: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category Tabs */
.w011f-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--w011f-accent);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--w011f-primary);
}

/* Cards */
.w011f-card {
    background: var(--w011f-bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--w011f-border);
}

.w011f-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--w011f-primary);
    margin-bottom: 0.8rem;
}

.w011f-card-text {
    font-size: 1.3rem;
    color: var(--w011f-text-muted);
    line-height: 1.6;
}

/* Features List */
.w011f-features {
    display: grid;
    gap: 1rem;
}

.w011f-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--w011f-bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--w011f-primary);
}

.w011f-feature-icon {
    font-size: 2.4rem;
    color: var(--w011f-primary);
}

.w011f-feature-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--w011f-text);
}

.w011f-feature-content p {
    font-size: 1.2rem;
    color: var(--w011f-text-muted);
}

/* Promotional Links */
.w011f-promo-link {
    color: var(--w011f-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.w011f-promo-link:hover {
    color: var(--w011f-text-light);
    text-decoration: underline;
}

/* Footer */
.w011f-footer {
    background: var(--w011f-bg-dark);
    padding: 2rem 1rem;
    border-top: 1px solid var(--w011f-border);
}

.w011f-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.w011f-footer-link {
    color: var(--w011f-text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.w011f-footer-link:hover {
    color: var(--w011f-primary);
    background: var(--w011f-bg-light);
}

.w011f-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.w011f-partner-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.w011f-partner-img:hover {
    opacity: 1;
}

.w011f-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--w011f-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--w011f-border);
}

/* Mobile Bottom Navigation */
.w011f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--w011f-bg) 0%, var(--w011f-bg-dark) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    z-index: 1000;
    border-top: 1px solid var(--w011f-border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.w011f-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(--w011f-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.w011f-nav-btn:hover,
.w011f-nav-btn-active {
    color: var(--w011f-primary);
    transform: scale(1.1);
}

.w011f-nav-btn i,
.w011f-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.w011f-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .w011f-bottom-nav {
        display: none;
    }
}

/* Add bottom padding for mobile nav clearance */
@media (max-width: 768px) {
    .w011f-main {
        padding-bottom: 80px;
    }
}

/* H1 Title */
.w011f-h1-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--w011f-text);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.3;
}

/* Text Styles */
.w011f-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--w011f-text-muted);
    margin-bottom: 1rem;
}

.w011f-text-highlight {
    color: var(--w011f-primary);
    font-weight: 600;
}

/* RTP Table */
.w011f-rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.w011f-rtp-table th,
.w011f-rtp-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--w011f-border);
}

.w011f-rtp-table th {
    background: var(--w011f-bg-dark);
    color: var(--w011f-primary);
}

.w011f-rtp-table tr:hover {
    background: var(--w011f-bg-light);
}

/* FAQ Accordion */
.w011f-faq-item {
    background: var(--w011f-bg-light);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.w011f-faq-question {
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--w011f-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w011f-faq-answer {
    padding: 0 1.2rem 1rem;
    font-size: 1.2rem;
    color: var(--w011f-text-muted);
    line-height: 1.6;
}

/* Utilities */
.w011f-text-center { text-align: center; }
.w011f-mb-1 { margin-bottom: 0.5rem; }
.w011f-mb-2 { margin-bottom: 1rem; }
.w011f-mb-3 { margin-bottom: 1.5rem; }
.w011f-mt-2 { margin-top: 1rem; }
.w011f-mt-3 { margin-top: 1.5rem; }

/* Promo Banner */
.w011f-promo-banner {
    background: linear-gradient(135deg, var(--w011f-primary) 0%, var(--w011f-secondary) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.w011f-promo-banner h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.5rem;
}

.w011f-promo-banner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

/* Achievement Badge */
.w011f-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--w011f-bg-light);
    border-radius: 20px;
    font-size: 1.1rem;
    color: var(--w011f-accent);
    border: 1px solid var(--w011f-border);
}

/* Touch feedback */
.w011f-touch {
    transition: transform 0.1s ease;
}

.w011f-touch-active {
    transform: scale(0.95);
}
