/**
 * layout-de9d.css - Stylesheet for casinoplus-apk.click
 * All classes use vda1- prefix for namespace isolation
 * Color palette: #ADFF2F | #EEEEEE | #141414 | #696969 | #006400 | #8FBC8F
 * Mobile-first design, max-width 430px
 */

:root {
    --vda1-primary: #ADFF2F;
    --vda1-text: #EEEEEE;
    --vda1-bg: #141414;
    --vda1-muted: #696969;
    --vda1-dark-green: #006400;
    --vda1-light-green: #8FBC8F;
    --vda1-header-height: 56px;
    --vda1-bottom-nav-height: 60px;
    --vda1-radius: 8px;
    --vda1-radius-lg: 12px;
    --vda1-shadow: 0 2px 8px rgba(0,0,0,0.4);
    --vda1-transition: all 0.3s ease;
}

/* Reset and base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--vda1-bg);
    color: var(--vda1-text);
    line-height: 1.5rem;
    max-width: 430px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--vda1-primary); text-decoration: none; transition: var(--vda1-transition); }
a:hover { color: #c8ff6a; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Header */
.vda1-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: var(--vda1-header-height);
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.2rem;
    z-index: 1000;
    border-bottom: 2px solid var(--vda1-dark-green);
}
.vda1-logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.vda1-logo-area img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}
.vda1-logo-area span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vda1-primary);
    white-space: nowrap;
}
.vda1-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.vda1-btn-register, .vda1-btn-login {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: var(--vda1-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--vda1-transition);
}
.vda1-btn-register {
    background: linear-gradient(135deg, var(--vda1-primary), var(--vda1-dark-green));
    color: #000;
}
.vda1-btn-register:hover { transform: scale(1.05); box-shadow: 0 0 12px rgba(173,255,47,0.4); }
.vda1-btn-login {
    background: transparent;
    border: 1.5px solid var(--vda1-primary);
    color: var(--vda1-primary);
}
.vda1-btn-login:hover { background: rgba(173,255,47,0.1); }
#vda1-hamburger {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
#vda1-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vda1-primary);
    transition: var(--vda1-transition);
    border-radius: 1px;
}
.vda1-hamburger-active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.vda1-hamburger-active span:nth-child(2) { opacity: 0; }
.vda1-hamburger-active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu overlay */
.vda1-mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--vda1-header-height);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: rgba(10,10,10,0.98);
    z-index: 9999;
    padding: 1rem 0;
    border-bottom: 2px solid var(--vda1-dark-green);
}
.vda1-mobile-menu a {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    color: var(--vda1-text);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--vda1-transition);
}
.vda1-mobile-menu a:hover {
    color: var(--vda1-primary);
    background: rgba(173,255,47,0.05);
    padding-left: 2.5rem;
}
.vda1-menu-active { animation: vda1-slideDown 0.3s ease forwards; }
@keyframes vda1-slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Main content */
.vda1-main {
    padding-top: var(--vda1-header-height);
    min-height: 100vh;
}

/* Carousel */
.vda1-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/7;
}
.vda1-carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.vda1-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vda1-carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.vda1-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--vda1-transition);
}
.vda1-carousel-dot.vda1-dot-active {
    background: var(--vda1-primary);
    width: 20px;
    border-radius: 4px;
}

/* Section containers */
.vda1-section {
    padding: 2rem 1.5rem;
}
.vda1-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vda1-primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--vda1-dark-green);
}
.vda1-section-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vda1-light-green);
    margin-bottom: 0.8rem;
}

/* Game grid */
.vda1-game-category { margin-bottom: 2rem; }
.vda1-category-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vda1-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.vda1-category-header i { font-size: 1.6rem; }
.vda1-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}
.vda1-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--vda1-transition);
}
.vda1-game-item:hover { transform: translateY(-3px); }
.vda1-game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--vda1-radius);
    border: 2px solid transparent;
    transition: var(--vda1-transition);
}
.vda1-game-item:hover img { border-color: var(--vda1-primary); box-shadow: 0 0 10px rgba(173,255,47,0.3); }
.vda1-game-name {
    font-size: 1.05rem;
    color: var(--vda1-text);
    margin-top: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Content cards */
.vda1-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #161616 100%);
    border-radius: var(--vda1-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(173,255,47,0.1);
}
.vda1-card h3 {
    font-size: 1.5rem;
    color: var(--vda1-primary);
    margin-bottom: 0.8rem;
}
.vda1-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--vda1-text);
    margin-bottom: 0.8rem;
}

/* Promo CTA */
.vda1-cta-promo {
    background: linear-gradient(135deg, var(--vda1-dark-green) 0%, #003300 100%);
    border: 1.5px solid var(--vda1-primary);
    border-radius: var(--vda1-radius-lg);
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
    cursor: pointer;
    transition: var(--vda1-transition);
}
.vda1-cta-promo:hover {
    box-shadow: 0 0 20px rgba(173,255,47,0.25);
    transform: scale(1.02);
}
.vda1-cta-promo h3 {
    font-size: 1.6rem;
    color: var(--vda1-primary);
    margin-bottom: 0.5rem;
}
.vda1-cta-promo p {
    font-size: 1.2rem;
    color: var(--vda1-light-green);
}
.vda1-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--vda1-primary), #7acc00);
    color: #000;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0.8rem 2.4rem;
    border-radius: var(--vda1-radius);
    margin-top: 0.8rem;
    transition: var(--vda1-transition);
    border: none;
    cursor: pointer;
}
.vda1-cta-btn:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(173,255,47,0.4); }

