.publicize-card {
    width: 100%;
    background: linear-gradient(135deg, #0a2463 0%, #3a7bd5 100%);
    padding: 6px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.publicize-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 20%), linear-gradient(to right, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.publicize-card .card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.publicize-card .text-content {
    flex: 1;
    color: white;
}

.publicize-card .brand-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 3px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, #e0f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.publicize-card .features {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    max-width: 300px;
}

.publicize-card .feature-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 4px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.publicize-card .feature-tag::before {
    content: "✓";
    margin-right: 3px;
    font-size: 10px;
    color: #7fd1ff;
}

.publicize-card .cta-section {
    display: flex;
    align-items: center;
    position: relative;
}

.publicize-card .cta-button {
    background: linear-gradient(135deg, #00c281 0%, #0095d9 100%);
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 4px 15px rgba(0, 164, 107, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.publicize-card .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
}

.publicize-card .arrow-pointer {
    position: absolute;
    left: -30px;
    width: 24px;
    height: 24px;
    color: white;
    animation: bounce 2s infinite;
}