* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

:root {
    --primary-color: #d71920;
    --secondary-color: #4b0710;
    --accent-color: #ffca3a;
    --accent-cool: #08b85f;
    --light-bg: #fff3df;
    --dark-text: #261114;
    --light-text: #75565b;
    --border-color: #f0d2a0;
    --paper: #ffffff;
    --ink-soft: #fff4cf;
    --shadow-soft: 0 18px 55px rgba(80, 7, 18, 0.13);
    --shadow-glow: 0 18px 45px rgba(215, 25, 32, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-color: #fff5e5;
    background-image:
        radial-gradient(circle at 12% 12%, rgba(24, 199, 177, 0.18), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(246, 178, 59, 0.17), transparent 26%),
        linear-gradient(90deg, rgba(7, 53, 74, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(7, 53, 74, 0.035) 1px, transparent 1px);
    background-size: auto, auto, 38px 38px, 38px 38px;
    color: var(--dark-text);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(13, 143, 104, 0.16);
    background-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 30px rgba(7, 53, 74, 0.08);
    backdrop-filter: blur(18px);
}

main {
    padding: 0 15px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 30px;
    color: var(--secondary-color);
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-logo::before {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cool));
    box-shadow: 0 8px 22px rgba(13, 143, 104, 0.28);
    color: #fff;
    content: "Y";
    font-size: 16px;
    font-weight: 900;
}

.brand-logo span {
    color: var(--primary-color);
}

.menu-items {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.menu-items li {
    margin: 0 5px;
}

.menu-items a {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #324653;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.menu-items a:hover {
    border-color: rgba(13, 143, 104, 0.22);
    background-color: rgba(13, 143, 104, 0.08);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    padding: 9px 14px;
    border: 1px solid rgba(13, 143, 104, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(13, 143, 104, 0.15);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.mobile-menu.active {
    display: flex;
    animation: menuDrop 0.24s ease both;
}

.mobile-menu a {
    display: block;
    padding: 13px 20px;
    border-bottom: 1px solid rgba(13, 143, 104, 0.1);
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 700;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 38px;
}

h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 31px;
    line-height: 1.15;
}

h3 {
    margin-bottom: 15px;
    color: var(--dark-text);
    font-size: 24px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.hero-area {
    position: relative;
    max-width: 1240px;
    margin: 18px auto 0;
    overflow: hidden;
    padding: 74px 0 68px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 202, 58, 0.36), transparent 26%),
        radial-gradient(circle at 82% 14%, rgba(8, 184, 95, 0.27), transparent 24%),
        radial-gradient(circle at 42% 88%, rgba(137, 0, 72, 0.26), transparent 28%),
        linear-gradient(135deg, #6c0715 0%, #b10e1a 46%, #270713 100%);
    box-shadow: var(--shadow-glow);
    text-align: center;
}

.hero-area::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
}

.hero-area::after {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(246, 178, 59, 0.35);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(246, 178, 59, 0.15);
    content: "";
    animation: slowOrbit 12s linear infinite;
}

.hero-area .main-container {
    position: relative;
    z-index: 1;
}

.hero-heading {
    max-width: 960px;
    margin: 0 auto 22px;
    background: linear-gradient(90deg, #ffffff, #d6fff3 50%, #f6d67b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(42px, 6.8vw, 72px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero-subheading {
    max-width: 860px;
    margin: 0 auto 26px;
    color: #d7fff5;
    font-size: clamp(20px, 3vw, 29px);
    font-weight: 700;
}

.hero-area p {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(233, 255, 247, 0.82);
}

.action-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    overflow: hidden;
    padding: 14px 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcf5a, var(--accent-color));
    box-shadow: 0 15px 32px rgba(246, 178, 59, 0.32);
    color: #1b2b1d;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-button::after,
.download-button::after {
    position: absolute;
    top: 0;
    left: -110%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    content: "";
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

.action-button:hover,
.download-button:hover {
    transform: translateY(-3px);
}

.action-button:hover::after,
.download-button:hover::after {
    left: 125%;
}

.hero-art-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.1fr;
    gap: 16px;
    width: min(100%, 820px);
    margin: 34px auto 0;
    perspective: 900px;
}

.hero-art-row img {
    width: 100%;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    transform: rotateX(4deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-art-row img:nth-child(2) {
    transform: translateY(18px) rotateX(4deg);
}

.hero-art-row img:hover {
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) rotateX(0deg);
}

.ranking-area {
    max-width: 1040px;
    margin: 58px auto;
}

.ranking-heading {
    max-width: 760px;
    margin: 0 auto 32px;
    color: var(--secondary-color);
    text-align: center;
}

.ranking-heading::after {
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    content: "";
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ranking-item {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(13, 143, 104, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(250, 255, 247, 0.88)),
        radial-gradient(circle at 0 0, rgba(24, 199, 177, 0.14), transparent 38%);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ranking-item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    content: "";
}

.ranking-item::after {
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(246, 178, 59, 0.12);
    content: "";
}

.ranking-item:hover {
    border-color: rgba(13, 143, 104, 0.34);
    box-shadow: 0 22px 58px rgba(7, 53, 74, 0.16);
    transform: translateY(-5px) scale(1.008);
}

.rank-number {
    display: grid;
    min-width: 54px;
    height: 54px;
    margin-right: 16px;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(13, 143, 104, 0.12), rgba(246, 178, 59, 0.18));
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 900;
    text-align: center;
}

.app-icon {
    flex: 0 0 88px;
    margin-right: 22px;
}

.app-icon img {
    width: 74px;
    height: 74px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 13px 28px rgba(13, 143, 104, 0.24);
}

.app-info {
    position: relative;
    z-index: 1;
    flex: 1;
}

.app-name {
    margin-bottom: 8px;
    color: var(--dark-text);
    font-size: 22px;
}

.app-details {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 10px;
}

.app-detail {
    padding: 5px 11px;
    border: 1px solid rgba(13, 143, 104, 0.12);
    border-radius: 999px;
    background-color: rgba(13, 143, 104, 0.08);
    color: #3c5962;
    font-size: 13px;
    font-weight: 700;
}

.app-desc {
    margin-bottom: 8px;
    font-size: 15px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 14px;
}

.stars {
    color: #f2a900;
    letter-spacing: 1px;
}

.download-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    overflow: hidden;
    padding: 12px 26px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.button-accent,
.android-button {
    margin-left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cool));
    box-shadow: 0 12px 26px rgba(13, 143, 104, 0.27);
    color: #fff;
}

.button-accent:hover,
.android-button:hover {
    background: linear-gradient(135deg, #0b7556, #13bca5);
    box-shadow: 0 16px 34px rgba(13, 143, 104, 0.34);
}

.content-section {
    padding: 76px 0;
    border-bottom: 1px solid rgba(13, 143, 104, 0.12);
}

.content-section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.38);
}

