/* layout-e55c.css - Stylesheet for 333 Angel Number */
/* All classes use prefix: vc45- */

:root {
    --vc45-bg: #0E1621;
    --vc45-primary: #7B68EE;
    --vc45-accent: #DA70D6;
    --vc45-text: #00FF7F;
    --vc45-highlight: #8470FF;
    --vc45-white: #E8E8E8;
    --vc45-dark: #080D14;
    --vc45-card-bg: #151E2D;
    --vc45-border: #2A3545;
    --vc45-muted: #6B7B8D;
}

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

body {
    font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
    background: var(--vc45-bg);
    color: var(--vc45-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--vc45-text); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--vc45-accent); }

img { max-width: 100%; height: auto; display: block; }

.vc45-container { max-width: 430px; margin: 0 auto; padding: 0 12px; }

/* Header */
.vc45-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--vc45-dark), var(--vc45-bg));
    border-bottom: 1px solid var(--vc45-border);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.vc45-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--vc45-text);
}

.vc45-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--vc45-primary), var(--vc45-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 800;
}

.vc45-header-actions { display: flex; gap: 8px; align-items: center; }

.vc45-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.vc45-btn-register {
    background: linear-gradient(135deg, var(--vc45-primary), var(--vc45-highlight));
    color: #fff;
}

.vc45-btn-register:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(123,104,238,0.4); }

.vc45-btn-login {
    background: transparent;
    color: var(--vc45-text);
    border: 1px solid var(--vc45-text);
}

.vc45-btn-login:hover { background: rgba(0,255,127,0.1); }

.vc45-menu-btn {
    background: none;
    border: none;
    color: var(--vc45-white);
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
}

/* Mobile Menu */
.vc45-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.vc45-overlay-active { opacity: 1; pointer-events: all; }

.vc45-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--vc45-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.vc45-menu-active { right: 0; }

.vc45-no-scroll { overflow: hidden; }

.vc45-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--vc45-border);
}

.vc45-menu-title { font-size: 18px; color: var(--vc45-text); font-weight: 700; }

.vc45-menu-close {
    background: none;
    border: none;
    color: var(--vc45-white);
    font-size: 24px;
    cursor: pointer;
}

.vc45-menu-section { margin-bottom: 20px; }

.vc45-menu-section-title {
    font-size: 13px;
    color: var(--vc45-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.vc45-menu-link {
    display: block;
    padding: 10px 12px;
    color: var(--vc45-white);
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.2s;
}

.vc45-menu-link:hover { background: rgba(123,104,238,0.15); color: var(--vc45-text); }

/* Bottom Navigation */
.vc45-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: linear-gradient(180deg, var(--vc45-bg), var(--vc45-dark));
    border-top: 1px solid var(--vc45-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px;
}

.vc45-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    background: none;
    border: none;
    color: var(--vc45-muted);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s;
    gap: 3px;
    text-decoration: none;
    position: relative;
}

.vc45-nav-item:hover { color: var(--vc45-text); }

.vc45-nav-item .vc45-nav-icon { font-size: 22px; line-height: 1; }

.vc45-nav-item.vc45-nav-active { color: var(--vc45-primary); }

.vc45-nav-item.vc45-nav-active::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--vc45-primary);
    border-radius: 0 0 3px 3px;
}

.vc45-nav-promo { color: var(--vc45-accent); }
.vc45-nav-promo:hover { color: var(--vc45-text); transform: scale(1.08); }

/* Main Content */
.vc45-main { padding-top: 56px; }

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

/* Carousel */
.vc45-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.vc45-carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.vc45-slide-active { display: block; animation: vc45-fadeIn 0.6s ease; }

.vc45-carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.vc45-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.vc45-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.vc45-dot-active { background: var(--vc45-text); }

/* Game Grid */
.vc45-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vc45-text);
    margin: 20px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc45-section-title i { font-size: 20px; color: var(--vc45-primary); }

.vc45-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.vc45-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border-radius: 10px;
    background: var(--vc45-card-bg);
    border: 1px solid var(--vc45-border);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.vc45-game-card:hover {
    transform: translateY(-2px);
    border-color: var(--vc45-primary);
    box-shadow: 0 4px 12px rgba(123,104,238,0.2);
}

