:root {
    --target-red: #cc0000;
    --target-red-hover: #a80000;
    --dark-bg: #36363a;
    --text-main: #111111;
    --text-muted: #6b7280;
    --box-bg: #f5f5f5;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    min-height: 100vh;
    color: var(--text-main);
}

.main-container {
    width: 100%;
    max-width: 600px;
    padding: 2rem 1rem;
}

.card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    height: auto;
    max-width: 160px;
    object-fit: contain;
}

.offer-header {
    margin-bottom: 1.5rem;
}

.up-to {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-main);
}

.offer-title .price {
    font-size: 2.2rem;
    color: var(--text-main);
}

.steps-section {
    margin-bottom: 2rem;
}

.how-to-claim {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.steps-box {
    background-color: var(--box-bg);
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    transition: transform 0.2s ease;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    background-color: var(--text-main);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.separator {
    height: 1px;
    background-color: #e5e5e5;
}

.cta-button {
    background-color: var(--target-red);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    background-color: var(--target-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-link {
    color: #4b6b8b;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.terms-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
}

.tp-stars {
    display: flex;
    gap: 2px;
}

.tp-star {
    background-color: #00b67a;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-star svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.tp-star.half {
    background: linear-gradient(90deg, #00b67a 50%, #dcdce6 50%);
}

/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    border: 1px solid rgba(204, 0, 0, 0.1);
    min-width: 320px;
    text-align: center;
}

.social-proof-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
}

.toast-content span,
.toast-reward {
    font-weight: 700;
    color: var(--target-red);
}

.toast-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}
