/* ========== Custom Properties ========== */
:root {
    --fontPrimary: 'Roboto', sans-serif;
    --fontSecondary: 'Poppins', sans-serif;
    --whiteColor: #ffffff;
    --grayWhiteColor: #f7f7f7;
    --blackColor: #000000;
    --primaryColor: #8a2be2;
    --starColor: rgb(255, 221, 0);
    --textMuted: #777;
    --borderLight: #e0e0e0;
}

/* ========== Reset ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
a { text-decoration: none; }
li { list-style: none; }
img { display: block; height: auto; }

/* ========== Base ========== */
body {
    display: flex; justify-content: center;
    background-color: var(--blackColor); font-family: var(--fontPrimary);
}
.container {
    width: 50%; max-width: 50%;
    background-color: var(--grayWhiteColor);
    position: relative; overflow: hidden;
}

/* ========== Navbar ========== */
.navbar { background: var(--primaryColor); text-align: center; padding: 8px 15px 0; }
.navbar .logo { display: block; }
.navbar .logo img { width: 100px; height: 100px; display: inline-block; vertical-align: middle; }
.navbar .nav-menu { margin-top: 6px; }
.navbar .nav-menu .menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; padding-bottom: 6px; }
.navbar .nav-menu .menu .menu-item { background: rgba(255,255,255,0.15); border-radius: 4px; }
.navbar .nav-menu .menu .menu-item a,
.navbar .nav-menu .menu .menu-item .menu-link {
    color: var(--whiteColor); padding: 8px 14px; display: block;
    font-size: 0.95rem; font-weight: 500; white-space: nowrap;
}
.navbar .nav-menu .menu .menu-item a:hover,
.navbar .nav-menu .menu .menu-item.current-menu-item a { background: rgba(255,255,255,0.12); border-radius: 4px; }

/* 18+ Warning */
.age-warning {
    background: #1a1a1a; color: #ff8e00; text-align: center;
    padding: 6px 10px; font-size: 14px; font-weight: 600; border-bottom: 1px solid #333;
}

/* ========== Ticker ========== */
.ticker-section { background-color: #632424; }
.ticker-section .ticker { display: flex; align-items: center; width: 100%; }
.ticker-section .ticker .news { width: 80%; }
.ticker-section .ticker .title {
    width: 20%; text-align: center; background-color: var(--primaryColor);
    color: var(--whiteColor); border-top: 1px solid #8303de;
}
.ticker-section .ticker .title h5 { font-size: 18px; margin: 8% 0; }
.ticker-section .ticker .news marquee { font-size: 18px; color: var(--whiteColor); }

/* ========== Slider ========== */
.slider { position: relative; overflow: hidden; width: 100%; }
.slider .slides-track { display: flex; }
.slider .slide { width: 100%; flex-shrink: 0; }
.slider .slide img { display: block; width: 100%; }
.slider .slider-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
}
.slider .slider-dots .dot {
    width: 10px; height: 10px; background: rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer; border: none; padding: 0;
}
.slider .slider-dots .dot.active { background: var(--whiteColor); }

/* ========== Headings ========== */
.heading { text-align: center; }
.heading .heading-title {
    display: block; text-align: center; font-size: 25px; font-weight: bold;
    padding-top: 15px; color: var(--primaryColor);
}
.heading .heading-line {
    width: 30%; position: relative; left: 50%; transform: translateX(-50%);
}

