/* Mock Ad Modal */
.ad-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.ad-modal.hidden {
    display: none !important;
}

.ad-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    animation: popIn 0.3s;
}

.ad-video-mock {
    width: 100%;
    height: 150px;
    background: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.skip-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    background: #ccc;
    color: #666;
    transition: all 0.3s;
}

.skip-btn:not(.disabled) {
    background: #4CAF50;
    /* Green */
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.skip-btn:not(.disabled):active {
    transform: translateY(0);
}

/* Mode Badge & Counter */
.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.mode-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
}

.mode-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #fff;
    box-shadow: 0 2px 5px rgba(255, 165, 0, 0.4);
}

.mode-badge.standard {
    background: #e0e0e0;
    color: #757575;
}

.char-counter {
    font-size: 0.8em;
    color: #888;
}

.char-counter.limit-exceeded {
    color: #F44336;
    font-weight: bold;
}