/* Text link style for promo */
.vda1-promo-link {
    color: var(--vda1-primary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--vda1-transition);
}
.vda1-promo-link:hover { color: #c8ff6a; }

/* Internal links */
.vda1-internal-link {
    color: var(--vda1-light-green);
    text-decoration: underline;
    transition: var(--vda1-transition);
}
.vda1-internal-link:hover { color: var(--vda1-primary); }

/* FAQ section */
.vda1-faq-item {
    background: #1a1a1a;
    border-radius: var(--vda1-radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--vda1-primary);
}
.vda1-faq-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--vda1-primary);
    margin-bottom: 0.5rem;
}
.vda1-faq-item p {
    font-size: 1.2rem;
    color: var(--vda1-muted);
    line-height: 1.5;
}

/* Testimonials */
.vda1-testimonial {
    background: #1a1a1a;
    border-radius: var(--vda1-radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(173,255,47,0.15);
}
.vda1-testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vda1-primary);
    margin-bottom: 0.4rem;
}
.vda1-testimonial-text {
    font-size: 1.2rem;
    color: var(--vda1-muted);
    line-height: 1.5;
    font-style: italic;
}

/* Winner showcase */
.vda1-winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #1a1a1a;
    border-radius: var(--vda1-radius);
    margin-bottom: 0.6rem;
}
.vda1-winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vda1-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--vda1-primary);
    font-weight: 700;
}
.vda1-winner-info { flex: 1; }
.vda1-winner-name { font-size: 1.1rem; color: var(--vda1-text); font-weight: 600; }
.vda1-winner-game { font-size: 1rem; color: var(--vda1-muted); }
.vda1-winner-amount { font-size: 1.3rem; color: var(--vda1-primary); font-weight: 700; }

/* Footer */
.vda1-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem 1.5rem 3rem;
    border-top: 2px solid var(--vda1-dark-green);
}
.vda1-footer-brand {
    font-size: 1.3rem;
    color: var(--vda1-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.vda1-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.vda1-footer-links a {
    font-size: 1.1rem;
    color: var(--vda1-light-green);
    padding: 0.4rem 0.8rem;
    background: rgba(173,255,47,0.05);
    border-radius: 4px;
    transition: var(--vda1-transition);
}
.vda1-footer-links a:hover { background: rgba(173,255,47,0.15); color: var(--vda1-primary); }
.vda1-footer-copy {
    font-size: 1.1rem;
    color: var(--vda1-muted);
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Bottom mobile nav */
.vda1-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: var(--vda1-bottom-nav-height);
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 2px solid var(--vda1-dark-green);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.4rem;
}
.vda1-bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--vda1-transition);
    color: var(--vda1-muted);
    padding: 0.3rem;
    border-radius: var(--vda1-radius);
}
.vda1-bottom-nav-btn:hover, .vda1-bottom-nav-btn.vda1-nav-active {
    color: var(--vda1-primary);
    background: rgba(173,255,47,0.08);
}
.vda1-bottom-nav-btn:active { transform: scale(0.92); }
.vda1-bottom-nav-btn .vda1-nav-icon {
    font-size: 22px;
    margin-bottom: 2px;
}
.vda1-bottom-nav-btn .vda1-nav-label {
    font-size: 1rem;
    white-space: nowrap;
}

/* Utility classes */
.vda1-text-primary { color: var(--vda1-primary); }
.vda1-text-muted { color: var(--vda1-muted); }
.vda1-text-green { color: var(--vda1-light-green); }
.vda1-mb-1 { margin-bottom: 0.8rem; }
.vda1-mb-2 { margin-bottom: 1.6rem; }
.vda1-mt-1 { margin-top: 0.8rem; }
.vda1-text-center { text-align: center; }
.vda1-text-bold { font-weight: 700; }

/* Payment methods */
.vda1-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}
.vda1-payment-item {
    background: #1a1a1a;
    border: 1px solid rgba(173,255,47,0.15);
    border-radius: var(--vda1-radius);
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    color: var(--vda1-light-green);
}

/* Tricks/tips list */
.vda1-tips-list {
    counter-reset: vda1-tip;
}
.vda1-tips-list li {
    counter-increment: vda1-tip;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.2rem;
    color: var(--vda1-text);
    line-height: 1.5;
    display: flex;
    gap: 0.8rem;
}
.vda1-tips-list li::before {
    content: counter(vda1-tip);
    min-width: 2.4rem;
    height: 2.4rem;
    background: var(--vda1-dark-green);
    color: var(--vda1-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Achievements grid */
.vda1-achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #1a1a1a;
    border-radius: var(--vda1-radius);
    margin-bottom: 0.6rem;
}
.vda1-achievement-icon {
    font-size: 2rem;
    color: var(--vda1-primary);
}
.vda1-achievement-info h4 {
    font-size: 1.2rem;
    color: var(--vda1-primary);
}
.vda1-achievement-info p {
    font-size: 1.1rem;
    color: var(--vda1-muted);
}

/* Mobile bottom padding for fixed nav */
@media (max-width: 768px) {
    .vda1-main {
        padding-bottom: calc(var(--vda1-bottom-nav-height) + 2rem);
    }
}

/* Desktop: hide bottom nav, show full layout */
@media (min-width: 769px) {
    .vda1-bottom-nav { display: none; }
    body { max-width: 430px; }
}