/* ========== Top Apps (Top-3) ========== */
.top-apps-section {
    margin: 20px; background-color: #fff; border-radius: 20px;
    box-shadow: 0px 1px 25px -12px rgba(148,146,148,1);
}
#top-apps-section .heading { font-size: 28px; font-weight: 700; color: var(--primaryColor); padding-top: 10px; }
#top-apps-section .top-apps { display: flex; justify-content: space-between; margin-top: 10px; }
.app {
    text-align: center; position: relative; margin: 20px; width: 30%;
}
.app-logo {
    margin: 0 auto; overflow: visible; position: relative;
    width: 80px; height: 80px;
}
.app-logo img {
    width: 80px; height: 80px; display: block; object-fit: cover;
    border-radius: 20px;
    border: 6px solid var(--primaryColor);
}
.app-logo .num {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    font-size: 14px; background-color: var(--primaryColor); color: var(--whiteColor);
    width: 20px; height: 20px; text-align: center; border-radius: 4px; line-height: 20px;
    z-index: 1;
}
.app-content {
    padding: 12px 8px 15px; background: var(--primaryColor);
    border-radius: 15px 15px 0 0; margin-top: -15px; color: #fff;
}
.app .title { font-size: 1rem; font-weight: bold; margin: 8px 0 4px; }
.app .rating { display: inline-flex; align-items: center; gap: 2px; font-size: 0.8rem; color: var(--starColor); }
.app .rating b { color: #fff; font-size: 0.75rem; margin-left: 3px; font-weight: 400; }
.app-btn { background: #000; border-radius: 0 0 10px 10px; }
.app-btn .d-btn {
    font-size: 16px; color: var(--whiteColor); font-weight: 600; padding: 8px 0; display: block;
}

/* ========== Star Rating ========== */
.rating { display: inline-flex; align-items: center; gap: 1px; color: var(--starColor); font-size: 0.85rem; }
.rating i { font-size: inherit; }
.rating b { color: inherit; font-size: 0.8rem; margin-left: 4px; font-weight: 600; }

/* ========== App Card (shared by tabs / related / archive) ========== */
.tabs-app {
    display: flex; align-items: center; gap: 12px;
    background-color: #fafafa; border-radius: 8px;
    border: 1px solid #eee; padding: 20px 0;
    margin: 0 15px 10px 15px;
}
.tabs-app:last-child { margin-bottom: 0; }
.tabs-app-logo { width: 80px; min-width: 80px; position: relative; line-height: 0; }
.tabs-app-logo a { display: block; }
.tabs-app-logo img {
    width: 80px; height: 80px; display: block; border-radius: 12px; object-fit: cover;
}
.tabs-app-logo .num {
    position: absolute; top: -6px; left: -6px; font-size: 14px;
    background-color: var(--primaryColor); color: var(--whiteColor);
    width: 20px; height: 20px; text-align: center; border-radius: 4px; line-height: 20px;
}
.tabs-app-details { flex: 1; min-width: 0; }
.tabs-app-details .tabs-app-name { line-height: 1.3; }
.tabs-app-details .tabs-app-name span { font-size: 1.1rem; font-weight: 600; color: var(--primaryColor); }
.tabs-app-details .t-download-and-bonus { margin-top: 2px; }
.tabs-app-details .t-download,
.tabs-app-details .bonus { font-size: 14px; color: var(--textMuted); font-weight: 600; }
.tabs-app-details .t-download::after { content: "|"; color: #b7b7b7; margin: 0 4px; }
.tabs-app-details .min-withdraw { color: var(--textMuted); font-weight: 600; font-size: 13px; margin-top: 2px; }
.tabs-d-btn { flex-shrink: 0; }
.tabs-d-btn .down-btn {
    background-color: var(--primaryColor); color: var(--whiteColor);
    padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 14px;
    display: inline-block; transition: background 0.2s;
}
.tabs-d-btn .down-btn:hover { background-color: #7722cc; }

.category-heading {
    font-size: 1.1rem; color: var(--primaryColor); margin: 15px 20px 8px;
    padding: 6px 12px; background: #f3e8ff;
    border-left: 4px solid var(--primaryColor); border-radius: 0 4px 4px 0;
}

/* ========== Tabs ========== */
.apps-section { background: #fff; padding: 10px 0 20px; margin: 20px; border-radius: 15px; box-shadow: 0px 1px 25px -12px rgba(148,146,148,1); }
.apps-section .tabs .tabs-head { display: flex; justify-content: space-between; margin: 0 30px; gap: 4px; }
.apps-section .tabs .tabs-head .tabs-btn {
    width: 30%; background-color: #e8d5f5; display: block; text-align: center;
    color: var(--primaryColor); font-size: 18px; padding: 10px 0;
    text-transform: capitalize; cursor: pointer; border: none;
    border-radius: 8px 8px 0 0; font-weight: 600; transition: background 0.2s;
}
.apps-section .tabs .tabs-btn.active { background-color: var(--primaryColor); color: var(--whiteColor); }
.apps-section .tabs-body {
    background-color: var(--whiteColor); border: 2px solid var(--primaryColor);
    border-radius: 0 0 10px 10px; margin: 0 30px;
}
.apps-section .tabs-body .tabs-content { display: none; padding: 10px 0; }
.apps-section .tabs-body .tabs-content.active { display: block; }

/* ========== Footer ========== */
.social-icons { background: #111; padding: 20px 0 8px; margin-top: 30px; }
.social-icons .social { display: flex; justify-content: center; }
.social-icons .social .social-item { margin: 0 8px; }
.social-icons .social .social-link { color: var(--whiteColor); }
.social-icons .social .social-link > i {
    font-size: 1.4rem; text-align: center; line-height: 2.8rem; display: block;
    background-color: var(--primaryColor); width: 2.8rem; height: 2.8rem;
    border-radius: 8px; transition: transform 0.2s;
}
.social-icons .social .social-link > i:hover { transform: scale(1.1); }

.bottom-menu-section { background: #111; padding: 5px 0 15px; }
.bottom-menu-section .bottom-menu { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; }
.bottom-menu-section .bottom-menu > .menu-item {
    background-color: var(--primaryColor); color: var(--whiteColor);
    padding: 6px 12px; border-radius: 4px;
}
.bottom-menu-section .bottom-menu > .menu-item > i { margin-right: 5px; }
.bottom-menu-section .bottom-menu > .menu-item > .menu-link {
    font-size: 0.9rem; text-transform: capitalize; color: var(--whiteColor);
}
.footer {
    padding: 12px 0; text-align: center;
    background-color: #1a1a1a; color: var(--whiteColor); font-size: 14px;
}

/* ========== Breadcrumbs ========== */
.yono-breadcrumb {
    padding: 12px 25px; font-size: 0.85rem; color: var(--textMuted);
    background: #fff; border-bottom: 1px solid #eee;
}
.yono-breadcrumb a { color: var(--primaryColor); }
.yono-breadcrumb .breadcrumb-sep { margin: 0 8px; color: #bbb; }
.yono-breadcrumb .breadcrumb-current { color: #666; }

/* ========== Single App Page ========== */
.single-app { background: #f5f5f5; }

.single-app__header {
    display: flex; align-items: center; gap: 20px; padding: 20px 25px;
    background: linear-gradient(135deg, var(--primaryColor) 0%, #6a1cb8 100%); color: var(--whiteColor);
}
.single-app__logo { flex-shrink: 0; line-height: 0; }
.single-app__logo a { display: block; }
.single-app__logo img {
    width: 400px; height: 400px; max-width: none;
    border-radius: 20px; border: 4px solid var(--whiteColor);
    object-fit: cover; background: #fff; display: block;
}
.single-app__title-area { flex: 1; }
.single-app__title { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; color: var(--whiteColor); }
.single-app__rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.single-app__rating .rating { color: var(--starColor); font-size: 0.9rem; }
.single-app__rating .rating b { color: var(--whiteColor); }
.single-app__downloads { font-size: 0.9rem; opacity: 0.9; }
.single-app__category {
    display: inline-block; margin-top: 6px; background: rgba(255,255,255,0.2);
    padding: 4px 12px; border-radius: 20px; font-size: 0.8rem;
}

/* Info Grid */
.single-app__info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #ddd;
}
.info-item { background: #fff; padding: 16px 12px; text-align: center; }
.info-label {
    display: block; font-size: 0.8rem; color: #999; text-transform: uppercase;
    margin-bottom: 4px; letter-spacing: 0.5px;
}
.info-value { display: block; font-size: 1.2rem; font-weight: 700; color: var(--primaryColor); }

/* Deposit Offers */
.single-app__deposit-offers { padding: 20px 25px; background: #fff; border-top: 3px solid #ffd700; }
.single-app__deposit-offers h2 { font-size: 1.1rem; color: var(--primaryColor); margin-bottom: 10px; }
.deposit-offers-card {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #fffdf0 0%, #fff8d6 100%);
    border: 2px solid #ffd700; padding: 15px 20px; border-radius: 10px;
    font-size: 1rem; color: #8b6914; font-weight: 500;
}
.deposit-offers-card i { font-size: 1.5rem; color: #ff8c00; }

/* CTA */
.single-app__cta { text-align: center; padding: 25px; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.single-app__download-btn {
    display: block; background: linear-gradient(135deg, var(--primaryColor) 0%, #7722cc 100%);
    color: var(--whiteColor); padding: 16px 30px; border-radius: 10px;
    font-size: 1.2rem; font-weight: 700;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.single-app__download-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5); }
.single-app__platform { margin-top: 10px; font-size: 0.85rem; color: #999; }
.single-app__disclosure { margin-top: 6px; font-size: 0.7rem; line-height: 1.4; color: #aaa; }

/* Content */
.single-app__content { padding: 25px; background: #fff; line-height: 1.8; color: #333; }
.single-app__content h2 {
    font-size: 1.2rem; color: var(--primaryColor); margin: 25px 0 10px;
    padding-bottom: 8px; border-bottom: 2px solid #f0e6ff;
}
.single-app__content h2:first-child { margin-top: 0; }
.single-app__content h3 { font-size: 1.05rem; color: #444; margin: 18px 0 8px; }
.single-app__content p { margin-bottom: 12px; }
.single-app__content ul, .single-app__content ol { margin: 10px 0 10px 20px; }
.single-app__content li { list-style: disc; margin-bottom: 6px; }

/* Related Apps */
.single-app__related { padding: 20px 25px; background: #f9f6fc; border-top: 1px solid #e8d5f5; border-bottom: 1px solid #e8d5f5; }
.single-app__related h2 { font-size: 1.2rem; color: var(--primaryColor); margin-bottom: 12px; }

/* FAQ */
.single-app__faqs { padding: 20px 25px 25px; background: #f9f6fc; border-top: 1px solid #e8d5f5; }
.single-app__faqs h2 { font-size: 1.2rem; color: var(--primaryColor); margin-bottom: 12px; }
.faq-list { border-radius: 8px; overflow: hidden; }
.faq-item { border: 1px solid #e0d0f0; border-bottom: none; background: #fff; }
.faq-item:last-child { border-bottom: 1px solid #e0d0f0; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; cursor: pointer; font-weight: 600; color: #333;
    user-select: none; list-style: none; font-size: 15px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ""; }
.faq-question span { flex: 1; padding-right: 10px; }
.faq-icon { transition: transform 0.3s; color: var(--primaryColor); flex-shrink: 0; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-question { background: var(--primaryColor); color: var(--whiteColor); }
.faq-item[open] .faq-icon { color: var(--whiteColor); }
.faq-answer { padding: 0 18px 14px; line-height: 1.7; color: #555; font-size: 14px; }

/* ========== Archive Page ========== */
.archive-apps { background: #f5f5f5; }
.archive-apps__header {
    text-align: center; padding: 25px; color: var(--whiteColor);
    background: linear-gradient(135deg, var(--primaryColor) 0%, #6a1cb8 100%);
}
.archive-apps__header h1 { font-size: 1.6rem; margin-bottom: 6px; }
.archive-apps__header p { font-size: 0.95rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.archive-category-filters {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    padding: 15px 25px; background: #fff; border-bottom: 2px solid #f0e6ff;
}
.cat-filter {
    background: #f3e8ff; color: #6a1cb8; border: 2px solid transparent;
    padding: 8px 20px; border-radius: 25px; cursor: pointer; font-size: 14px;
    font-weight: 600; transition: all 0.2s; text-transform: capitalize;
}
.cat-filter.active, .cat-filter:hover { background: var(--primaryColor); color: var(--whiteColor); }
.archive-apps-list { padding: 0 25px 30px; }
.archive-cat-group {
    background: #fff; border-radius: 10px; padding: 15px 20px; margin-top: 15px;
    box-shadow: 0px 1px 15px -10px rgba(148,146,148,1);
}
.archive-cat-heading {
    font-size: 1.1rem; color: var(--primaryColor); padding-bottom: 8px;
    border-bottom: 2px solid #f0e6ff; margin-bottom: 10px;
}
.archive-cat-heading .cat-count { font-size: 0.9rem; color: #999; font-weight: 400; }
.archive-cat-group.hidden { display: none; }
.archive-pagination { text-align: center; padding: 20px 0; }
.archive-pagination .page-numbers {
    display: inline-block; padding: 6px 12px; margin: 0 2px;
    background: #f3e8ff; color: var(--primaryColor); border-radius: 4px;
    font-size: 14px; font-weight: 600;
}
.archive-pagination .page-numbers.current { background: var(--primaryColor); color: #fff; }
.archive-pagination .page-numbers:hover:not(.current) { background: #e0c8f5; }

/* ========== Page Content ========== */
.page-content { background: #fff; padding: 20px 25px 30px; }
.page-title {
    font-size: 1.6rem; color: var(--primaryColor); margin: 10px 0 20px;
    padding-bottom: 10px; border-bottom: 2px solid #f0e6ff;
}
.page-body { line-height: 1.8; color: #333; }
.page-body h2 { font-size: 1.2rem; color: var(--primaryColor); margin: 25px 0 10px; padding-bottom: 6px; border-bottom: 1px solid #f0e6ff; }
.page-body h3 { font-size: 1.1rem; color: #444; margin: 18px 0 8px; }
.page-body p { margin-bottom: 12px; }
.page-body ul, .page-body ol { margin: 10px 0 10px 20px; }
.page-body li { list-style: disc; margin-bottom: 6px; }

/* ========== Generic / Disclaimer ========== */
.content { background: #fff; padding: 25px; line-height: 1.8; color: #333; }
.content-disclaimer {
    background: #fff; margin: 20px; padding: 25px; border-radius: 10px;
    box-shadow: 0px 1px 15px -10px rgba(148,146,148,1); border-top: 3px solid var(--primaryColor);
}

/* ========== RESPONSIVE - Mobile (max-width: 600px) ========== */
@media only screen and (max-width: 600px) {
    .container { width: 100%; max-width: 100%; }
    body { width: 100%; max-width: 100%; display: block; }

    .navbar .logo img { width: 70px; height: 70px; }
    .navbar .nav-menu .menu .menu-item a,
    .navbar .nav-menu .menu .menu-item .menu-link { font-size: 13px; padding: 6px 8px; }
    .age-warning { font-size: 13px; }

    .ticker-section .ticker .title h5 { font-size: 14px; }
    .ticker-section .ticker .news marquee { font-size: 14px; }

    .heading .heading-title { font-size: 20px; }
    .top-apps-section { margin: 8px; border-radius: 10px; }
    .app { margin: 10px 3px; width: 33%; }
    .app .title { font-size: 13px; font-weight: 500; margin: 4px 0 0; }
    .app-content { padding: 8px 0; border-radius: 8px 8px 0 0; }
    .app-btn .d-btn { font-size: 14px; font-weight: 500; padding: 6px 0; }
    .app .rating { font-size: 13px; }

    .apps-section { margin: 8px; border-radius: 10px; padding: 5px 0 10px; }
    .apps-section .tabs .tabs-head { margin: 0 8px; gap: 3px; }
    .apps-section .tabs .tabs-head .tabs-btn { font-size: 13px; font-weight: bold; padding: 8px 0; }
    .apps-section .tabs-body { margin: 0 8px; }
    .category-heading { font-size: 14px; margin: 10px 10px 6px; }

    .tabs-app { margin: 0 6px 8px 6px; padding: 14px 0; gap: 6px; }
    .tabs-app-logo { width: 60px; min-width: 60px; }
    .tabs-app-logo img { width: 60px; height: 60px; border-radius: 10px; }
    .tabs-app-logo .num { font-size: 13px; width: 16px; height: 16px; line-height: 16px; top: -4px; left: -4px; }
    .tabs-app-details .tabs-app-name span { font-size: 13px; }
    .tabs-app-details .t-download,
    .tabs-app-details .bonus { font-size: 13px; }
    .tabs-app-details .min-withdraw { font-size: 13px; }
    .tabs-d-btn .down-btn { padding: 6px 12px; font-size: 13px; }

    .single-app__header { flex-direction: column; text-align: center; padding: 15px; }
    .single-app__logo { margin: 0 auto; }
    .single-app__title { font-size: 1.2rem; }
    .single-app__rating { justify-content: center; }
    .single-app__downloads { font-size: 13px; }
    .single-app__info-grid { grid-template-columns: repeat(2, 1fr); }
    .info-label { font-size: 13px; }
    .info-value { font-size: 1rem; }
    .single-app__deposit-offers { padding: 15px; }
    .single-app__deposit-offers h2 { font-size: 1rem; }
    .deposit-offers-card { font-size: 14px; padding: 12px 15px; }
    .single-app__cta { padding: 15px; }
    .single-app__download-btn { font-size: 1rem; padding: 14px 20px; }
    .single-app__content { padding: 15px; }
    .single-app__content h2 { font-size: 1.1rem; }
    .single-app__content p, .single-app__content li { font-size: 14px; }
    .single-app__faqs, .single-app__related { padding: 15px; }
    .single-app__faqs h2, .single-app__related h2 { font-size: 1.1rem; }
    .faq-question { font-size: 14px; padding: 12px 15px; }
    .faq-answer { font-size: 14px; padding: 0 15px 12px; }

    .archive-apps__header { padding: 15px; }
    .archive-apps__header h1 { font-size: 1.2rem; }
    .archive-apps__header p { font-size: 14px; }
    .archive-category-filters { padding: 10px; gap: 5px; }
    .cat-filter { font-size: 13px; padding: 6px 14px; }
    .archive-apps-list { padding: 0 8px 20px; }
    .archive-cat-group { padding: 10px; margin-top: 10px; }
    .archive-cat-heading { font-size: 1rem; }

    .page-content { padding: 10px 15px 20px; }
    .page-title { font-size: 1.2rem; }
    .page-body p, .page-body li { font-size: 14px; }
    .content { padding: 15px; }
    .content p, .content li { font-size: 14px; }
    .content-disclaimer { margin: 8px; padding: 15px; }
    .content-disclaimer p { font-size: 14px; }

    .social-icons { margin-top: 20px; padding: 15px 0 5px; }
    .social-icons .social .social-link > i {
        font-size: 1.2rem; width: 2.4rem; height: 2.4rem; line-height: 2.4rem;
    }
    .bottom-menu-section .bottom-menu { gap: 4px; }
    .bottom-menu-section .bottom-menu > .menu-item { padding: 5px 8px; }
    .bottom-menu-section .bottom-menu > .menu-item > i { font-size: 13px; margin-right: 3px; }
    .bottom-menu-section .bottom-menu > .menu-item > .menu-link { font-size: 13px; }
    .footer { font-size: 13px; }
    .yono-breadcrumb { padding: 8px 12px; font-size: 13px; }
}

/* Tablet: 600px - 991px */
@media only screen and (min-width: 600px) and (max-width: 991px) {
    .container { width: 100%; max-width: 100%; }
}

/* Desktop: 992px - 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .container { width: 70%; max-width: 70%; }
}

/* Large Desktop: 1200px+ */
@media only screen and (min-width: 1200px) {
    .container { width: 50%; max-width: 50%; }
}
