:root {
    --bg: #01411a;
    --card: #0c5e2a;
    --accent: #f6ca00;
    --text: #f6f6f6;
    --muted: #b9d9c7;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}
.app {
    width: 100%;
    max-width: 430px;
    background: #00682d;
    padding: 0 12px 60px;
    position: relative;
}
header.top-bar {
    height: 56px;
    background: #03522c;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    margin: 0 -12px 16px -12px;
    width: calc(100% + 24px);
    position: relative;
}
.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f7f7f7;
}
.logo img {
    height: 30px;
    display: block;
}
.badge img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}
.logo .vip { color: #f6ba00; position: relative; }
.logo .vip::after {
    content: "👑";
    position: absolute;
    left: -6px;
    top: -16px;
    font-size: 14px;
}
.logo .dot { color: #f7ba00; }
.badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #f6ca00, #c68d00);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #0d3512;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.hero-video {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    margin-bottom: 14px;
    background: #003614;
}
.hero-video video {
    display: block;
    width: 100%;
    height: auto;
}
.card {
    background: linear-gradient(180deg, #0d612f, #0a5025);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
    margin-bottom: 16px;
}
.card h3 { font-size: 16px; margin-bottom: 12px; }
.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.metric {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
}
.metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    padding: 6px;
}
.metric-icon img { width: 100%; height: 100%; object-fit: contain; }
.metric strong { color: var(--accent); font-size: 16px; display: block; }
.metric small { color: var(--muted); }
.alliances {
    background: linear-gradient(180deg, #0d612f, #0a4f26);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}
.alliances .title {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}
.title-left {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}
.title-left span img {
    width: 100%;
    display: block;
}
.alliances .title h4 { font-size: 16px; margin: 0; text-align: left; color: #f7f7f7; }
.alliances .title button {
    background: var(--accent);
    color: #0d3512;
    border: none;
    border-radius: 16px;
    padding: 10px 22px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.2px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 10px;
}
.brand {
    text-align: center;
    padding: 0;
    box-shadow: none;
}
.logo-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 6px;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.logo-box img { width: 100%; height: 100%; object-fit: contain; }
.brand small { color: #e8f1e9; font-size: 12px; font-weight: 700; }
nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 430px;
    background: linear-gradient(180deg, #0b6b34 0%, #02572c 100%);
    padding: 6px 0 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #ffffff;
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 12px rgba(0,0,0,0.3);
    overflow: hidden;
}
nav .item {
    display: grid;
    gap: 3px;
    place-items: center;
    font-weight: 700;
    color: #ffffff;
}
nav .item a {
    text-decoration: none;
    color: #ffffff;
    display: grid;
    gap: 3px;
    place-items: center;
    width: 100%;
}
nav .item img { height: 20px; width: auto; display: block; }
nav .active { color: var(--accent); }
nav .active img { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35)); }

.news-card {
    background: linear-gradient(180deg, #0d612f, #0a4f26);
    border-radius: 16px;
    padding: 24px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
    margin-top: 14px;
}
.news-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #f7f7f7;
}
.news-left img { width: 28px; height: 28px; object-fit: contain; }
.news-card button {
    background: var(--accent);
    color: #0d3512;
    border: none;
    border-radius: 18px;
    padding: 10px 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.2px;
}
.banner-text {
    margin-top: 14px;
    background: linear-gradient(180deg, #0c5c2c, #0a4b24);
    border-radius: 16px;
    padding: 32px 14px;
    text-align: center;
    color: #f7f7f7;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}
.game-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.game-card {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #0d612f, #0a4f26);
    border-radius: 16px;
    padding: 12px 12px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}
.game-card .thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: #0b6b34;
    display: grid;
    place-items: center;
}
.game-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.game-info h5 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #fbdc33;
    letter-spacing: 0.2px;
}
.game-info p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #e3eddf;
    line-height: 1.4;
}
.game-card .cta {
    background: var(--accent);
    color: #0d3512;
    border: none;
    border-radius: 16px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
/* FAQ */
.faq {
    margin-top: 18px;
    margin-bottom: 20px;
    padding: 18px 14px 16px;
    background: #03522c;
    box-shadow: 0 10px 22px rgba(0,0,0,0.3) !important;
    border-radius: 16px !important;
    border: none !important;
}
.faq h3 {
    text-align: center;
    margin: 0 0 16px;
    color: #e9f4ea;
    font-size: 16px;
    font-weight: 800;
}
.faq-list {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 0;
    background: none;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 0;
    color: #e9f4ea;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}
.faq-arrow {
    transition: transform 0.2s ease;
    color: #d7e7d7;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-body {
    padding: 0 0 14px;
    display: grid;
    gap: 10px;
}
.faq-thumb img {
    width: 100%;
    border-radius: 10px;
    display: block;
}
.faq-text {
    font-size: 13px;
    color: #dfece1;
    line-height: 1.5;
}
.faq-text strong { color: #ffcf00; }

/* Services Section */
.services {
    margin-top: 18px;
    margin-bottom: 20px;
    padding: 20px 14px;
    background: #03522c;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}
.services h3 {
    text-align: center;
    margin: 0 0 12px;
    color: #e9f4ea;
    font-size: 16px;
    font-weight: 800;
}
.services-intro {
    color: #d7e7d7;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: left;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.service-card {
    background: #03522c;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.service-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-value {
    color: #fbdc33;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
}
.service-desc {
    color: #d7e7d7;
    font-size: 12px;
    font-weight: 500;
}

/* Footer */
.footer {
    margin-top: 18px;
    margin-bottom: 20px;
}
.footer-about {
    background: #0a4f26;
    border-radius: 16px;
    padding: 18px 14px;
    margin-bottom: 16px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}
.footer-about p {
    color: #d7e7d7;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}
.footer-about p strong {
    color: #fbdc33;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.social-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.footer-divider {
    width: 20rem;
    height: 1.2px;
    background: #49494e9c;
    margin: 10px auto;
    align-items: center;
    border: none;
}
.footer-logo {
    text-align: center;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-copyright {
    text-align: center;
    color: #b9d9c7;
    font-size: 12px;
    margin: 0;
    padding-bottom: 8px;
}

/* Flying Plane */
.flying-plane {
    position: fixed;
    bottom: 80px;
    right: 10px;
    width: 60px;
    height: 60px;
    z-index: 9999;
    pointer-events: none;
}

.flying-plane img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .app {
        padding: 0 10px 60px;
    }
    .faq {
        padding: 16px 12px 14px;
    }
    .faq-question {
        padding: 12px 0;
        font-size: 13px;
    }
    .flying-plane {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 8px;
    }
}

@media (min-width: 431px) {
    .app {
        margin: 0 auto;
    }
    nav {
        left: 50%;
        transform: translateX(-50%);
    }
}

