/* Playtime APK - Design Stylesheet */
/* Prefix: v79a- */
/* Colors: #00FFFF cyan, #DCDCDC light, #AFEEEE light-blue, #0A0A0A dark, #80CBC4 teal */

/* === CSS Variables === */
:root {
    --v79a-bg-dark: #0A0A0A;
    --v79a-accent: #00FFFF;
    --v79a-light: #DCDCDC;
    --v79a-light-blue: #AFEEEE;
    --v79a-teal: #80CBC4;
    --v79a-bg-card: #111111;
    --v79a-bg-card-hover: #1a1a1a;
    --v79a-border: #222222;
    --v79a-text-muted: #999999;
    --v79a-gradient: linear-gradient(135deg, #00FFFF 0%, #80CBC4 100%);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v79a-bg-dark);
    color: var(--v79a-light);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: var(--v79a-accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--v79a-light-blue); }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.v79a-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--v79a-border);
    padding: 0 16px;
    height: 56px;
    display: flex; align-items: center; justify-content: space-between;
}
.v79a-logo {
    font-size: 20px; font-weight: 800;
    background: var(--v79a-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.v79a-header-actions { display: flex; gap: 8px; align-items: center; }
.v79a-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 700;
    cursor: pointer; border: none; transition: all 0.3s; white-space: nowrap;
}
.v79a-btn-register {
    background: var(--v79a-gradient); color: #0A0A0A;
}
.v79a-btn-register:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
.v79a-btn-login {
    background: transparent; color: var(--v79a-accent);
    border: 1px solid var(--v79a-accent);
}
.v79a-btn-login:hover { background: rgba(0, 255, 255, 0.1); }

/* === Desktop Navigation === */
.v79a-desktop-nav { display: none; }
@media (min-width: 769px) {
    .v79a-desktop-nav {
        display: flex; gap: 20px; align-items: center;
    }
    .v79a-desktop-nav a {
        color: var(--v79a-text-muted); font-size: 13px; font-weight: 500;
        transition: color 0.3s;
    }
    .v79a-desktop-nav a:hover { color: var(--v79a-accent); }
}

/* === Mobile Menu === */
.v79a-menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.v79a-menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--v79a-light); border-radius: 2px; transition: 0.3s;
}
.v79a-mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.98); z-index: 9999;
    display: flex; flex-direction: column; padding: 70px 24px 24px;
    transform: translateX(100%); transition: transform 0.35s ease;
}
.v79a-menu-active { transform: translateX(0) !important; }
.v79a-mobile-menu a {
    color: var(--v79a-light); font-size: 16px; padding: 14px 0;
    border-bottom: 1px solid var(--v79a-border); display: block;
}
.v79a-mobile-menu a:hover { color: var(--v79a-accent); }
.v79a-menu-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: var(--v79a-light);
    font-size: 28px; cursor: pointer;
}
.v79a-no-scroll { overflow: hidden; }
@media (min-width: 769px) {
    .v79a-menu-toggle { display: none; }
}

/* === Bottom Navigation === */
.v79a-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--v79a-border);
    display: flex; justify-content: space-around; align-items: center;
    height: 62px; padding: 0 4px;
}
.v79a-bottom-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 60px; min-height: 56px; background: none; border: none;
    color: var(--v79a-text-muted); cursor: pointer; transition: all 0.25s;
    padding: 4px 8px; border-radius: 12px; position: relative;
}
.v79a-bottom-btn:hover, .v79a-bottom-btn:focus {
    color: var(--v79a-accent); transform: translateY(-2px);
}
.v79a-bottom-btn .v79a-bnav-icon { font-size: 22px; margin-bottom: 2px; }
.v79a-bottom-btn .v79a-bnav-text { font-size: 10px; font-weight: 600; }
.v79a-bottom-btn.v79a-btn-highlight {
    color: var(--v79a-accent);
}
.v79a-bottom-btn.v79a-btn-highlight::after {
    content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px; background: var(--v79a-accent); border-radius: 2px;
}
@media (min-width: 769px) {
    .v79a-bottom-nav { display: none; }
}

/* === Main Content === */
main { padding-top: 56px; }
@media (max-width: 768px) {
    main { padding-bottom: 80px; }
}

