/* MeKey Branding */
.navbar-brand img {
    max-height: 40px;
    width: auto;
}

/* Custom MeKey Colors */
.btn.btn-primary.btn-sm.btn-block,
.btn.btn-primary {
    background-color: #1E56FF;
    border-color: #1E56FF;
}

.btn.btn-primary:hover {
    background-color: #0d47e6;
    border-color: #0d47e6;
}

/* Hide social logins on login page */
#page-login>div>main>div.page_content>div>section.for-login>div.login-content.page-card>form>div>div.social-logins.text-center {
    display: none;
}

/* Custom page title for MeKey */
.page-title .title-text::before {
    content: "MeKey - ";
    color: #1E56FF;
    font-weight: bold;
}

/* Creator Profile Setup Banner */
.creator-profile-banner {
    background: linear-gradient(135deg, #1E56FF, #667eea);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px;
    text-align: center;
}

.creator-profile-banner h4 {
    margin: 0 0 10px 0;
}

.creator-profile-banner .btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    margin-top: 10px;
}

.creator-profile-banner .btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Asset Protection Dashboard Card */
.asset-protection-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.asset-protection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.asset-protection-card h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.asset-protection-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.asset-protection-card .features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.asset-protection-card .feature {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.asset-protection-card .cta-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.asset-protection-card .cta-btn:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}
