:root {
    --bg-color: #150a21;
    --text-main: #d3cadd;
    --text-muted: #9f91ad;
    --text-gold: #f4daa0;
    --card-bg: #0d0614;
    --card-border: #231636;
    
    --badge-border: #352554;
    --badge-text: #b69de0;

    --warning-bg: #261108;
    --warning-border: #4a2311;
    --warning-text: #e69d5c;

    --guarantee-bg: #0a1b11;
    --guarantee-border: #143621;

    --btn-green: #317d3b;
    --btn-green-hover: #296931;
    --btn-red: #7c2422;
    --btn-red-hover: #661d1c;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-image: radial-gradient(circle at 50% 10%, #2a1542 0%, transparent 40%);
}

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

.badge-top {
    border: 1px solid var(--badge-border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--badge-text);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.star {
    font-size: 0.6rem;
    vertical-align: middle;
}

.glow-container {
    position: relative;
    margin-bottom: 20px;
}

.glow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(162,109,240,0.6) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

.crystal-ball {
    font-size: 3.5rem;
    line-height: 1;
}

.main-title {
    font-family: var(--font-heading);
    color: var(--text-gold);
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.italic {
    font-style: italic;
}

.description {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

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

.bold {
    font-weight: 600;
}

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

.box-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.old-price {
    color: #5d4e6e;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.new-price {
    color: var(--text-gold);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.new-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

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

/* Warning Box */
.warning-box {
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: 8px;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
    color: var(--warning-text);
    font-size: 0.9rem;
}

.highlight-orange {
    color: #f7a861;
}

/* Separator */
.separator-stars {
    color: var(--badge-border);
    font-size: 0.8rem;
    letter-spacing: 10px;
    margin-bottom: 40px;
}

/* Benefits Box */
.benefits-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.benefits-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    width: 100%;
    padding: 10px 25px;
    margin-bottom: 40px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--card-border);
}

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

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

.benefit-item .text {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

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

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

.guarantee-title {
    font-family: var(--font-heading);
    color: #92b899;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.guarantee-text {
    font-size: 0.85rem;
    color: #7b9e82;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.btn-green {
    background-color: var(--btn-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(49, 125, 59, 0.3);
}

.btn-green:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
}

.btn-main-text {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-sub-text {
    font-size: 0.75rem;
    font-weight: 400;
}

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

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

/* Footer */
.footer-text {
    margin-top: 30px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-text p {
    margin-bottom: 5px;
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.4rem;
    }
    .new-price {
        font-size: 3.5rem;
    }
    .benefits-box, .price-box, .guarantee-box, .warning-box {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(49, 125, 59, 0.3); border-radius: 8px; }
    50% { transform: scale(1.03); box-shadow: 0 4px 30px rgba(49, 125, 59, 0.7); border-radius: 8px; }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(49, 125, 59, 0.3); border-radius: 8px; }
}

.btn-wrapper-animated {
    animation: pulse 2s infinite;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.btn-wrapper-animated:hover {
    animation: none;
    transform: scale(1.02);
}