/* === Banner Carousel === */
.v79a-banner {
    position: relative; width: 100%; overflow: hidden;
    border-radius: 0 0 16px 16px;
}
.v79a-banner-slide {
    display: none; width: 100%;
}
.v79a-slide-active { display: block; }
.v79a-banner-slide img {
    width: 100%; height: auto; aspect-ratio: 16/7; object-fit: cover;
}
.v79a-banner-controls {
    position: absolute; top: 50%; left: 0; right: 0;
    display: flex; justify-content: space-between; padding: 0 8px;
    transform: translateY(-50%); pointer-events: none;
}
.v79a-banner-prev, .v79a-banner-next {
    background: rgba(0, 0, 0, 0.5); color: #fff; border: none;
    width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
    font-size: 14px; pointer-events: auto; transition: 0.3s;
}
.v79a-banner-prev:hover, .v79a-banner-next:hover { background: rgba(0, 255, 255, 0.4); }
.v79a-banner-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px;
}
.v79a-banner-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: 0.3s;
}
.v79a-dot-active { background: var(--v79a-accent); width: 20px; border-radius: 4px; }

/* === Section Styles === */
.v79a-section {
    padding: 32px 16px; max-width: 800px; margin: 0 auto;
}
.v79a-section-title {
    font-size: 22px; font-weight: 800; margin-bottom: 16px;
    color: var(--v79a-light);
}
.v79a-section-title span { color: var(--v79a-accent); }

/* === Category Tabs === */
.v79a-cat-tabs {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
    margin-bottom: 16px; -webkit-overflow-scrolling: touch;
}
.v79a-cat-tabs::-webkit-scrollbar { display: none; }
.v79a-cat-tab {
    padding: 8px 16px; border-radius: 20px; background: var(--v79a-bg-card);
    color: var(--v79a-text-muted); font-size: 13px; font-weight: 600;
    white-space: nowrap; cursor: pointer; border: 1px solid var(--v79a-border);
    transition: all 0.3s;
}
.v79a-cat-tab:hover { border-color: var(--v79a-accent); color: var(--v79a-accent); }
.v79a-cat-active {
    background: var(--v79a-gradient) !important;
    color: #0A0A0A !important; border-color: transparent !important;
}

/* === Game Grid === */
.v79a-game-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.v79a-grid-active { display: grid; }
@media (min-width: 500px) {
    .v79a-game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 769px) {
    .v79a-game-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}
.v79a-game-card {
    background: var(--v79a-bg-card); border-radius: 12px; overflow: hidden;
    cursor: pointer; border: 1px solid var(--v79a-border);
    transition: all 0.3s; position: relative;
}
.v79a-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--v79a-accent);
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.1);
}
.v79a-game-card img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
}
.v79a-game-name {
    padding: 8px 6px; font-size: 11px; font-weight: 600;
    text-align: center; color: var(--v79a-light);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* === Content Blocks === */
.v79a-content-block {
    background: var(--v79a-bg-card); border-radius: 16px;
    padding: 24px; margin-bottom: 20px; border: 1px solid var(--v79a-border);
}
.v79a-content-block h2 {
    font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--v79a-light);
}
.v79a-content-block h3 {
    font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--v79a-teal);
}
.v79a-content-block p {
    font-size: 14px; line-height: 1.7; color: var(--v79a-text-muted); margin-bottom: 10px;
}
.v79a-content-block ul { padding-left: 20px; margin-bottom: 10px; }
.v79a-content-block li {
    font-size: 14px; color: var(--v79a-text-muted); margin-bottom: 6px;
    line-height: 1.5;
}

/* === CTA / Play Now === */
.v79a-cta-box {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.12) 0%, rgba(128, 203, 196, 0.12) 100%);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 16px; padding: 28px 20px; text-align: center; margin-bottom: 20px;
}
.v79a-cta-box h2 { color: var(--v79a-accent); font-size: 22px; margin-bottom: 10px; }
.v79a-cta-box p { color: var(--v79a-text-muted); margin-bottom: 18px; font-size: 14px; }
.v79a-cta-btn {
    display: inline-block; padding: 14px 36px; border-radius: 12px;
    background: var(--v79a-gradient); color: #0A0A0A;
    font-size: 16px; font-weight: 800; cursor: pointer;
    border: none; transition: all 0.3s;
}
.v79a-cta-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 255, 255, 0.35); }

