:root {
    --post-ad-brand: #e55800;
    --post-ad-brand-hover: #d25100;
    --post-ad-dark: #0b1320;
    --post-ad-muted: #6b7280;
}

.post-ad-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.post-ad-page::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229,88,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.post-ad-page::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,88,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.post-ad-card {
    background: transparent;
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.post-ad-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.post-ad-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229,88,0,0.1);
    color: var(--post-ad-brand);
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.post-ad-title {
    color: var(--post-ad-dark);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.post-ad-subtitle {
    color: var(--post-ad-muted);
    font-size: 0.9rem;
}

/* Choice Cards (for ad type selection) */
.post-ad-choice-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.post-ad-choice-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-ad-choice-card:hover {
    border-color: var(--post-ad-brand);
    background: rgba(229,88,0,0.02);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229,88,0,0.15);
}

.post-ad-choice-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229,88,0,0.1);
    border-radius: 12px;
    color: var(--post-ad-brand);
    font-size: 1.75rem;
    transition: all 0.3s;
}

.post-ad-choice-card:hover .post-ad-choice-icon {
    background: var(--post-ad-brand);
    color: #fff;
}

.post-ad-choice-content {
    flex: 1;
}

.post-ad-choice-description {
    color: var(--post-ad-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.post-ad-choice-title {
    color: var(--post-ad-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
    transition: color 0.3s;
}

.post-ad-choice-card:hover .post-ad-choice-title {
    color: var(--post-ad-brand);
}

.post-ad-choice-arrow {
    flex-shrink: 0;
    color: var(--post-ad-muted);
    font-size: 1.25rem;
    transition: all 0.3s;
}

.post-ad-choice-card:hover .post-ad-choice-arrow {
    color: var(--post-ad-brand);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 576px) {
    .post-ad-card {
        padding: 1.5rem 1.25rem;
    }

    .post-ad-title {
        font-size: 1.25rem;
    }
}

