/**
 * Hot646 Design Stylesheet
 * Prefix: v909-
 * All classes must use v909- prefix
 * Color Palette: #1A1A2E | #9966CC | #B0E0E6 | #1E90FF | #DDA0DD
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px base */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #E8E8E8;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container and Layout */
.v909-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.v909-wrapper {
    width: 100%;
    padding-bottom: 8rem;
}

.v909-grid {
    display: grid;
    gap: 1.5rem;
}

.v909-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.v909-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.v909-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Header Styles */
.v909-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1A1A2E 0%, #2E1A47 100%);
    padding: 1.2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(153, 102, 204, 0.2);
    z-index: 1000;
}

.v909-header-content {
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v909-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v909-logo-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #9966CC 0%, #DDA0DD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.v909-site-name {
    font-size: 2rem;
    font-weight: 700;
    color: #9966CC;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v909-header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.v909-btn-register,
.v909-btn-login {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 6px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.v909-btn-register {
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    color: #fff;
}

.v909-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
}

.v909-btn-login {
    background: linear-gradient(135deg, #9966CC 0%, #DDA0DD 100%);
    color: #fff;
}

.v909-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 102, 204, 0.4);
}

.v909-menu-toggle {
    background: transparent;
    border: none;
    color: #B0E0E6;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.v909-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1A1A2E 0%, #2E1A47 100%);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem 0;
}

.v909-mobile-menu.site090-menu-open {
    right: 0;
}

.v909-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.v909-menu-overlay.site090-overlay-active {
    opacity: 1;
    visibility: visible;
}

.v909-mobile-menu-header {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(153, 102, 204, 0.2);
    margin-bottom: 2rem;
}

.v909-mobile-menu-title {
    font-size: 2rem;
    color: #9966CC;
    font-weight: 700;
}

.v909-mobile-menu-list {
    list-style: none;
}

.v909-mobile-menu-item {
    border-bottom: 1px solid rgba(153, 102, 204, 0.1);
}

.v909-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    color: #E8E8E8;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.v909-mobile-menu-link:hover,
.v909-mobile-menu-link.site090-active-page {
    background: rgba(153, 102, 204, 0.1);
    color: #9966CC;
}

.v909-mobile-menu-icon {
    font-size: 2rem;
    width: 2.4rem;
    text-align: center;
}

/* Bottom Navigation */
.v909-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1A1A2E 0%, #2E1A47 100%);
    box-shadow: 0 -2px 8px rgba(153, 102, 204, 0.2);
    z-index: 1000;
    height: 6rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 1rem;
}

.v909-bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    color: #B0E0E6;
    cursor: pointer;
    min-width: 64px;
    min-height: 56px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.v909-bottom-nav-btn:hover,
.v909-bottom-nav-btn.site090-bottom-active {
    color: #9966CC;
    transform: translateY(-2px);
}

.v909-bottom-nav-icon {
    font-size: 2.4rem;
}

.v909-bottom-nav-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* Hero Slider */
.v909-hero-section {
    margin-top: 6.5rem;
    margin-bottom: 3rem;
}

.v909-hero-slider {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.v909-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.v909-slide.site090-slide-active {
    opacity: 1;
}

.v909-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v909-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.v909-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.v909-dot.site090-dot-active {
    background: #9966CC;
    border-color: #fff;
    transform: scale(1.2);
}

/* Section Styles */
.v909-section {
    margin-bottom: 3rem;
}

.v909-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(153, 102, 204, 0.3);
}

.v909-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #9966CC;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v909-section-icon {
    font-size: 2.4rem;
}

.v909-view-all {
    color: #1E90FF;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.v909-view-all:hover {
    color: #B0E0E6;
    transform: translateX(4px);
}

/* Game Cards */
.v909-game-card {
    background: linear-gradient(135deg, #2E1A47 0%, #1A1A2E 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.v909-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(153, 102, 204, 0.3);
}

.v909-game-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A2E 0%, #2E1A47 100%);
}

.v909-game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.v909-game-card:hover .v909-game-img {
    transform: scale(1.1);
}

.v909-game-info {
    padding: 1.2rem;
}