/* === Testimonials === */
.v79a-testimonials { display: grid; gap: 12px; }
.v79a-testimonial-card {
    background: var(--v79a-bg-card); border: 1px solid var(--v79a-border);
    border-radius: 12px; padding: 16px;
}
.v79a-testimonial-card .v79a-tc-name {
    font-weight: 700; color: var(--v79a-accent); font-size: 14px; margin-bottom: 4px;
}
.v79a-testimonial-card .v79a-tc-stars { color: #FFD700; font-size: 13px; margin-bottom: 6px; }
.v79a-testimonial-card .v79a-tc-text { font-size: 13px; color: var(--v79a-text-muted); line-height: 1.5; }

/* === Payment Methods === */
.v79a-payment-grid {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.v79a-payment-item {
    background: var(--v79a-bg-card); border: 1px solid var(--v79a-border);
    border-radius: 10px; padding: 12px 18px; text-align: center;
    font-size: 13px; color: var(--v79a-light); font-weight: 600;
    transition: border-color 0.3s;
}
.v79a-payment-item:hover { border-color: var(--v79a-accent); }

/* === Footer === */
.v79a-footer {
    background: #050505; border-top: 1px solid var(--v79a-border);
    padding: 32px 16px 20px; text-align: center;
}
.v79a-footer-logo {
    font-size: 22px; font-weight: 800; margin-bottom: 12px;
    background: var(--v79a-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v79a-footer-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px;
    margin-bottom: 16px;
}
.v79a-footer-links a { color: var(--v79a-text-muted); font-size: 12px; }
.v79a-footer-links a:hover { color: var(--v79a-accent); }
.v79a-partner-logos {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    margin-bottom: 16px; align-items: center;
}
.v79a-partner-logos img { height: 24px; opacity: 0.6; transition: opacity 0.3s; }
.v79a-partner-logos img:hover { opacity: 1; }
.v79a-footer-copy { font-size: 11px; color: #555; margin-top: 12px; }

/* === Help Page Styles === */
.v79a-help-hero {
    padding: 80px 16px 32px; text-align: center;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.08) 0%, transparent 100%);
}
.v79a-help-hero h1 { font-size: 26px; font-weight: 800; color: var(--v79a-light); margin-bottom: 10px; }
.v79a-help-hero p { font-size: 14px; color: var(--v79a-text-muted); max-width: 600px; margin: 0 auto; }
.v79a-help-section { padding: 20px 16px; max-width: 800px; margin: 0 auto; }
.v79a-help-block {
    background: var(--v79a-bg-card); border: 1px solid var(--v79a-border);
    border-radius: 14px; padding: 20px; margin-bottom: 16px;
}
.v79a-help-block h2 {
    font-size: 18px; font-weight: 700; color: var(--v79a-accent); margin-bottom: 10px;
}
.v79a-help-block h3 {
    font-size: 15px; font-weight: 600; color: var(--v79a-teal); margin-bottom: 8px;
}
.v79a-help-block p { font-size: 14px; color: var(--v79a-text-muted); line-height: 1.7; margin-bottom: 8px; }
.v79a-help-block ul { padding-left: 18px; }
.v79a-help-block li { font-size: 14px; color: var(--v79a-text-muted); margin-bottom: 5px; line-height: 1.5; }
.v79a-help-cta {
    text-align: center; padding: 24px 16px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(128, 203, 196, 0.08));
    border-radius: 14px; margin: 20px 16px; border: 1px solid rgba(0, 255, 255, 0.15);
}
.v79a-help-cta p { font-size: 14px; color: var(--v79a-text-muted); margin-bottom: 12px; }

/* === Scroll to Top === */
.v79a-scroll-top {
    position: fixed; bottom: 76px; right: 16px; z-index: 999;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--v79a-bg-card); border: 1px solid var(--v79a-border);
    color: var(--v79a-accent); display: none; align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px; transition: 0.3s;
}
@media (max-width: 768px) {
    .v79a-scroll-top { bottom: 76px; right: 12px; }
}

/* === Utility === */
.v79a-text-accent { color: var(--v79a-accent); }
.v79a-text-teal { color: var(--v79a-teal); }
.v79a-text-center { text-align: center; }
.v79a-mt-16 { margin-top: 16px; }
.v79a-mb-16 { margin-bottom: 16px; }
