/* JLJL22 - Main Stylesheet */
/* All classes use ve6f prefix for namespace isolation */

:root {
    --ve6f-bg-dark: #0F0F23;
    --ve6f-bg-primary: #FF4500;
    --ve6f-accent: #B2DFDB;
    --ve6f-highlight: #0097A7;
    --ve6f-text: #B2DFDB;
    --ve6f-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--ve6f-bg-dark);
    color: var(--ve6f-text);
    line-height: 1.5rem;
    font-size: 1.6rem;
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    padding-bottom: 70px;
}

.ve6f-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ve6f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--ve6f-bg-dark), #1a1a35);
    padding: 0.8rem 1rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--ve6f-bg-primary);
}

.ve6f-header-content {
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ve6f-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--ve6f-white);
    font-weight: bold;
    font-size: 1.8rem;
}

.ve6f-logo-icon {
    margin-right: 0.5rem;
    font-size: 2.4rem;
    color: var(--ve6f-bg-primary);
}

.ve6f-header-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ve6f-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--ve6f-white);
    font-size: 2rem;
    cursor: pointer;
}

@media (min-width: 769px) {
    .ve6f-menu-toggle { display: none; }
}

.ve6f-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ve6f-btn-register {
    background: linear-gradient(135deg, var(--ve6f-bg-primary), #ff6347);
    color: var(--ve6f-white);
}

.ve6f-btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.5);
}

.ve6f-btn-login {
    background-color: transparent;
    color: var(--ve6f-white);
    border: 2px solid var(--ve6f-highlight);
}

.ve6f-btn-login:hover {
    background-color: var(--ve6f-highlight);
    color: var(--ve6f-bg-dark);
}

.ve6f-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--ve6f-bg-dark), #1a1a35);
    z-index: 9999;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.ve6f-mobile-menu.ve6f-menu-active { right: 0; }

.ve6f-mobile-link {
    display: block;
    padding: 1rem 0;
    color: var(--ve6f-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(178, 223, 219, 0.2);
    font-size: 1.5rem;
}

.ve6f-mobile-link i {
    margin-right: 0.8rem;
    width: 24px;
    color: var(--ve6f-bg-primary);
}

.ve6f-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ve6f-menu-overlay.ve6f-overlay-active {
    opacity: 1;
    visibility: visible;
}

.ve6f-main {
    margin-top: 7rem;
    padding-bottom: 2rem;
}

.ve6f-card {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(0, 151, 167, 0.1));
    border: 1px solid var(--ve6f-highlight);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ve6f-card-title {
    color: var(--ve6f-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ve6f-card-content {
    color: var(--ve6f-text);
    font-size: 1.5rem;
    line-height: 1.6;
}

.ve6f-text-highlight {
    color: var(--ve6f-highlight);
}

.ve6f-text-center {
    text-align: center;
}

.ve6f-mt-2 {
    margin-top: 1.5rem;
}

.ve6f-carousel {
    margin-bottom: 1.5rem;
}

.ve6f-carousel img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid var(--ve6f-highlight);
}

.ve6f-carousel img:hover {
    transform: scale(1.02);
}

.ve6f-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.ve6f-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ve6f-game-item:hover {
    transform: scale(1.05);
}

.ve6f-game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.4rem;
}

.ve6f-game-name {
    font-size: 0.9rem;
    text-align: center;
    color: var(--ve6f-text);
    word-wrap: break-word;
}

.ve6f-section-title {
    color: var(--ve6f-accent);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ve6f-footer {
    background: linear-gradient(180deg, var(--ve6f-bg-dark), #0a0a18);
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 2px solid var(--ve6f-highlight);
}

.ve6f-footer-content {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
}

.ve6f-footer-title {
    color: var(--ve6f-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ve6f-footer-text {
    color: var(--ve6f-text);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ve6f-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ve6f-footer-link {
    color: var(--ve6f-white);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--ve6f-highlight);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.ve6f-footer-link:hover {
    background-color: var(--ve6f-bg-primary);
    color: var(--ve6f-white);
}

.ve6f-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.ve6f-partners img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ve6f-partners img:hover { opacity: 1; }

.ve6f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--ve6f-bg-dark), #050510);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--ve6f-bg-primary);
}

@media (min-width: 769px) {
    .ve6f-bottom-nav { display: none; }
}

.ve6f-bottom-nav-content {
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ve6f-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--ve6f-text);
    min-width: 60px;
    transition: all 0.3s ease;
    padding: 0.3rem;
}

.ve6f-nav-item:hover,
.ve6f-nav-item.ve6f-nav-active {
    color: var(--ve6f-bg-primary);
}

.ve6f-nav-icon {
    font-size: 22px;
    margin-bottom: 0.2rem;
}

.ve6f-nav-label {
    font-size: 0.75rem;
    font-weight: 500;
}

a {
    color: var(--ve6f-highlight);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ve6f-accent);
}

@media (max-width: 768px) {
    main { padding-bottom: 80px; }
}
