/* HNC Creator Card Styles */

.hnc-creator-card {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border-top: 1px solid #333;
    position: relative;
    z-index: 99;
}

.hnc-cc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hnc-cc-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hnc-cc-avatar .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #aaa;
}

.hnc-cc-text p {
    margin: 0;
    line-height: 1.4;
}

.hnc-cc-title {
    font-weight: 600;
    font-size: 16px;
}

.hnc-cc-subtitle {
    font-size: 13px;
    color: #aaa;
}

.hnc-cc-contact {
    display: flex;
    gap: 10px;
}

.hnc-cc-btn {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: #fff;
    border: 1px solid #444;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.hnc-cc-btn:hover {
    background: #444;
    border-color: #555;
    color: #fff;
}

.hnc-cc-btn .dashicons {
    margin-right: 5px;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hnc-cc-container {
        flex-direction: column;
        text-align: center;
    }
    .hnc-cc-info {
        flex-direction: column;
        gap: 5px;
    }
    .hnc-cc-contact {
        justify-content: center;
    }
}

/* Modal Styles */
.hnc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hnc-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.hnc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
}

.hnc-modal-content {
    position: relative;
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 100001;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hnc-modal.is-visible .hnc-modal-content {
    transform: scale(1);
}

.hnc-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.hnc-modal-close:hover {
    color: #333;
}

.hnc-modal-body h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.hnc-modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
