@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
    --bg-dark: #000000;
    --text-primary: #18181b;
    --text-secondary: #77808d;
    --text-white: #ffffff;
    --green: #30a159;
    --red: #e23939;
    --line: #e6e8ea;
    --bg-card: #ffffff;
    --bg-yes: #eaf6ef;
    --bg-no: #fdecec;
    --gold: #ffd700;
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: #f8f9fa;
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.landing-container {
    /* width: 375px;
    height: 812px; */
    background-color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    overflow-y: auto;
    max-height: 100vh;
}

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

.guess-img {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.hero-section {
    height: 658px;
    width: 100%;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding-top: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 10;
}

.headline {
    font-size: 28px;
    font-weight: 800;
    color: #facc15;
    text-align: center;
    margin-bottom: 8px;
    z-index: 10;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
    opacity: 0.9;
}

.trophy-container {
    width: 250px;
    height: 250px;
    margin-top: 40px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.4));
}

.qa-card {
    position: absolute;
    top: 500px;
    left: 50%;
    transform: translateX(-50%);
    width: 343px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 20;
}

.card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.card-title-container {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.percentage {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.buttons-container {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: transform 0.1s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-yes {
    background-color: var(--bg-yes);
    color: var(--green);
}

.btn-no {
    background-color: var(--bg-no);
    color: var(--red);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 12px;
}

.heart-icon {
    color: var(--red);
}

.stats-section {
    display: flex;
    justify-content: space-around;
    margin-top: 140px;
    z-index: 10;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.body-section {
    position: relative;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    z-index: 100;
}

.body-section.fixed {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    bottom: 0;
}

.bonus-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #18181b;
}

.bonus-text span {
    color: #77808d;
    font-weight: 400;
}

.download-btn {
    width: 100%;
    height: 60px;
    background: #18181b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.download-btn:hover {
    background: #000;
}

.disclaimer {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    padding: 0 20px;
    margin-bottom: 20px;
}
