/**
 * Okebet9 Com Login - Layout Stylesheet
 * Mobile-first responsive design
 * All classes use 'v3f2-' prefix for namespace isolation
 * Color palette: #F5DEB3 | #95A5A6 | #0F0F23 | #D2691E | #FFBF00
 */

/* CSS Variables */
:root {
    --v3f2-primary: #FFBF00;
    --v3f2-secondary: #D2691E;
    --v3f2-bg-dark: #0F0F23;
    --v3f2-bg-medium: #1a1a3a;
    --v3f2-text-light: #F5DEB3;
    --v3f2-text-muted: #95A5A6;
    --v3f2-accent: #FFBF00;
    --v3f2-border: rgba(245, 222, 179, 0.2);
    --v3f2-shadow: rgba(0, 0, 0, 0.3);
    --v3f2-gradient: linear-gradient(135deg, #0F0F23 0%, #1a1a3a 100%);
}

/* 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: var(--v3f2-gradient);
    color: var(--v3f2-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
}

/* Container */
.v3f2-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1rem;
}

.v3f2-wrapper {
    padding: 1rem;
}

/* Header */
.v3f2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--v3f2-bg-dark);
    border-bottom: 1px solid var(--v3f2-border);
    padding: 0.8rem 1rem;
}

.v3f2-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
}

.v3f2-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.v3f2-logo img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.v3f2-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--v3f2-primary);
}

.v3f2-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v3f2-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;
}

.v3f2-btn-register {
    background: var(--v3f2-primary);
    color: var(--v3f2-bg-dark);
}

.v3f2-btn-register:hover {
    background: #e6ac00;
    transform: scale(1.05);
}

.v3f2-btn-login {
    background: transparent;
    border: 2px solid var(--v3f2-secondary);
    color: var(--v3f2-secondary);
}

.v3f2-btn-login:hover {
    background: var(--v3f2-secondary);
    color: var(--v3f2-text-light);
}

.v3f2-menu-toggle {
    background: none;
    border: none;
    color: var(--v3f2-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.v3f2-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v3f2-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.v3f2-menu-active {
    right: 0;
}

.v3f2-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;
}

.v3f2-overlay-active {
    opacity: 1;
    visibility: visible;
}

.v3f2-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--v3f2-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.v3f2-menu-nav {
    margin-top: 3rem;
}

.v3f2-menu-link {
    display: block;
    padding: 1rem 0;
    color: var(--v3f2-text-light);
    text-decoration: none;
    font-size: 1.4rem;
    border-bottom: 1px solid var(--v3f2-border);
    transition: color 0.3s ease;
}

.v3f2-menu-link:hover {
    color: var(--v3f2-primary);
}

/* Main Content */
.v3f2-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Slider */
.v3f2-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.v3f2-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.v3f2-slide {
    min-width: 100%;
    cursor: pointer;
}

.v3f2-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.v3f2-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.v3f2-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.v3f2-dot-active {
    background: var(--v3f2-primary);
}

/* Section Titles */
.v3f2-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v3f2-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.v3f2-section-subtitle {
    font-size: 1.2rem;
    color: var(--v3f2-text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Game Grid */
.v3f2-game-section {
    margin-bottom: 2rem;
}

.v3f2-game-category {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--v3f2-secondary);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--v3f2-primary);
}

.v3f2-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.v3f2-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.v3f2-game-item:hover {
    transform: scale(1.05);
}

.v3f2-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 0.3rem;
}

.v3f2-game-name {
    font-size: 1rem;
    color: var(--v3f2-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Info Cards */
.v3f2-card {
    background: var(--v3f2-bg-medium);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--v3f2-border);
}

.v3f2-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--v3f2-primary);
    margin-bottom: 1rem;
}

.v3f2-card-text {
    font-size: 1.2rem;
    color: var(--v3f2-text-light);
    line-height: 1.8rem;
    margin-bottom: 1rem;
}

.v3f2-card-text:last-child {
    margin-bottom: 0;
}

/* Promo Links */
.v3f2-promo-link {
    color: var(--v3f2-primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.v3f2-promo-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--v3f2-primary) 0%, var(--v3f2-secondary) 100%);
    color: var(--v3f2-bg-dark);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v3f2-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--v3f2-shadow);
}

/* Features List */
.v3f2-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.v3f2-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--v3f2-bg-medium);
    border-radius: 8px;
}

.v3f2-feature-icon {
    font-size: 2rem;
    color: var(--v3f2-primary);
}

.v3f2-feature-text {
    font-size: 1.2rem;
    color: var(--v3f2-text-light);
}

/* FAQ Section */
.v3f2-faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--v3f2-border);
    padding-bottom: 1rem;
}

.v3f2-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--v3f2-primary);
    margin-bottom: 0.5rem;
}

.v3f2-faq-answer {
    font-size: 1.2rem;
    color: var(--v3f2-text-muted);
    line-height: 1.6rem;
}

/* Footer */
.v3f2-footer {
    background: var(--v3f2-bg-dark);
    padding: 2rem 1rem;
    border-top: 1px solid var(--v3f2-border);
}

.v3f2-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.v3f2-footer-link {
    color: var(--v3f2-text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.v3f2-footer-link:hover {
    color: var(--v3f2-primary);
}

.v3f2-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.v3f2-partner-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.v3f2-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--v3f2-text-muted);
}

/* Bottom Navigation */
.v3f2-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--v3f2-bg-dark);
    border-top: 1px solid var(--v3f2-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.v3f2-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    color: var(--v3f2-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v3f2-nav-item:hover,
.v3f2-nav-active {
    color: var(--v3f2-primary);
    transform: scale(1.1);
}

.v3f2-nav-icon {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

.v3f2-nav-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Utilities */
.v3f2-text-center {
    text-align: center;
}

.v3f2-mt-1 {
    margin-top: 1rem;
}

.v3f2-mb-1 {
    margin-bottom: 1rem;
}

.v3f2-mt-2 {
    margin-top: 2rem;
}

.v3f2-mb-2 {
    margin-bottom: 2rem;
}

/* Desktop: Hide bottom nav */
@media (min-width: 769px) {
    .v3f2-bottom-nav {
        display: none;
    }

    .v3f2-main {
        padding-bottom: 2rem;
    }

    .v3f2-container {
        max-width: 768px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .v3f2-main {
        padding-bottom: 80px;
    }
}

/* RTP Table */
.v3f2-rtp-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.v3f2-rtp-table th,
.v3f2-rtp-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--v3f2-border);
    font-size: 1.1rem;
}

.v3f2-rtp-table th {
    color: var(--v3f2-primary);
    font-weight: 600;
}

.v3f2-rtp-table td {
    color: var(--v3f2-text-light);
}

/* Achievement badges */
.v3f2-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--v3f2-secondary);
    color: var(--v3f2-text-light);
    border-radius: 20px;
    font-size: 1rem;
    margin: 0.2rem;
}

/* Tricks/Tips list */
.v3f2-tricks-list {
    list-style: none;
    padding: 0;
}

.v3f2-tricks-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.2rem;
    color: var(--v3f2-text-light);
    border-bottom: 1px solid var(--v3f2-border);
}

.v3f2-tricks-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--v3f2-primary);
    font-weight: bold;
}