.content-section:last-child {
    border-bottom: 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.content-layout.reverse .image-container {
    order: 2;
}

.text-content {
    padding-right: 20px;
}

.text-content h2 {
    position: relative;
}

.text-content h2::before {
    display: block;
    width: 48px;
    height: 5px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    content: "";
}

.image-container {
    text-align: center;
}

.placeholder-image {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 448px);
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(13, 143, 104, 0.15);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(13, 143, 104, 0.12), rgba(246, 178, 59, 0.14)),
        #edf7ef;
    box-shadow: var(--shadow-soft);
}

.placeholder-image::after {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    content: "";
    pointer-events: none;
}

.placeholder-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.placeholder-image:hover img {
    transform: scale(1.04);
}

.app-details-section {
    padding: 76px 0;
    background:
        radial-gradient(circle at 12% 0, rgba(24, 199, 177, 0.16), transparent 30%),
        linear-gradient(135deg, #eff9f2, #fff8ea);
}

.app-details-section h2 {
    text-align: center;
}

.app-details-table {
    width: min(100%, 780px);
    margin: 32px auto 0;
    overflow: hidden;
    border: 1px solid rgba(13, 143, 104, 0.12);
    border-collapse: collapse;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: var(--shadow-soft);
}

.app-details-table th,
.app-details-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.app-details-table th {
    width: 34%;
    background: linear-gradient(90deg, rgba(13, 143, 104, 0.12), rgba(24, 199, 177, 0.08));
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.feature-box {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(13, 143, 104, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 245, 0.92));
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box::after {
    position: absolute;
    right: -38px;
    top: -38px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(246, 178, 59, 0.14);
    content: "";
}

.feature-box:hover {
    box-shadow: 0 22px 54px rgba(7, 53, 74, 0.15);
    transform: translateY(-7px);
}

.feature-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cool));
    box-shadow: 0 12px 26px rgba(13, 143, 104, 0.22);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.download-panel {
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(246, 178, 59, 0.24), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(24, 199, 177, 0.2), transparent 26%),
        linear-gradient(135deg, #5d0714, #a90e18 54%, #25050b);
}

