/* VagiPlus Gaming Platform - Universal Stylesheet */
/* All classes use prefix: v736- */
/* Color Scheme: #FF5722 (Primary) | #1B263B (Dark Background) */

/* CSS Variables */
:root {
    --v736-primary: #FF5722;
    --v736-primary-dark: #E64A19;
    --v736-primary-light: #FF8A65;
    --v736-dark-bg: #1B263B;
    --v736-dark-secondary: #0D1B2A;
    --v736-dark-tertiary: #273649;
    --v736-text-light: #FFFFFF;
    --v736-text-gray: #E0E1DD;
    --v736-text-muted: #778DA9;
    --v736-border-color: #415A77;
    --v736-success: #4CAF50;
    --v736-warning: #FFC107;
    --v736-danger: #F44336;
}

/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v736-dark-bg);
    color: var(--v736-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.v736-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
}

.v736-wrapper {
    width: 100%;
    padding: 0 12px;
}

/* Header Styles */
.v736-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--v736-dark-bg) 0%, var(--v736-dark-secondary) 100%);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--v736-primary);
}

.v736-header-content {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v736-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v736-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.v736-site-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--v736-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v736-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v736-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.v736-btn-primary {
    background: linear-gradient(135deg, var(--v736-primary) 0%, var(--v736-primary-dark) 100%);
    color: var(--v736-text-light);
}

.v736-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.v736-btn-outline {
    background: transparent;
    color: var(--v736-primary);
    border: 2px solid var(--v736-primary);
}

.v736-btn-outline:hover {
    background: var(--v736-primary);
    color: var(--v736-text-light);
}

.v736-menu-toggle {
    background: transparent;
    border: none;
    color: var(--v736-text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu */
.v736-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;
}

.v736-overlay-active {
    opacity: 1;
    visibility: visible;
}

.v736-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--v736-dark-secondary) 0%, var(--v736-dark-bg) 100%);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.v736-menu-active {
    right: 0;
}

.v736-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--v736-border-color);
}

.v736-menu-close {
    background: transparent;
    border: none;
    color: var(--v736-text-light);
    font-size: 28px;
    cursor: pointer;
}

.v736-menu-nav {
    list-style: none;
}

.v736-menu-nav li {
    margin-bottom: 12px;
}

.v736-nav-link {
    color: var(--v736-text-gray);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.v736-nav-link:hover,
.v736-nav-active {
    background: var(--v736-dark-tertiary);
    color: var(--v736-primary);
}

.v736-nav-link i {
    font-size: 18px;
    width: 20px;
}

/* Main Content Spacing */
.v736-main-content {
    margin-top: 70px;
    padding-bottom: 80px;
    min-height: calc(100vh - 150px);
}

/* Carousel Styles */
.v736-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.v736-carousel-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.v736-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.v736-carousel-slide {
    min-width: 100%;
    position: relative;
}

.v736-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v736-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.v736-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v736-dot-active {
    background: var(--v736-primary);
    width: 30px;
    border-radius: 5px;
}

/* Section Styles */
.v736-section {
    margin: 25px 0;
    padding: 20px 0;
}

.v736-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--v736-text-light);
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid var(--v736-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.v736-section-title i {
    color: var(--v736-primary);
}

/* Game Grid */
.v736-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    padding: 10px 0;
}

.v736-game-item {
    background: var(--v736-dark-secondary);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 1;
    transform: scale(1);
}

.v736-game-item:hover {
    transform: translateY(-5px);
    border-color: var(--v736-primary);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

.v736-game-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.v736-game-name {
    padding: 8px;
    font-size: 12px;
    text-align: center;
    color: var(--v736-text-gray);
    font-weight: 500;
}

/* Filter Buttons */
.v736-filter-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 15px;
    scrollbar-width: none;
}

.v736-filter-container::-webkit-scrollbar {
    display: none;
}

.v736-filter-btn {
    padding: 8px 18px;
    background: var(--v736-dark-secondary);
    color: var(--v736-text-gray);
    border: 2px solid var(--v736-border-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.v736-filter-active {
    background: var(--v736-primary);
    color: var(--v736-text-light);
    border-color: var(--v736-primary);
}

/* Card Styles */
.v736-card {
    background: linear-gradient(135deg, var(--v736-dark-secondary) 0%, var(--v736-dark-tertiary) 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid var(--v736-border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.v736-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--v736-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v736-card-content {
    color: var(--v736-text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Feature Box */
.v736-feature-box {
    background: var(--v736-dark-tertiary);
    padding: 15px;
    border-radius: 10px;
    margin: 12px 0;
    border-left: 4px solid var(--v736-primary);
}

.v736-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--v736-text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v736-feature-desc {
    font-size: 13px;
    color: var(--v736-text-muted);
    line-height: 1.6;
}

/* Bottom Navigation */
.v736-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--v736-dark-secondary) 0%, var(--v736-dark-bg) 100%);
    padding: 8px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--v736-primary);
    height: 64px;
}

.v736-bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--v736-text-muted);
    text-decoration: none;
    font-size: 11px;
    min-width: 60px;
    padding: 8px 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    border: none;
}

.v736-bottom-nav-btn i {
    font-size: 22px;
}

.v736-bottom-nav-btn:hover,
.v736-bottom-nav-btn.v736-nav-active {
    color: var(--v736-primary);
    background: rgba(255, 87, 34, 0.1);
}

/* Footer */
.v736-footer {
    background: var(--v736-dark-secondary);
    padding: 30px 15px 20px;
    margin-top: 40px;
    border-top: 3px solid var(--v736-primary);
}

.v736-footer-section {
    margin-bottom: 25px;
}

.v736-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--v736-primary);
    margin-bottom: 12px;
}

.v736-footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.v736-footer-links li a {
    color: var(--v736-text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.v736-footer-links li a:hover {
    color: var(--v736-primary);
}

.v736-partners {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.v736-partner-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.v736-partner-logo:hover {
    filter: grayscale(0%) brightness(1);
}

.v736-copyright {
    text-align: center;
    color: var(--v736-text-muted);
    font-size: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--v736-border-color);
}

/* Accordion for FAQs */
.v736-accordion-item {
    background: var(--v736-dark-secondary);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--v736-border-color);
}

.v736-accordion-header {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--v736-dark-tertiary);
    transition: background 0.3s ease;
}

.v736-accordion-header:hover {
    background: var(--v736-border-color);
}

.v736-accordion-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--v736-text-light);
    flex: 1;
}

.v736-accordion-icon {
    font-size: 18px;
    color: var(--v736-primary);
    transition: transform 0.3s ease;
}

.v736-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.v736-accordion-body {
    padding: 15px;
    color: var(--v736-text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Scroll to Top Button */
.v736-scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--v736-primary) 0%, var(--v736-primary-dark) 100%);
    color: var(--v736-text-light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

.v736-scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

/* Desktop Responsive */
@media (min-width: 769px) {
    .v736-bottom-nav {
        display: none;
    }

    .v736-main-content {
        padding-bottom: 30px;
    }

    .v736-game-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .v736-main-content {
        padding-bottom: 80px;
    }
}