.v909-game-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8E8E8;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v909-game-category {
    font-size: 1.2rem;
    color: #B0E0E6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v909-game-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

/* Filter Buttons */
.v909-filter-section {
    margin: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.v909-filter-container {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    min-width: min-content;
}

.v909-filter-btn {
    padding: 1rem 2rem;
    background: rgba(153, 102, 204, 0.1);
    border: 2px solid rgba(153, 102, 204, 0.3);
    border-radius: 8px;
    color: #B0E0E6;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 44px;
}

.v909-filter-btn:hover,
.v909-filter-btn.site090-filter-active {
    background: linear-gradient(135deg, #9966CC 0%, #DDA0DD 100%);
    border-color: #9966CC;
    color: #fff;
    transform: translateY(-2px);
}

/* Content Cards */
.v909-content-card {
    background: linear-gradient(135deg, #2E1A47 0%, #1A1A2E 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.v909-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #9966CC;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v909-card-content {
    color: #E8E8E8;
    line-height: 1.8;
}

.v909-card-content p {
    margin-bottom: 1.5rem;
}

.v909-card-content ul,
.v909-card-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.v909-card-content li {
    margin-bottom: 1rem;
}

/* Feature Grid */
.v909-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.v909-feature-item {
    background: linear-gradient(135deg, #2E1A47 0%, #1A1A2E 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.v909-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(153, 102, 204, 0.3);
}

.v909-feature-icon {
    font-size: 3.6rem;
    color: #1E90FF;
    margin-bottom: 1rem;
}

.v909-feature-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #9966CC;
    margin-bottom: 0.8rem;
}

.v909-feature-desc {
    font-size: 1.3rem;
    color: #B0E0E6;
}

/* FAQ Section */
.v909-faq-item {
    background: linear-gradient(135deg, #2E1A47 0%, #1A1A2E 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.v909-faq-question {
    font-size: 1.7rem;
    font-weight: 600;
    color: #9966CC;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v909-faq-answer {
    color: #E8E8E8;
    line-height: 1.8;
}

/* Partners Section */
.v909-partners-section {
    margin: 3rem 0;
}

.v909-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.v909-partner-logo {
    width: 100%;
    height: auto;
    padding: 1rem;
    background: rgba(176, 224, 230, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.v909-partner-logo:hover {
    background: rgba(153, 102, 204, 0.1);
    transform: scale(1.05);
}

/* Footer */
.v909-footer {
    background: linear-gradient(90deg, #1A1A2E 0%, #2E1A47 100%);
    padding: 3rem 1.5rem 10rem;
    margin-top: 4rem;
}

.v909-footer-content {
    max-width: 430px;
    margin: 0 auto;
}

.v909-footer-section {
    margin-bottom: 2.5rem;
}

.v909-footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9966CC;
    margin-bottom: 1.5rem;
}

.v909-footer-links {
    list-style: none;
}

.v909-footer-link {
    display: block;
    color: #B0E0E6;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.v909-footer-link:hover {
    color: #9966CC;
    padding-left: 0.5rem;
}

.v909-footer-text {
    color: #B0E0E6;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(153, 102, 204, 0.2);
}

/* Button Styles */
.v909-btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
}

.v909-btn-primary {
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    color: #fff;
}

.v909-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
}

.v909-btn-secondary {
    background: linear-gradient(135deg, #9966CC 0%, #DDA0DD 100%);
    color: #fff;
}

.v909-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(153, 102, 204, 0.4);
}

/* Animations */
.v909-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.v909-animate.site090-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive - Desktop */
@media (min-width: 769px) {
    .v909-bottom-nav {
        display: none;
    }

    .v909-wrapper {
        padding-bottom: 3rem;
    }

    .v909-menu-toggle {
        display: none;
    }
}

/* Utility Classes */
.v909-text-center {
    text-align: center;
}

.v909-mt-1 {
    margin-top: 1rem;
}

.v909-mt-2 {
    margin-top: 2rem;
}

.v909-mt-3 {
    margin-top: 3rem;
}

.v909-mb-1 {
    margin-bottom: 1rem;
}

.v909-mb-2 {
    margin-bottom: 2rem;
}

.v909-mb-3 {
    margin-bottom: 3rem;
}

.v909-hidden {
    display: none;
}

.v909-visible {
    display: block;
}