:root {
    --bg-color: rgb(27, 10, 46);
    --text-color: #FFFFFF;
    --text-muted: #C4B5DA;
    --gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.2);
    --box-bg: rgba(18, 5, 32, 0.7);
    --box-border: #4D2E80;
    --btn-green: #21C055;
    --btn-green-hover: #1A9943;
    --guarantee-bg: #112619;
    --guarantee-border: #234D32;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-image: radial-gradient(circle at top center, rgba(45, 35, 66, 0.5) 0%, var(--bg-color) 60%);
    background-attachment: fixed;
}

.container {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header */
.offer-tag {
    margin-bottom: 20px;
}

.offer-tag span {
    border: 1px solid var(--box-border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    background-color: rgba(20, 13, 34, 0.5);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(162, 89, 255, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.headline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #FDFBFF;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sub-headline {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 35px;
}

.story-text {
    font-size: 1rem;
    margin-bottom: 35px;
    max-width: 90%;
}

.story-text strong {
    color: var(--gold);
}

/* Price Box */
.price-box {
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.price-condition {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-new {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.price-new span {
    font-size: 4rem;
    line-height: 0.9;
}

.price-details {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Warning Box */
.warning-box {
    background-color: #24140D;
    border: 1px solid #3E2417;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.warning-box strong {
    color: var(--gold);
}

.separator {
    color: var(--box-border);
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

/* Deliverables */
.deliverables-section {
    width: 100%;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.deliverables-box {
    background-color: var(--box-bg);
    border: 1px solid var(--box-border);
    border-radius: 12px;
    padding: 10px 20px;
    text-align: left;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 15px;
}

.deliverable-item:last-child {
    border-bottom: none;
}

.deliverable-item .icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.deliverable-item p {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Guarantee Box */
.guarantee-box {
    background-color: var(--guarantee-bg);
    border: 1px solid var(--guarantee-border);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    margin-bottom: 40px;
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.guarantee-box h3 {
    font-family: var(--font-heading);
    color: #4CAF50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.guarantee-box p {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* CTA Actions */
.cta-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-green {
    background-color: var(--btn-green);
    color: white;
    box-shadow: 0 4px 15px rgba(55, 134, 68, 0.3);
}

.btn-green:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 134, 68, 0.4);
}

.btn-green strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-green span {
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-red {
    background-color: var(--btn-red);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 15px;
}

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

/* Footer */
.footer {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }
    .price-new span {
        font-size: 3.5rem;
    }
    .btn-green strong {
        font-size: 1rem;
    }
}