.vc45-game-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 4px;
}

.vc45-game-name {
    font-size: 10px;
    color: var(--vc45-white);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Promo Banner */
.vc45-promo-banner {
    background: linear-gradient(135deg, var(--vc45-primary), var(--vc45-accent));
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.vc45-promo-banner:hover { transform: scale(1.02); }

.vc45-promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.vc45-promo-text { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 10px; }

.vc45-promo-btn {
    display: inline-block;
    padding: 8px 24px;
    background: #fff;
    color: var(--vc45-primary);
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

/* Content Sections */
.vc45-content-section {
    background: var(--vc45-card-bg);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    border: 1px solid var(--vc45-border);
}

.vc45-content-section h2 {
    font-size: 16px;
    color: var(--vc45-text);
    margin-bottom: 10px;
}

.vc45-content-section p {
    font-size: 13px;
    color: var(--vc45-white);
    line-height: 1.8;
    margin-bottom: 8px;
}

.vc45-content-section ul {
    padding-left: 18px;
    margin-bottom: 8px;
}

.vc45-content-section li {
    font-size: 13px;
    color: var(--vc45-white);
    line-height: 1.8;
}

/* Footer */
.vc45-footer {
    background: var(--vc45-dark);
    border-top: 1px solid var(--vc45-border);
    padding: 24px 12px 80px;
    margin-top: 24px;
}

@media (min-width: 769px) {
    .vc45-footer { padding-bottom: 24px; }
}

.vc45-footer-brand {
    text-align: center;
    margin-bottom: 16px;
}

.vc45-footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--vc45-text);
}

.vc45-footer-brand p { font-size: 12px; color: var(--vc45-muted); margin-top: 6px; }

.vc45-footer-promos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.vc45-footer-promo-btn {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--vc45-primary), var(--vc45-highlight));
    color: #fff;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.vc45-footer-promo-btn:hover { transform: scale(1.05); }

.vc45-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: center;
    margin: 16px 0;
}

.vc45-footer-link {
    font-size: 12px;
    color: var(--vc45-muted);
    transition: color 0.2s;
}

.vc45-footer-link:hover { color: var(--vc45-text); }

.vc45-footer-copy {
    text-align: center;
    font-size: 11px;
    color: var(--vc45-muted);
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--vc45-border);
}

/* Help page styles */
.vc45-page-header {
    background: linear-gradient(135deg, var(--vc45-primary), var(--vc45-accent));
    padding: 24px 12px;
    text-align: center;
    margin-top: 56px;
}

.vc45-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.vc45-page-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
}

.vc45-help-section {
    background: var(--vc45-card-bg);
    border-radius: 12px;
    padding: 16px;
    margin: 12px 0;
    border: 1px solid var(--vc45-border);
}

.vc45-help-section h2 {
    font-size: 16px;
    color: var(--vc45-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vc45-help-section h3 {
    font-size: 14px;
    color: var(--vc45-accent);
    margin: 10px 0 6px;
}

.vc45-help-section p {
    font-size: 13px;
    color: var(--vc45-white);
    line-height: 1.8;
    margin-bottom: 6px;
}

.vc45-help-section ol,
.vc45-help-section ul {
    padding-left: 20px;
    margin-bottom: 8px;
}

.vc45-help-section li {
    font-size: 13px;
    color: var(--vc45-white);
    line-height: 1.8;
    margin-bottom: 4px;
}

.vc45-cta-box {
    background: linear-gradient(135deg, var(--vc45-primary), var(--vc45-highlight));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 16px 0;
}

.vc45-cta-box h3 { font-size: 16px; color: #fff; margin-bottom: 8px; }
.vc45-cta-box p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }

.vc45-cta-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #fff;
    color: var(--vc45-primary);
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

/* Breadcrumb */
.vc45-breadcrumb {
    font-size: 12px;
    color: var(--vc45-muted);
    padding: 10px 0;
}

.vc45-breadcrumb a { color: var(--vc45-primary); }

/* Scroll reveal */
.vc45-reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.vc45-revealed { opacity: 1; transform: translateY(0); }

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
    .vc45-bottom-nav { display: none; }
    .vc45-container { max-width: 600px; }
}

@keyframes vc45-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
