.ssl-locker {
    position: relative;
    margin: 20px 0;
}

.ssl-overlay {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.ssl-box {
    max-width: 600px;
    margin: 0 auto;
}

.ssl-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.ssl-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.ssl-unlock-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.ssl-option {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
}

.ssl-option h4 {
    color: white;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.ssl-option p {
    color: rgba(255,255,255,0.9);
    margin: 10px 0;
    font-size: 14px;
}

.ssl-divider {
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 10px 0;
}

.ssl-divider span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.ssl-email-form {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.ssl-email-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.ssl-email-form input[type="email"]:focus {
    outline: none;
    border-color: white;
    background: white;
}

.ssl-submit-email {
    padding: 12px 24px;
    background: #10b981;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ssl-submit-email:hover {
    background: #059669;
    transform: translateY(-2px);
}

.ssl-email-note {
    font-size: 12px !important;
    color: rgba(255,255,255,0.7) !important;
    margin-top: 8px !important;
}

.ssl-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
}

.ssl-share-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ssl-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ssl-facebook {
    background: #1877f2;
}

.ssl-twitter {
    background: #1da1f2;
}

.ssl-linkedin {
    background: #0077b5;
}

.ssl-unlock-btn {
    margin-top: 15px;
    padding: 14px 32px;
    background: #10b981;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ssl-unlock-btn:hover {
    background: #059669;
    transform: scale(1.05);
}

.ssl-content-preview {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

.ssl-content-preview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(102,126,234,0.95));
}

.ssl-share-notice {
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
}

.ssl-success-message {
    background: #10b981;
    color: white;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .ssl-email-form {
        flex-direction: column;
    }
    
    .ssl-buttons {
        flex-direction: column;
    }
    
    .ssl-share-btn {
        width: 100%;
    }
}