.download-panel h2,
.download-panel p {
    color: #fff;
}

.download-panel p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.82);
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.download-buttons .download-button {
    margin-left: 0;
}

.ios-button {
    border: 1px solid rgba(255, 255, 255, 0.36);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
}

.ios-button:hover {
    background-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.faq-container {
    width: min(100%, 860px);
    margin: 35px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(13, 143, 104, 0.13);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(7, 53, 74, 0.06);
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 0;
    background-color: transparent;
    color: var(--dark-text);
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
}

.faq-question span {
    color: var(--primary-color);
    font-size: 24px;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active {
    border-color: rgba(13, 143, 104, 0.35);
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    padding: 44px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(24, 199, 177, 0.18), transparent 30%),
        linear-gradient(135deg, #052630, #061d22);
    color: #fff;
    text-align: center;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reveal-ready .ranking-item,
.reveal-ready .content-section,
.reveal-ready .app-details-section,
.reveal-ready .feature-box {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.25s ease;
}

.reveal-ready .is-visible {
    opacity: 1;
    transform: translateY(0);
}

.download-body,
.download-body html {
    min-height: 100vh;
}

.download-body {
    position: relative;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 14%, rgba(25, 230, 180, 0.22), transparent 24%),
        radial-gradient(circle at 90% 8%, rgba(246, 178, 59, 0.22), transparent 25%),
        linear-gradient(150deg, #03191b 0%, #06354b 48%, #071f24 100%);
    color: #fff;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0, rgba(246, 178, 59, 0.16), transparent 38%);
    background-size: 34px 34px, 34px 34px, auto;
}

.floating-cards {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.14;
    pointer-events: none;
}

.floating-cards span {
    position: absolute;
    color: #f6d67b;
    font-size: 30px;
    font-weight: 900;
    animation: float 16s infinite linear;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
}

.download-body .header {
    padding: 32px 0 20px;
    text-align: center;
}

.logo-container {
    position: relative;
    width: 124px;
    height: 124px;
    margin: 0 auto 28px;
}

.logo-main {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    object-fit: cover;
    animation: logoFloat 3.8s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 178, 59, 0.8), rgba(24, 199, 177, 0.34), transparent 68%);
    filter: blur(24px);
    opacity: 0.55;
    transform: translate(-50%, -50%);
}

.game-title {
    margin-bottom: 8px;
    background: linear-gradient(90deg, #ffffff, #69ffdc 48%, #ffd96b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(34px, 10vw, 48px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.game-subtitle,
.rating-text,
.download-info,
.feature-text p,
.footer,
.footer a {
    color: rgba(226, 255, 247, 0.72);
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.star-rating {
    color: #ffd96b;
    font-size: 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.stat-item {
    padding: 12px 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.stat-number {
    margin-bottom: 4px;
    color: #ffd96b;
    font-size: 19px;
    font-weight: 900;
}

.stat-label {
    color: rgba(226, 255, 247, 0.68);
    font-size: 12px;
}

.cta-section {
    margin: 36px 0;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    overflow: hidden;
    padding: 18px 28px;
    border: 0;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button::after {
    position: absolute;
    top: 0;
    left: -110%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    content: "";
    transform: skewX(-18deg);
    transition: left 0.55s ease;
}

.cta-button:hover::after {
    left: 125%;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.btn-play {
    background: linear-gradient(135deg, #0dbb79, #0b8064);
    box-shadow: 0 14px 30px rgba(13, 187, 121, 0.32);
}

.btn-download {
    background: linear-gradient(135deg, #f6b23b, #d86f1e);
    box-shadow: 0 14px 30px rgba(246, 178, 59, 0.3);
}

.btn-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #10222c;
    color: #ffd96b;
    font-size: 11px;
    font-weight: 900;
}

.download-info {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
}

.game-showcase {
    position: relative;
    perspective: 900px;
}

.game-image {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 30px rgba(24, 199, 177, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.game-image:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 38px rgba(246, 178, 59, 0.3);
    transform: rotateX(2deg) translateY(-6px) scale(1.015);
}

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    padding: 7px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0dbb79, #f6b23b);
    color: #08272d;
    font-size: 12px;
    font-weight: 900;
    animation: bounce 2.3s infinite;
}

.features-container {
    margin: 30px 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item .feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0dbb79, #0b4052);
    color: #fff;
    font-size: 16px;
}

.feature-text h4 {
    margin-bottom: 4px;
    color: #ffd96b;
    font-size: 16px;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 34px 0;
}

.badge {
    min-width: 112px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(226, 255, 247, 0.72);
    font-size: 12px;
    text-align: center;
}

.download-body .footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(226, 255, 247, 0.72);
    font-size: 13px;
    text-align: center;
}

.footer-small-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.brand-logo {
    width: 214px;
    max-width: 42vw;
}

.brand-logo::before {
    display: none;
}

.brand-logo img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 8px 18px rgba(75, 7, 16, 0.12));
}

/* India Teen Patti campaign skin: red-gold casino posters, coins, cards, and mobile game energy. */
:root {
    --primary-color: #d71920;
    --secondary-color: #4b0710;
    --accent-color: #ffca3a;
    --accent-cool: #08b85f;
    --light-bg: #fff3df;
    --dark-text: #261114;
    --light-text: #75565b;
    --border-color: #f0d2a0;
    --ink-soft: #fff4cf;
    --shadow-soft: 0 18px 55px rgba(80, 7, 18, 0.13);
    --shadow-glow: 0 18px 45px rgba(215, 25, 32, 0.25);
}

body {
    background-color: #fff5e5;
    background-image:
        radial-gradient(circle at 12% 12%, rgba(215, 25, 32, 0.16), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(255, 202, 58, 0.24), transparent 26%),
        radial-gradient(circle at 72% 72%, rgba(8, 184, 95, 0.13), transparent 27%),
        linear-gradient(90deg, rgba(75, 7, 16, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(75, 7, 16, 0.035) 1px, transparent 1px);
    background-size: auto, auto, auto, 38px 38px, 38px 38px;
}

header {
    border-bottom-color: rgba(215, 25, 32, 0.14);
    background-color: rgba(255, 250, 240, 0.92);
    box-shadow: 0 10px 30px rgba(75, 7, 16, 0.08);
}

.brand-logo::before {
    background: linear-gradient(135deg, #d71920, #7a0916);
    box-shadow: 0 8px 22px rgba(215, 25, 32, 0.28);
}

.menu-items a:hover,
.mobile-menu-toggle,
.mobile-menu {
    border-color: rgba(215, 25, 32, 0.22);
}

.menu-items a:hover {
    background-color: rgba(215, 25, 32, 0.08);
}

.hero-area {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 202, 58, 0.36), transparent 26%),
        radial-gradient(circle at 82% 14%, rgba(8, 184, 95, 0.27), transparent 24%),
        radial-gradient(circle at 42% 88%, rgba(137, 0, 72, 0.26), transparent 28%),
        linear-gradient(135deg, #6c0715 0%, #b10e1a 46%, #270713 100%);
}

.hero-area::after {
    border-color: rgba(255, 202, 58, 0.48);
    box-shadow: inset 0 0 60px rgba(255, 202, 58, 0.18);
}

.hero-heading {
    background: linear-gradient(90deg, #ffffff, #ffe65c 48%, #ff8a21);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subheading {
    color: #fff0c9;
}

.hero-area p {
    color: rgba(255, 245, 215, 0.84);
}

.action-button {
    background: linear-gradient(135deg, #ffe75d, #ff8a21);
    box-shadow: 0 15px 32px rgba(255, 138, 33, 0.34);
    color: #40100d;
}

.ranking-item {
    border-color: rgba(215, 25, 32, 0.14);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 226, 0.9)),
        radial-gradient(circle at 0 0, rgba(255, 202, 58, 0.16), transparent 38%);
}

.ranking-item:hover {
    border-color: rgba(215, 25, 32, 0.34);
    box-shadow: 0 22px 58px rgba(75, 7, 16, 0.18);
}

.rank-number {
    background: linear-gradient(135deg, rgba(215, 25, 32, 0.12), rgba(255, 202, 58, 0.22));
}

.app-icon img {
    box-shadow: 0 13px 28px rgba(215, 25, 32, 0.24);
}

.app-detail {
    border-color: rgba(215, 25, 32, 0.12);
    background-color: rgba(215, 25, 32, 0.08);
    color: #6b3a27;
}

.button-accent,
.android-button {
    background: linear-gradient(135deg, #d71920, #ff8a21);
    box-shadow: 0 12px 26px rgba(215, 25, 32, 0.27);
}

.button-accent:hover,
.android-button:hover {
    background: linear-gradient(135deg, #a90e18, #f06b16);
    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.34);
}

.content-section {
    border-bottom-color: rgba(215, 25, 32, 0.12);
}

.placeholder-image {
    border-color: rgba(215, 25, 32, 0.15);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.1), rgba(255, 202, 58, 0.16)),
        #fff3df;
}

.app-details-section {
    background:
        radial-gradient(circle at 12% 0, rgba(215, 25, 32, 0.14), transparent 30%),
        linear-gradient(135deg, #fff1dc, #fff9e7);
}

.app-details-table,
.feature-box,
.faq-item {
    border-color: rgba(215, 25, 32, 0.12);
}

.app-details-table th {
    background: linear-gradient(90deg, rgba(215, 25, 32, 0.12), rgba(255, 202, 58, 0.1));
}

.feature-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 224, 0.93));
}

.feature-icon,
.feature-item .feature-icon {
    background: linear-gradient(135deg, #d71920, #ff8a21);
    box-shadow: 0 12px 26px rgba(215, 25, 32, 0.22);
}

.download-panel {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 202, 58, 0.28), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(8, 184, 95, 0.22), transparent 26%),
        linear-gradient(135deg, #5d0714, #a90e18 54%, #25050b);
}

footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 202, 58, 0.18), transparent 30%),
        linear-gradient(135deg, #33070d, #150508);
}

.download-body {
    background:
        radial-gradient(circle at 10% 14%, rgba(255, 202, 58, 0.2), transparent 24%),
        radial-gradient(circle at 90% 8%, rgba(8, 184, 95, 0.2), transparent 25%),
        radial-gradient(circle at 50% 70%, rgba(215, 25, 32, 0.28), transparent 30%),
        linear-gradient(150deg, #17040a 0%, #610713 48%, #100409 100%);
}

.bg-pattern {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0, rgba(255, 202, 58, 0.18), transparent 38%);
}

.logo-glow {
    background: radial-gradient(circle, rgba(255, 202, 58, 0.86), rgba(215, 25, 32, 0.42), transparent 68%);
}

.game-title {
    background: linear-gradient(90deg, #ffffff, #ffe65c 48%, #ff8a21);
    -webkit-background-clip: text;
    background-clip: text;
}

.game-subtitle,
.rating-text,
.download-info,
.feature-text p,
.footer,
.footer a,
.stat-label,
.badge {
    color: rgba(255, 245, 215, 0.74);
}

.stats-container,
.features-container,
.badge {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.btn-play {
    background: linear-gradient(135deg, #08b85f, #057a3b);
    box-shadow: 0 14px 30px rgba(8, 184, 95, 0.32);
}

.btn-download {
    background: linear-gradient(135deg, #ffe75d, #ff7a1a);
    box-shadow: 0 14px 30px rgba(255, 138, 33, 0.32);
    color: #3b0710;
}

.btn-badge {
    background: #4b0710;
    color: #ffe65c;
}

.game-image {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 30px rgba(255, 202, 58, 0.28);
}

.image-badge {
    background: linear-gradient(135deg, #08b85f, #ffca3a);
    color: #3b0710;
}

.download-panel {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 202, 58, 0.34), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(215, 25, 32, 0.12), transparent 30%),
        linear-gradient(135deg, #fff1d0 0%, #ffe2b2 50%, #fff7e6 100%);
}

.download-panel h2 {
    color: #4b0710;
    text-shadow: none;
}

.download-panel p {
    color: #6f3d22;
    font-weight: 800;
    text-shadow: none;
}

.download-panel .android-button {
    background: linear-gradient(135deg, #d71920, #ff7a1a);
    color: #fff;
}

.download-panel .ios-button {
    border-color: rgba(75, 7, 16, 0.18);
    background-color: rgba(255, 255, 255, 0.72);
    color: #4b0710;
    box-shadow: 0 12px 26px rgba(75, 7, 16, 0.1);
}

.download-panel .ios-button:hover {
    background-color: #4b0710;
    color: #fff;
}

@keyframes menuDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.025);
    }
}

@keyframes slowOrbit {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.08);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 992px) {
    .menu-items {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navigation-bar {
        padding: 14px 0;
    }

    .brand-logo {
        margin-right: 0;
    }

    .content-layout,
    .content-layout.reverse {
        grid-template-columns: 1fr;
    }

    .content-layout.reverse .image-container {
        order: 0;
    }

    .text-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    main {
        padding: 0;
    }

    .main-container {
        padding: 0 15px;
    }

    .hero-area {
        margin-top: 0;
        padding: 46px 0;
        border-radius: 0 0 28px 28px;
    }

    .hero-art-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 26px;
    }

    .hero-art-row img {
        height: 170px;
        border-radius: 18px;
    }

    .hero-art-row img:nth-child(3) {
        grid-column: 1 / -1;
    }

    .yidong-hide {
        display: none;
    }

    .ranking-area {
        margin: 38px auto;
        padding: 0 15px;
    }

    .ranking-item {
        display: grid;
        grid-template-columns: 42px 74px 1fr;
        gap: 12px;
        align-items: center;
        padding: 18px;
    }

    .rank-number {
        min-width: 0;
        height: 42px;
        margin-right: 0;
        border-radius: 14px;
        font-size: 21px;
    }

    .app-icon {
        flex: none;
        margin-right: 0;
    }

    .app-icon img {
        width: 64px;
        height: 64px;
    }

    .app-info {
        min-width: 0;
    }

    .app-name {
        font-size: 19px;
    }

    .download-button.button-accent {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 12px;
        margin-left: 0;
    }

    .content-section,
    .app-details-section {
        padding: 50px 0;
    }

    .placeholder-image,
    .placeholder-image img {
        min-height: 330px;
    }

    .app-details-table th,
    .app-details-table td {
        display: block;
        width: 100%;
    }

    .app-details-table th {
        padding-bottom: 6px;
    }

    .app-details-table td {
        padding-top: 6px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 37px;
    }

    .hero-subheading {
        font-size: 19px;
    }

    .hero-art-row {
        grid-template-columns: 1fr;
    }

    .hero-art-row img,
    .hero-art-row img:nth-child(2) {
        height: 190px;
        transform: none;
    }

    .hero-art-row img:nth-child(3) {
        grid-column: auto;
    }

    .ranking-item {
        grid-template-columns: 34px 62px 1fr;
        padding: 15px;
        border-radius: 20px;
    }

    .app-detail {
        font-size: 12px;
    }

    .container {
        padding: 16px;
    }

    .stats-container {
        padding: 12px;
    }

    .stat-number {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


/* yonogamemax.com unique 0512 campaign skin */
:root {
    --primary-color: #b10ef0;
    --secondary-color: #250033;
    --accent-color: #ffd43b;
    --accent-cool: #12d48f;
    --light-bg: #fbf0ff;
    --dark-text: #261114;
    --light-text: #76575b;
    --border-color: rgba(75, 7, 16, 0.16);
    --shadow-soft: 0 18px 55px rgba(75, 7, 16, 0.12);
    --shadow-glow: 0 18px 45px color-mix(in srgb, #b10ef0 28%, transparent);
}
body {
    background-color: #fbf0ff;
    background-image:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, #b10ef0 18%, transparent), transparent 30%),
        radial-gradient(circle at 88% 8%, color-mix(in srgb, #ffd43b 26%, transparent), transparent 26%),
        linear-gradient(90deg, rgba(75,7,16,.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(75,7,16,.035) 1px, transparent 1px);
}
.brand-logo { width: 232px; }
.hero-area {
    border-radius: 28px;
    background: radial-gradient(circle at 12% 18%, rgba(255,212,59,.33), transparent 28%), radial-gradient(circle at 86% 22%, rgba(177,14,240,.32), transparent 25%), linear-gradient(135deg, #250033 0%, #b10ef0 48%, #160409 100%);
}
.hero-heading { letter-spacing: -0.035em; }
.hero-art-row {
    grid-template-columns: 1.15fr .9fr 1.05fr;
}
.hero-art-row img,
.ranking-item,
.feature-box,
.faq-item,
.placeholder-image {
    border-radius: 18px;
}
.ranking-item {
    background:
        linear-gradient(120deg, rgba(255,255,255,.96), color-mix(in srgb, #ffd43b 10%, white)),
        radial-gradient(circle at 0 0, color-mix(in srgb, #b10ef0 12%, transparent), transparent 40%);
}
.rank-number {
    border-radius: 12px;
    background: linear-gradient(135deg, color-mix(in srgb, #b10ef0 14%, white), color-mix(in srgb, #ffd43b 24%, white));
}
.button-accent,
.android-button,
.feature-icon,
.feature-item .feature-icon {
    background: linear-gradient(135deg, #b10ef0, color-mix(in srgb, #ffd43b 75%, #b10ef0));
}
.download-panel {
    background:
        radial-gradient(circle at 18% 12%, color-mix(in srgb, #ffd43b 34%, transparent), transparent 28%),
        radial-gradient(circle at 82% 18%, color-mix(in srgb, #b10ef0 13%, transparent), transparent 30%),
        linear-gradient(135deg, color-mix(in srgb, #ffd43b 20%, white), color-mix(in srgb, #b10ef0 8%, white));
}
.download-body {
    background:
        radial-gradient(circle at 10% 14%, color-mix(in srgb, #ffd43b 22%, transparent), transparent 24%),
        radial-gradient(circle at 90% 8%, color-mix(in srgb, #12d48f 22%, transparent), transparent 25%),
        linear-gradient(150deg, #160409 0%, #250033 48%, #100409 100%);
}
.btn-play { background: linear-gradient(135deg, #12d48f, color-mix(in srgb, #12d48f 55%, black)); }
.btn-download { background: linear-gradient(135deg, #ffd43b, color-mix(in srgb, #b10ef0 65%, #ffd43b)); color: #2d070b; }


/* 0512 deep differentiation skin START */
/* visual concept: neon jackpot arena */
:root {
    --primary-color: #8b18f0;
    --secondary-color: #16002b;
    --accent-color: #ffe14d;
    --accent-cool: #17d79a;
    --light-bg: #f7edff;
    --border-color: color-mix(in srgb, #8b18f0 18%, white);
    --shadow-soft: 0 20px 58px color-mix(in srgb, #16002b 18%, transparent);
}
body {
    background-color: #f7edff;
    background-image:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, #8b18f0 18%, transparent), transparent 30%),
        radial-gradient(circle at 86% 8%, color-mix(in srgb, #ffe14d 28%, transparent), transparent 26%),
        linear-gradient(90deg, rgba(75,7,16,.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(75,7,16,.035) 1px, transparent 1px);
}
header {
    background: rgba(28, 5, 12, .92);
}
header .menu-items a,
header .mobile-menu-toggle {
    color: #fff5df;
}
.brand-logo {
    width: 268px;
}
.hero-area {
    border-radius: 45px;
    background:
        radial-gradient(circle at 17% 18%, color-mix(in srgb, #ffe14d 38%, transparent), transparent 26%),
        radial-gradient(circle at 82% 25%, color-mix(in srgb, #17d79a 26%, transparent), transparent 25%),
        linear-gradient(140deg, #16002b 0%, #8b18f0 48%, #160409 100%);
}
.hero-art-row {
    grid-template-columns: .9fr .9fr 1.2fr;
    width: min(100%, 834px);
}
.hero-art-row img {
    height: 226px;
    border-radius: 42px;
    transform: skewY(-1deg);
}
.hero-art-row img:nth-child(2) {
    transform: translateY(18px) rotate(5deg);
}
.ranking-list {
    gap: 19px;
}
.ranking-item {
    border-radius: 40px;
    padding: 32px;
    background:
        linear-gradient(120deg, rgba(255,255,255,.96), color-mix(in srgb, #ffe14d 10%, white)),
        radial-gradient(circle at 21% 0, color-mix(in srgb, #8b18f0 16%, transparent), transparent 42%);
}
.ranking-item:nth-child(even) {
    transform: translateX(-10px);
}
.content-layout {
    grid-template-columns: 1fr 1fr;
}
.placeholder-image {
    border-radius: 46px;
    box-shadow: 0 24px 60px color-mix(in srgb, #8b18f0 18%, transparent);
}
.feature-box {
    border-radius: 46px;
    background: linear-gradient(145deg, #fff, color-mix(in srgb, #f7edff 88%, #ffe14d));
}
.download-panel {
    background:
        radial-gradient(circle at 18% 12%, color-mix(in srgb, #ffe14d 34%, transparent), transparent 28%),
        radial-gradient(circle at 82% 18%, color-mix(in srgb, #8b18f0 13%, transparent), transparent 30%),
        linear-gradient(123deg, color-mix(in srgb, #ffe14d 20%, white), color-mix(in srgb, #8b18f0 8%, white));
}
.download-body {
    background:
        radial-gradient(circle at 10% 14%, color-mix(in srgb, #ffe14d 22%, transparent), transparent 24%),
        radial-gradient(circle at 90% 8%, color-mix(in srgb, #17d79a 22%, transparent), transparent 25%),
        linear-gradient(150deg, #160409 0%, #16002b 48%, #100409 100%);
}
.game-image {
    border-radius: 28px;
}
/* 0512 deep differentiation skin END */
